/* ═══════════════════════════════════════════
   Axpo — Sales Landing (Light Theme + 3D)
   WebX Studio · TemplateMonster
   ═══════════════════════════════════════════ */

:root {
  --purple: #6C3CE1;
  --purple-light: #8C6BFF;
  --purple-dark: #3B1A9E;
  --purple-deep: #2D1580;
  --purple-glow: rgba(108, 60, 225, 0.25);
  --purple-soft: #F0EEFF;
  --purple-tint: #EEE8FF;

  --bg-page: #F8F9FC;
  --bg-white: #FFFFFF;
  --bg-alt: #F3F4F8;
  --bg-card: #FFFFFF;

  --text-primary: #1A1A2E;
  --text-muted: #6B7280;
  --text-dim: #9CA3AF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;

  --yellow: #F5E642;
  --success: #10B981;
  --shadow: 0 4px 24px rgba(26, 26, 46, 0.06);
  --shadow-lg: 0 20px 60px rgba(108, 60, 225, 0.12);
  --shadow-card: 0 8px 32px rgba(26, 26, 46, 0.08);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body:not(.loaded) {
  overflow: hidden;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Splash loader (app logo) ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #FFFFFF 0%, var(--purple-soft) 50%, var(--bg-page) 100%);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  margin-bottom: 20px;
  object-fit: contain;
  box-shadow: 0 12px 40px rgba(108, 60, 225, 0.25);
  animation: loaderLogoPulse 1.8s ease-in-out infinite;
}

@keyframes loaderLogoPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 40px rgba(108, 60, 225, 0.25);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 16px 48px rgba(108, 60, 225, 0.35);
  }
}

.loader-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  animation: pulseText 1.5s ease-in-out infinite;
}

.loader-text strong {
  color: var(--purple);
  font-weight: 800;
}

@keyframes pulseText {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  border-radius: 4px;
  animation: loadBar 1.8s var(--ease-out) forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

/* ─── Light background ─── */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-page) 40%, #F0EEFF 100%);
  overflow: hidden;
  pointer-events: none;
}

.bg-mesh::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 60, 225, 0.12) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  animation: meshFloat 20s ease-in-out infinite;
}

.bg-mesh::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 230, 66, 0.08) 0%, transparent 70%);
  bottom: 10%;
  left: -100px;
  animation: meshFloat 24s ease-in-out infinite reverse;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(108, 60, 225, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 60, 225, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black, transparent);
  pointer-events: none;
}

@keyframes meshFloat {

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

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

/* ─── Floating CSS shapes ─── */
.floating-shapes {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: shapeDrift 12s ease-in-out infinite;
}

.shape-circle {
  background: linear-gradient(135deg, var(--purple-soft), rgba(140, 107, 255, 0.2));
}

.shape-ring {
  background: transparent;
  border: 2px solid rgba(108, 60, 225, 0.15);
  border-radius: 50%;
}

.shape-blob {
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: linear-gradient(120deg, rgba(108, 60, 225, 0.08), rgba(245, 230, 66, 0.1));
  animation: blobMorph 14s ease-in-out infinite, shapeDrift 16s ease-in-out infinite;
}

.shape-diamond {
  width: 60px !important;
  height: 60px !important;
  border-radius: 12px;
  background: var(--purple-soft);
  transform: rotate(45deg);
  animation: shapeDrift 10s ease-in-out infinite, spinSlow 20s linear infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 8%;
  animation-delay: -3s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 8%;
  right: 15%;
  animation-delay: -1s;
}

.shape-4 {
  width: 160px;
  height: 140px;
  bottom: 20%;
  left: 10%;
  animation-delay: -5s;
}

.shape-5 {
  top: 40%;
  right: 25%;
  animation-delay: -2s;
}

.shape-6 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  right: 5%;
  animation-delay: -4s;
}

@keyframes shapeDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(15px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-10px, 15px) scale(0.95);
  }
}

@keyframes blobMorph {

  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }

  50% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(405deg);
  }
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.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.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-primary);
}

.logo img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 4px 12px var(--purple-glow);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

  0%,
  100% {
    box-shadow: 0 4px 12px var(--purple-glow);
  }

  50% {
    box-shadow: 0 4px 24px rgba(108, 60, 225, 0.4);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--purple);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, background 0.25s;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--purple-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--purple-glow);
}

.btn-outline {
  background: var(--bg-white);
  color: var(--purple);
  border: 2px solid var(--purple-soft);
  box-shadow: var(--shadow);
}

.btn-outline:hover {
  border-color: var(--purple);
  background: var(--purple-soft);
}

.btn-apk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3ddc84 0%, #2eb872 100%);
  color: #0a2818;
  border: none;
  box-shadow: 0 4px 20px rgba(61, 220, 132, 0.35);
}

.btn-apk:hover {
  background: linear-gradient(135deg, #4ae892 0%, #36c97e 100%);
  color: #062014;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61, 220, 132, 0.45);
}

.btn-icon {
  flex-shrink: 0;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-nav {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

/* ─── Hero + Three.js canvas ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#hero-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  animation: fadeSlideDown 0.8s var(--ease-out) both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
  animation: fadeSlideUp 0.9s var(--ease-out) 0.1s both;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 45%, #B45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeSlideUp 0.9s var(--ease-out) 0.2s both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.9s var(--ease-out) 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeSlideUp 0.9s var(--ease-out) 0.4s both;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-num span {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-top: 4px;
  font-weight: 500;
}

/* ─── Phone mockup ─── */
.hero-phones {
  position: relative;
  height: 580px;
  z-index: 2;
  animation: fadeSlideUp 1s var(--ease-out) 0.3s both;
}

.phone {
  position: absolute;
  width: 260px;
  height: 520px;
  border-radius: 36px;
  background: #1A1825;
  border: 3px solid rgba(108, 60, 225, 0.2);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #0A0912;
  border-radius: 20px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.phone-main {
  right: 0;
  top: 30px;
  z-index: 2;
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-secondary {
  left: 20px;
  top: 80px;
  z-index: 1;
  transform: scale(0.88);
  opacity: 0.85;
  animation: phoneFloatSecondary 6s ease-in-out infinite 1s;
}

@keyframes phoneFloat {

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

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

@keyframes phoneFloatSecondary {

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

  50% {
    transform: scale(0.88) translateY(-12px);
  }
}

.screen-header {
  background: linear-gradient(180deg, var(--purple) 0%, var(--purple-dark) 100%);
  padding: 48px 16px 20px;
  flex-shrink: 0;
}

.screen-header h3 {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 4px;
}

.screen-header p {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.screen-search {
  margin: -12px 16px 12px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.75rem;
  color: #9CA3AF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.screen-body {
  flex: 1;
  background: #F8F9FC;
  padding: 12px 16px;
  overflow: hidden;
}

.screen-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 10px;
  animation: cardSlideIn 0.6s var(--ease-out) both;
}

.screen-card:nth-child(2) {
  animation-delay: 0.15s;
}

.screen-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

.card-thumb {
  width: 56px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple-soft), var(--purple-tint));
  flex-shrink: 0;
}

.card-info h4 {
  font-size: 0.7rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 2px;
}

.card-info p {
  font-size: 0.6rem;
  color: #6B7280;
}

.card-price {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--purple);
}

.screen-tabbar {
  display: flex;
  justify-content: space-around;
  padding: 10px 8px 16px;
  background: #fff;
  border-top: 1px solid #F3F4F6;
}

.tab-dot {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #F3F4F8;
}

.tab-dot.active {
  background: var(--purple-soft);
  box-shadow: 0 0 0 2px var(--purple);
}

.screen-explore-header {
  background: var(--purple);
  padding: 48px 16px 16px;
  color: #fff;
}

.screen-explore-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
}

.screen-chips {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #F8F9FC;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 600;
  white-space: nowrap;
  background: #fff;
  color: #6B7280;
  border: 1px solid #E5E7EB;
}

.chip.active {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 16px 16px;
  background: #F8F9FC;
  flex: 1;
}

.grid-item {
  background: #fff;
  border-radius: 10px;
  height: 70px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 60, 225, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

/* ─── Trust bar ─── */
.trust-bar {
  padding: 40px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
}

.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 600;
}

.trust-icon {
  font-size: 1.5rem;
}

/* ─── Sections ─── */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--bg-white);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 56px;
}

.text-center {
  text-align: center;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Features ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(108, 60, 225, 0.2);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--purple-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease-spring);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Showcase ─── */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

.showcase-row.reverse {
  direction: rtl;
}

.showcase-row.reverse>* {
  direction: ltr;
}

.showcase-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.showcase-content p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

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

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.showcase-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

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

.showcase-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(145deg, var(--purple-soft), var(--purple-tint));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.showcase-card-inner {
  background: #F8F9FC;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mock-bar {
  background: var(--purple);
  padding: 20px;
  color: #fff;
}

.mock-bar h4 {
  font-size: 0.875rem;
  font-weight: 700;
}

.mock-bar p {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 4px;
}

.mock-content {
  padding: 20px;
  background: #fff;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.mock-row:last-child {
  border: none;
}

.mock-row span:last-child {
  font-weight: 700;
  color: var(--purple);
}

.showcase-float {
  position: absolute;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  animation: floatBadge 5s ease-in-out infinite;
  box-shadow: var(--shadow-card);
}

.showcase-float.top-right {
  top: -16px;
  right: -16px;
}

.showcase-float.bottom-left {
  bottom: -16px;
  left: -16px;
  animation-delay: 1.5s;
}

@keyframes floatBadge {

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

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

/* ─── Included ─── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.included-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.3s;
}

.included-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

.included-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.included-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ─── Tech ─── */
.tech-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.tech-badge {
  padding: 10px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow);
  transition: all 0.3s var(--ease-spring);
}

.tech-badge:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* ─── Testimonial ─── */
.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--purple);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ─── CTA ─── */
.cta-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.cta-box {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-light) 100%);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-box::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, 0.08);
  top: -100px;
  right: -80px;
  animation: meshFloat 15s ease-in-out infinite;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  font-size: 1.125rem;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}

.btn-white {
  background: #fff;
  color: var(--purple-dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ─── Footer ─── */
.footer {
  padding: 60px 0 40px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-top: 12px;
  max-width: 320px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--purple);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer-store-link {
  color: var(--purple);
  font-weight: 700;
}

.footer-store-link:hover {
  color: var(--purple-dark);
}

/* ─── Live interactive phone demo ─── */
/* .live-phone {
  position: relative;
  background: #1a1825;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(108, 60, 225, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 0 3px #2a2838;
} */

.live-phone--hero {
  width: 290px;
  margin: 0 auto;
}

.live-phone--large {
  width: 320px;
  margin: 0 auto;
}

/* .live-phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #0f0e17;
  border-radius: 20px;
  z-index: 4;
} */

.live-phone-screen {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: 34px;
  overflow: hidden;
  background: #f8f9fc;
}

/* .live-phone--hero .live-phone-screen {
  height: 520px;
} */

.live-phone-screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
  background: #fff;
}

.live-phone-loader,
.live-phone-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: linear-gradient(160deg, #f0eeff, #f8f9fc);
}

.live-phone-fallback {
  display: none;
  z-index: 3;
}

.live-phone-screen--fallback .live-phone-fallback {
  display: flex;
}

.live-phone-screen--fallback iframe,
.live-phone-screen--fallback .live-phone-loader {
  display: none;
}

.live-phone-screen--loading .live-phone-loader {
  display: flex;
}

.live-phone-screen:not(.live-phone-screen--loading) .live-phone-loader {
  display: none;
}

.live-phone-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e5e7eb;
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 12px;
}

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

.live-phone-loader span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.live-phone-fallback-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.live-phone-fallback p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 4px 0;
  line-height: 1.5;
}

.live-phone-fallback code {
  font-size: 0.75rem;
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--purple-dark);
}

.live-phone-fallback-link {
  margin-top: 12px;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.875rem;
}

.hero-phones--live {
  height: auto;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.live-phone-caption {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
}

/* Hero reel video (9:16) */
.live-phone-screen--reel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 600px;
  object-fit: fill;
  z-index: 1;
  /* background: #0f0e17; */
}

.reel-overlay {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  pointer-events: none;
}

.reel-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.reel-mute-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  font-size: 1.125rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, background 0.2s;
}

.reel-mute-btn:hover {
  transform: scale(1.08);
  background: rgba(108, 60, 225, 0.85);
}

.reel-play-btn {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  background: rgba(108, 60, 225, 0.9);
  box-shadow: 0 8px 24px rgba(108, 60, 225, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
}

.reel--paused .reel-play-btn {
  display: flex;
}

.reel--playing .reel-play-btn {
  display: none;
}

.reel-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(160deg, #f0eeff, #e8e4ff);
}

.reel-placeholder p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.reel-placeholder code {
  font-size: 0.6875rem;
  word-break: break-all;
}

.reel--missing .reel-placeholder {
  display: flex;
}

.reel--missing video,
.reel--missing .reel-overlay,
.reel--missing .reel-mute-btn {
  display: none;
}

/* Live demo section */
.live-demo-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--purple-soft) 100%);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-light);
}

.live-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.live-demo-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.demo-status {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-block;
  background: var(--bg-alt);
  color: var(--text-secondary);
}

.demo-status--ok {
  background: #d1fae5;
  color: #047857;
}

.demo-status--warn {
  background: #fef3c7;
  color: #92400e;
}

.demo-status--loading {
  background: var(--purple-soft);
  color: var(--purple-dark);
}

.live-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.demo-qr-block {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.demo-qr-card {
  flex-shrink: 0;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  border: 2px dashed var(--purple-soft);
  transition: transform 0.2s, border-color 0.2s;
}

.demo-qr-card:hover {
  transform: scale(1.03);
  border-color: var(--purple);
}

.demo-qr-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.demo-qr-text strong {
  font-size: 1rem;
  color: var(--text-primary);
}

.demo-qr-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.live-demo-setup {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.live-demo-setup h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.live-demo-setup ol {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.8;
}

.live-demo-setup code {
  font-size: 0.8rem;
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--purple-dark);
}

.live-demo-device {
  position: relative;
  display: flex;
  justify-content: center;
}

.live-demo-badge {
  position: absolute;
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  animation: floatBadge 5s ease-in-out infinite;
  z-index: 5;
}

.live-demo-badge--tl {
  top: 8%;
  left: 0;
}

.live-demo-badge--br {
  bottom: 12%;
  right: -8px;
  animation-delay: 1.2s;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-phones--live {
    min-height: 520px;
    margin-top: 40px;
  }

  .live-demo-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .live-demo-device {
    order: -1;
  }

  .live-phone--large {
    width: 280px;
  }

  .live-phone--large .live-phone-screen {
    height: 520px;
  }

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

  .showcase-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .showcase-row.reverse {
    direction: ltr;
  }

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

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

  .floating-shapes .shape-3,
  .floating-shapes .shape-4 {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .menu-btn {
    display: block;
  }

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

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

  .cta-box {
    padding: 48px 24px;
  }

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

  .hero-phones--live {
    min-height: 460px;
  }

  .live-phone--hero {
    width: 240px;
  }

  .live-phone--hero .live-phone-screen {
    height: 460px;
  }

  .live-phone--large {
    width: 260px;
  }

  .live-phone--large .live-phone-screen {
    height: 480px;
  }

  .demo-qr-block {
    flex-direction: column;
    text-align: center;
  }

  .hero-canvas-wrap {
    opacity: 0.6;
  }

  .floating-shapes {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .trust-inner {
    gap: 24px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}