/* =========================================================
   VISAI LANDING PAGE — "ACHIEVEMENT DASHBOARD" THEME
   Dark indigo shell, gold/violet accents, RPG progress UI
========================================================= */


/* =========================================================
   0. TOKENS
========================================================= */

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

:root {
  --bg-deep: #14152C;
  --bg-deep-2: #1B1940;
  --bg-deep-3: #201C4A;

  --violet: #6C4DF0;
  --violet-light: #9481FF;

  --gold: #F5B942;
  --gold-dark: #D89A2A;

  --parchment: #F7F4EC;
  --parchment-dim: #EDE9DC;

  --mint: #4ADE9A;
  --red: #FF6B7A;

  --ink: #EFEDFB;
  --ink-soft: #C9C6E6;
  --muted: #9C98C2;

  --ink-dark: #1E1B3A;
  --muted-dark: #6B6690;

  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}


/* =========================================================
   1. GLOBAL
========================================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;

  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

button,
a {
  font-family: inherit;
}

h1, h2, h3 {
  font-family: var(--font-display);
}

/* Reusable eyebrow / stage labels */

.section-eyebrow {
  display: inline-block;

  margin-bottom: 20px;
  

  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2.2px;

  color: var(--gold);
}

.section-eyebrow.center {
  display: block;
  text-align: center;
}

.section-eyebrow.light {
  color: rgba(255, 255, 255, 0.85);
}


/* =========================================================
   2. NAVBAR
========================================================= */

.navbar {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 20px;

  background: rgba(20, 21, 44, 0.75);

  border-bottom: 1px solid rgba(245, 185, 66, 0.12);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  z-index: 1000;

  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.navbar.show {
  transform: translateY(0);
}


/* LEFT */

.nav-left {
  display: flex;
  align-items: center;

  gap: 10px;

  padding-left: 20px;
}

.nav-logo {
  width: 40px;
  height: 40px;

  object-fit: contain;

  border-radius: 8px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;

  background: linear-gradient(
    135deg,
    var(--gold),
    var(--violet-light)
  );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}


/* RIGHT */

.nav-right {
  display: flex;
  align-items: center;

  gap: 14px;
}


/* =========================================================
   3. STORE BUTTONS
========================================================= */

.store-buttons {
  display: flex;
  align-items: center;

  gap: 20px;
}

.store-buttons a {
  display: inline-flex;
  border-radius: 12px;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.store-buttons a:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.store-buttons a:active {
  transform: translateY(0);
}

/* STORE IMAGE SIZES */

.store-buttons img {
  width: auto;
  height: 400px;

  /* object-fit: contain; */

  /* border-radius: 12px; */

  /* filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35)); */
}

.store-buttons.small img {
  height: 40px;
}

.store-buttons.large img {
  height: 60px;
}


/* =========================================================
   4. HERO
========================================================= */

.hero {
  position: relative;

  padding: 150px 40px 120px;

  overflow: hidden;

  background:
    radial-gradient(circle at 15% 10%, rgba(108, 77, 240, 0.35), transparent 55%),
    radial-gradient(circle at 85% 0%, rgba(245, 185, 66, 0.18), transparent 45%),
    var(--bg-deep);
}

.hero::before {
  content: "";

  position: absolute;

  top: -140px;
  right: -160px;

  width: 480px;
  height: 480px;

  background-image: url('bg-pattern.png');
  background-repeat: repeat;
  background-position: top right;
  

  /* transform: rotate(-18deg); */
  transform-origin: top right;

  opacity: 0.09;
 /* Fade the edges radially */
  -webkit-mask-image: radial-gradient(
    circle,
    black 20%,
    rgba(0, 0, 0, 0.8) 45%,
    transparent 75%
  );
  mask-image: radial-gradient(
    circle,
    black 20%,
    rgba(0, 0, 0, 0.8) 45%,
    transparent 75%
  );
  pointer-events: none;

  z-index: 0;
}

.hero-glow {
  position: absolute;

  top: -180px;
  left: 50%;

  width: 900px;
  height: 500px;

  transform: translateX(-50%);

  background: radial-gradient(ellipse at center, rgba(148, 129, 255, 0.28), transparent 70%);

  pointer-events: none;
}

.hero-container {
  position: relative;

  width: 100%;
  max-width: 1140px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 40px;
}


/* HERO LEFT */

.hero-left {
  min-width: 0;
}

.hero-logo {
  width: 160px;
  height: 160px;

  object-fit: cover;

  margin-bottom: 16px;

  /* border-radius: 18px; */

  /* box-shadow:
    0 0 0 3px rgba(245, 185, 66, 0.35),
    0 15px 30px rgba(0, 0, 0, 0.45); */

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05) rotate(-2deg);
}


.hero-left h1,
.hero-title {
  margin-bottom: 20px;

  font-size: 50px;
  font-weight: 700;

  line-height: 1.15;

  letter-spacing: -1px;

  color: var(--ink);
}

.hero-title span,
.hero-left h1 span {
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--violet-light)
  );
  font-size: 24px;

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}


.hero-left p {
  max-width: 460px;

  margin-bottom: 30px;

  color: var(--ink-soft);

  font-size: 16px;
  line-height: 1.65;
}


/* HERO BUTTONS */

.hero-left .store-buttons {
  justify-content: flex-start;

  margin-bottom: 36px;
}


/* HERO STATS */

.hero-stats {
  display: flex;

  gap: 34px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;

  color: var(--gold);
}

.hero-stat-label {
  margin-top: 4px;

  font-size: 12px;

  color: var(--muted);

  letter-spacing: 0.3px;
}


/* =========================================================
   5. HERO RIGHT — PLAYER CARD + PHONES
========================================================= */

.hero-right {
  position: relative;

  width: 100%;
  height: 460px;
}

/* PLAYER CARD */

.player-card {
  position: absolute;

  top: 0;
  right: 0;

  width: 250px;

  padding: 20px;

  background: var(--parchment);

  border-radius: 20px;

  box-shadow:
    0 25px 45px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 0, 0, 0.03);

  z-index: 5;

  animation: float 5.5s ease-in-out infinite;
}

.player-card-top {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 16px;
}

.level-badge {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--gold), var(--gold-dark));

  color: var(--ink-dark);

  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;

  box-shadow: 0 6px 14px rgba(216, 154, 42, 0.45);
}

.player-card-title {
  display: flex;
  flex-direction: column;
}

.player-card-title strong {
  font-size: 14px;
  font-weight: 700;

  color: var(--ink-dark);
}

.player-card-title span {
  margin-top: 2px;

  font-size: 11px;

  color: var(--muted-dark);
}

.xp-row {
  display: flex;
  justify-content: space-between;

  margin-bottom: 6px;

  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;

  color: var(--muted-dark);

  letter-spacing: 0.4px;
}

.xp-bar {
  width: 100%;
  height: 10px;

  border-radius: 20px;

  background: rgba(30, 27, 58, 0.1);

  overflow: hidden;

  margin-bottom: 16px;
}

.xp-fill {
  width: 0%;
  height: 100%;

  border-radius: 20px;

  background: linear-gradient(90deg, var(--violet), var(--violet-light));

  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.player-card-chips {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;
}

.chip {
  padding: 6px 10px;

  border-radius: 20px;

  font-size: 11px;
  font-weight: 600;

  white-space: nowrap;
}

.chip.streak {
  background: rgba(255, 107, 122, 0.12);
  color: #C4364A;
}

.chip.accuracy {
  background: rgba(74, 222, 154, 0.15);
  color: #1F9A63;
}


/* PHONES */

.phone {
  position: absolute;

  width: 190px;

  border-radius: 22px;

  /* box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 6px rgba(255, 255, 255, 0.04); */
}

.p1 {
  left: 0;
  top: 130px;

  animation: float 4s ease-in-out infinite;
}

.p2 {
  left: 115px;
  top: 70px;

  z-index: 2;

  animation: float 5s ease-in-out infinite;
}

.p3 {
  left: 230px;
  top: 150px;

  animation: float 6s ease-in-out infinite;
}

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


/* FLOATING BADGES */

.floating-badge {
  position: absolute;

  padding: 8px 14px;

  border-radius: 20px;

  background: rgba(20, 21, 44, 0.85);

  border: 1px solid rgba(245, 185, 66, 0.4);

  color: var(--gold);

  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);

  z-index: 6;

  animation: badgePulse 3.4s ease-in-out infinite;
}

.badge-1 {
  right: 10px;
  bottom: 60px;

  animation-delay: 0.4s;
}

.badge-2 {
  left: 10px;
  bottom: 10px;

  color: var(--mint);

  border-color: rgba(74, 222, 154, 0.4);

  animation-delay: 1.2s;
}

@keyframes badgePulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.04); }
}


/* =========================================================
   5B. JOURNEY — ROADMAP (horizontal zigzag track)
========================================================= */

.journey {
  padding: 100px 20px 110px;

  text-align: center;

  background: var(--bg-deep);
}

.journey-title {
  margin-bottom: 12px;

  font-size: 36px;
  font-weight: 700;

  line-height: 1.2;

  letter-spacing: -0.6px;

  color: var(--ink);
}

.journey .subheading {
  margin-bottom: 60px;
}


/* TRACK */

.roadmap {
  position: relative;

  width: 100%;
  max-width: 1180px;

  height: 360px;

  margin: 0 auto;

  display: flex;
  align-items: stretch;
}

.roadmap-rail {
  position: absolute;

  top: 50%;
  left: 0;
  right: 0;

  height: 2px;

  transform: scaleX(0);
  transform-origin: left;

  background: repeating-linear-gradient(
    to right,
    var(--gold) 0,
    var(--gold) 10px,
    transparent 10px,
    transparent 20px
  );

  opacity: 0.55;

  z-index: 0;

  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.roadmap-rail.in-view {
  transform: scaleX(1);
}


/* COLUMN */

.roadmap-col {
  position: relative;

  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 50px 0;

  opacity: 0;
  transform: translateY(14px);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.roadmap-col.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* CAPTION */

.roadmap-caption {
  max-width: 184px;

  margin: 14px 0;

  text-align: center;
}

.roadmap-caption h3 {
  margin-bottom: 5px;

  font-size: 16px;
  font-weight: 700;

  line-height: 1.28;

  color: var(--ink);
}

.roadmap-caption p {
  font-size: 13px;

  line-height: 1.45;

  color: var(--muted);
}


/* NODE */

.roadmap-node {
  flex-shrink: 0;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--violet), #4C34C9);

  border: 3px solid var(--bg-deep);

  box-shadow:
    0 0 0 3px rgba(245, 185, 66, 0.4),
    0 12px 24px rgba(0, 0, 0, 0.4);

  color: #fff;

  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;

  z-index: 2;
}

.roadmap-col.final .roadmap-node {
  background: transparent;

  border: none;

  box-shadow: none;

  width: 80px;
  height: 80px;
}

.roadmap-node.final-badge img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));

  animation: badgePulse 3.4s ease-in-out infinite;
}


/* CONNECTOR (node to rail) */

.roadmap-connector {
  width: 2px;
  flex: 1;

  min-height: 30px;


  background: repeating-linear-gradient(
    to bottom,
    var(--violet-light) 0,
    var(--violet-light) 6px,
    transparent 6px,
    transparent 12px
  );

  opacity: 0.5;
}

.roadmap-col.final .roadmap-connector {
  background: repeating-linear-gradient(
    to bottom,
    var(--gold) 0,
    var(--gold) 6px,
    transparent 6px,
    transparent 12px
  );
}


/* =========================================================
   6. WHY VISAI — ACHIEVEMENTS
========================================================= */

.why {
  padding: 120px 20px;

  background: var(--bg-deep-2);

  text-align: center;
}

.why-title {
  margin-bottom: 60px;

  font-size: 36px;
  font-weight: 700;

  line-height: 1.2;

  color: var(--ink);
}


/* GRID */

.why-grid {
  width: 100%;
  max-width: 1100px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 26px;
}


/* CARD */

.why-card {
  position: relative;

  padding: 30px 28px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 20px;

  background: var(--bg-deep-3);

  text-align: left;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

  opacity: 0;
  transform: translateY(24px) scale(0.98);

  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.3s ease;
}

.why-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.why-card:hover {
  box-shadow: 0 30px 55px rgba(108, 77, 240, 0.2);
}


/* BADGE (icon) */

.badge-ring {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 62px;
  height: 62px;

  margin-bottom: 16px;
}

.badge-ring img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));

  transition: transform 0.3s ease;
}

.why-card:hover .badge-ring img {
  transform: translateY(-3px) scale(1.04);
}


/* XP TAG */

.xp-tag {
  position: absolute;

  top: 26px;
  right: 26px;

  padding: 4px 10px;

  border-radius: 20px;

  background: rgba(74, 222, 154, 0.12);

  color: var(--mint);

  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}


/* TEXT */

.why-card h3 {
  margin-bottom: 10px;

  font-size: 18px;

  color: var(--ink);
}

.why-card p {
  color: var(--ink-soft);

  font-size: 14px;

  line-height: 1.55;
}

.why-card ul {
  padding-left: 18px;

  color: var(--ink-soft);

  font-size: 14px;

  line-height: 1.65;
}


/* HIGHLIGHT */

.why-card.highlight {
  background: linear-gradient(
    145deg,
    var(--violet),
    #4C34C9
  );

  border-color: transparent;
}

.why-card.highlight .xp-tag {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.why-card.highlight h3 {
  color: #fff;
}

.why-card.highlight p,
.why-card.highlight ul {
  color: rgba(255, 255, 255, 0.88);
}


/* =========================================================
   7. VISAI SHOWCASE — PREVIEW
========================================================= */

.visai-demo {
  padding: 120px 20px;

  text-align: center;

  background: var(--bg-deep-2);
}

.visai-demo h2 {
  margin-bottom: 12px;

  font-size: 36px;
  font-weight: 700;

  line-height: 1.2;

  letter-spacing: -0.6px;

  color: var(--ink);
}

.subheading {
  max-width: 620px;

  margin: 0 auto 55px;

  font-size: 15px;

  line-height: 1.6;

  color: var(--muted);
}


/* SLIDER — styled like a HUD console */

.slider {
  position: relative;

  width: 100%;
  max-width: 1000px;

  min-height: 420px;

  margin: 0 auto;

  padding: 35px 70px;

  display: flex;
  align-items: center;

  border-radius: 26px;

  background: var(--bg-deep-3);

  border: 1px solid rgba(245, 185, 66, 0.18);

  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.4),
    inset 0 0 60px rgba(108, 77, 240, 0.08);

  overflow: hidden;
}

.slider::before,
.slider::after {
  content: "";

  position: absolute;

  width: 22px;
  height: 22px;

  border-color: var(--gold);
  border-style: solid;

  opacity: 0.65;
}

.slider::before {
  top: 16px;
  left: 16px;

  border-width: 2px 0 0 2px;
}

.slider::after {
  bottom: 16px;
  right: 16px;

  border-width: 0 2px 2px 0;
}


/* SLIDES */

.slides {
  width: 100%;
}

.slide {
  display: none;

  width: 100%;
}

.slide.active {
  display: block;
}


/* SLIDE CONTENT */

.content {
  width: 100%;

  min-height: 350px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 45px;
}


/* TEXT */

.text {
  flex: 1;

  max-width: 500px;

  text-align: left;
}
.text .card-head{
color: var(--gold);
}
.stage-tag {
  display: block;

  margin-bottom: 14px;

  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.8px;

  color: var(--gold);
}

.text h3 {
  margin-bottom: 16px;

  font-size: 30px;
  font-weight: 700;

  line-height: 1.2;

  letter-spacing: -0.5px;

  color: var(--ink);
}

.text p {
  max-width: 450px;

  font-size: 16px;

  line-height: 1.7;

  color: var(--ink-soft);
}


/* IMAGE */

.image {
  flex: 0 0 300px;

  width: 300px;
  height: 360px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: transparent;

  border-radius: 20px;
}

.image img {
  display: block;

  width: 300px;
  height: 360px;

  object-fit: contain;

  border-radius: 28px;

  filter:
    drop-shadow(
      0 20px 35px rgba(108, 77, 240, 0.35)
    );

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.slide.active .image img {
  transform: translateY(-4px);
}

.slide.active .image:hover img {
  transform:
    translateY(-8px)
    scale(1.015);

  filter:
    drop-shadow(
      0 25px 40px rgba(245, 185, 66, 0.3)
    );
}


/* ARROWS */

.arrow {
  position: absolute;

  top: 50%;

  width: 44px;
  height: 44px;

  padding: 0;

  transform: translateY(-50%);

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(245, 185, 66, 0.3);

  background: rgba(20, 21, 44, 0.9);

  color: var(--gold);

  font-size: 18px;

  line-height: 1;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);

  z-index: 10;
}

.arrow.left {
  left: 18px;
}

.arrow.right {
  right: 18px;
}

.arrow:hover {
  transform:
    translateY(-50%)
    scale(1.08);

  background: var(--gold);

  color: var(--ink-dark);
}

.arrow:active {
  transform:
    translateY(-50%)
    scale(0.94);
}


/* SLIDE ANIMATION */

.slide {
  animation: slideFade 0.45s ease;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* =========================================================
   8. TESTIMONIALS — PLAYER REVIEWS
========================================================= */

.testimonials {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  padding: 120px 20px;

  text-align: center;
}

.testimonials h2 {
  margin-bottom: 10px;

  font-size: 36px;
  font-weight: 700;

  line-height: 1.2;

  letter-spacing: -0.6px;

  color: var(--ink);
}

.testimonials > p {
  max-width: 650px;

  margin: 0 auto;

  font-size: 15px;

  line-height: 1.6;

  color: var(--muted);
}


/* GRID */

.testimonial-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;

  margin-top: 50px;
}


/* CARD */

.card {
  position: relative;

  min-height: 150px;

  padding: 28px;

  text-align: left;

  background: var(--parchment);

  border-radius: 22px;

  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.25);
}

.stars {
  margin-bottom: 14px;

  color: var(--gold-dark);

  font-size: 14px;

  letter-spacing: 2px;
}

.card p {
  margin-bottom: 22px;

  font-size: 15px;

  line-height: 1.6;

  color: var(--ink-dark);
}

.card h4 {
  font-size: 15px;
  font-weight: 700;

  color: var(--ink-dark);
}

.card span {
  display: block;

  margin-top: 5px;

  font-size: 13px;

  color: var(--muted-dark);
}


/* =========================================================
   9. CTA — START YOUR QUEST
========================================================= */

.cta {
  padding: 120px 40px;

  text-align: center;

  background:
    linear-gradient(
      135deg,
      var(--violet) 0%,
      #4C34C9 55%,
      var(--gold-dark) 130%
    );

  color: #fff;
}

.cta h2 {
  margin-bottom: 10px;

  font-size: 36px;

  line-height: 1.25;
}

.cta p {
  max-width: 650px;

  margin: 0 auto 40px;

  line-height: 1.6;

  opacity: 0.9;
}

.cta .store-buttons {
  justify-content: center;
}


/* =========================================================
   10. FLOATING BUTTON
========================================================= */

.floating-btn {
  position: fixed;

  right: 25px;
  bottom: 25px;

  padding: 14px 20px;

  border-radius: 50px;

  background: var(--bg-deep-3);

  border: 1px solid rgba(245, 185, 66, 0.4);

  color: var(--gold);

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  z-index: 1000;
}

.floating-btn:hover {
  transform: translateY(-3px);

  background: var(--gold);
  color: var(--ink-dark);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}


/* =========================================================
   11. FOOTER
========================================================= */

.footer {
  padding: 24px 40px;

  background: var(--bg-deep-2);

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 10%;
}


/* LEFT */

.footer-left {
  display: flex;

  align-items: center;

  gap: 10px;
}

.footer-logo {
  width: 36px;
  height: 36px;

  border-radius: 8px;
}

.footer-text,
.footer-left .logo-text {
  font-size: 16px;
  font-weight: 600;
}


/* RIGHT */

.footer-right {
  font-size: 14px;

  color: var(--muted);
}

.footer-right a {
  font-size: 14px;

  color: var(--muted);

  text-decoration: none;
}

.footer-right a:hover {
  color: var(--gold);
}


/* =========================================================
   12. TABLET
   769px - 1000px
========================================================= */

@media (max-width: 1000px) {

  /* HERO */

  .hero-container {
    gap: 20px;
  }

  .hero-left h1,
  .hero-title {
    font-size: 42px;
  }

  .hero-right {
    height: 400px;
  }

  .player-card {
    width: 220px;
  }

  .phone {
    width: 160px;
  }

  .p1 {
    left: 0;
    top: 150px;
  }

  .p2 {
    left: 95px;
    top: 90px;
  }

  .p3 {
    left: 190px;
    top: 160px;
  }

  /* JOURNEY */

  .journey {
    padding: 90px 20px 100px;
  }

  .journey .subheading {
    margin-bottom: 55px;
  }

  .roadmap {
    height: 320px;
  }

  .roadmap-node {
    width: 50px;
    height: 50px;

    font-size: 15px;
  }

  .roadmap-col.final .roadmap-node {
    width: 66px;
    height: 66px;
  }

  .roadmap-caption {
    max-width: 150px;
  }

  .roadmap-caption h3 {
    font-size: 14px;
  }

  .roadmap-caption p {
    font-size: 12px;
  }

  /* WHY */

  .why-grid {
    gap: 20px;
  }

  /* SHOWCASE */

  .slider {
    padding-left: 55px;
    padding-right: 55px;
  }

  .content {
    gap: 25px;
  }

  .image {
    flex-basis: 260px;

    width: 260px;
    height: 330px;
  }

  .image img {
    width: 260px;
    height: 330px;
  }

}


/* =========================================================
   13. MOBILE
   768px and below
========================================================= */

@media (max-width: 768px) {

  /* NAVBAR */

  .navbar {
    padding: 9px 14px;
  }

  .nav-left {
    padding-left: 0;

    gap: 7px;
  }

  .nav-logo {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 18px;
  }


  /* HERO */

  .hero {
    padding: 105px 20px 60px;
  }

  .hero::before {
    top: -70px;
    right: -90px;

    width: 280px;
    height: 280px;
  }

  .hero-container {
    display: flex;

    flex-direction: column;

    gap: 44px;

    text-align: center;
  }

  .hero-left {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .hero-logo {
    width: 120px;
    height: 120px;

    margin-bottom: 18px;
  }

  .hero-left h1,
  .hero-title {
    max-width: 520px;

    margin-bottom: 16px;

    font-size: 34px;

    line-height: 1.18;
  }

  .hero-left p {
    max-width: 430px;

    margin-bottom: 25px;

    font-size: 15px;

    line-height: 1.6;

    text-align: center;
  }

  .hero-left .store-buttons {
    justify-content: center;

    width: 100%;

    gap: 10px;

    margin-bottom: 28px;
  }

  .hero-stats {
    justify-content: center;

    gap: 26px;
  }

  .hero-right {
    width: 100%;

    height: 330px;

    margin-top: 10px;
  }

  .player-card {
    width: 210px;

    left: 50%;
    right: auto;

    top: -10px;

    transform: translateX(-50%);
  }

  @keyframes float {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
    100% { transform: translateX(-50%) translateY(0); }
  }

  .phone {
    width: 120px;
  }

  .p1 {
    left: calc(50% - 140px);
    top: 175px;
  }

  .p2 {
    left: calc(50% - 60px);
    top: 120px;
  }

  .p3 {
    left: calc(50% + 20px);
    top: 175px;
  }

  .floating-badge {
    font-size: 11px;
    padding: 6px 11px;
  }


  /* JOURNEY */

  .journey {
    padding: 70px 20px 80px;
  }

  .journey-title {
    font-size: 28px;
  }

  .journey .subheading {
    margin-bottom: 40px;

    font-size: 14px;
  }

  .roadmap {
    height: auto;

    flex-direction: column;
    align-items: stretch;
  }

  .roadmap-rail {
    top: 0;
    bottom: 0;
    left: 21px;
    right: auto;

    width: 2px;
    height: auto;

    transform: scaleY(0);
    transform-origin: top;

    background: repeating-linear-gradient(
      to bottom,
      var(--gold) 0,
      var(--gold) 8px,
      transparent 8px,
      transparent 16px
    );
  }

  .roadmap-rail.in-view {
    transform: scaleY(1);
  }

  .roadmap-col {
    flex-direction: row;

    align-items: center;

    gap: 14px;

    margin-bottom: 24px;
  }

  .roadmap-col:last-child {
    margin-bottom: 0;
  }

  .roadmap-col.up,
  .roadmap-col.down {
    justify-content: flex-start;
  }

  .roadmap-connector {
    display: none;
  }

  .roadmap-node {
    order: 1;

    width: 42px;
    height: 42px;

    font-size: 13px;
  }

  .roadmap-col.final .roadmap-node {
    width: 52px;
    height: 52px;
  }

  .roadmap-caption {
    order: 2;

    max-width: none;

    margin: 0 !important;

    text-align: left;
  }

  .roadmap-caption h3 {
    font-size: 14.5px;
  }

  .roadmap-caption p {
    font-size: 12px;
  }


  /* WHY */

  .why {
    padding: 80px 20px;
  }

  .why-title {
    margin-bottom: 40px;

    font-size: 28px;
  }

  .why-grid {
    grid-template-columns: 1fr;

    gap: 18px;

    max-width: 520px;
  }

  .why-card {
    padding: 25px;
  }


  /* TESTIMONIALS */

  .testimonials {
    padding: 80px 20px;
  }

  .testimonials h2 {
    font-size: 28px;
  }

  .testimonials > p {
    font-size: 14px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;

    max-width: 520px;

    margin: 35px auto 0;

    gap: 18px;
  }

  .card {
    min-height: auto;

    padding: 25px;
  }


  /* SHOWCASE */

  .visai-demo {
    padding: 80px 16px;
  }

  .visai-demo h2 {
    font-size: 28px;
  }

  .subheading {
    margin-bottom: 35px;

    font-size: 14px;
  }

  .slider {
    min-height: 0;

    padding: 35px 40px;

    border-radius: 24px;
  }

  .content {
    min-height: 570px;

    flex-direction: column-reverse;

    justify-content: center;

    gap: 25px;
  }

  .text {
    width: 100%;

    max-width: 100%;

    text-align: center;
  }

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

  .text h3 {
    font-size: 24px;

    letter-spacing: -0.4px;
  }

  .text p {
    max-width: 100%;

    font-size: 15px;
  }

  .image {
    flex: none;

    width: 230px;
    height: 300px;
  }

  .image img {
    width: 230px;
    height: 300px;

    border-radius: 24px;
  }

  .arrow {
    width: 40px;
    height: 40px;

    font-size: 16px;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }


  /* CTA */

  .cta {
    padding: 75px 20px;
  }

  .cta h2 {
    max-width: 600px;

    margin: 0 auto 12px;

    font-size: 27px;
  }

  .cta p {
    max-width: 500px;

    margin: 0 auto 30px;

    font-size: 15px;

    line-height: 1.6;
  }

  .cta .store-buttons {
    width: 100%;

    justify-content: center;

    gap: 10px;
  }


  /* FOOTER */

  .footer {
    padding: 22px 20px;
  }

  .footer-content {
    flex-direction: column;

    gap: 12px;

    text-align: center;
  }

  .footer-left {
    justify-content: center;
  }

  .footer-right {
    font-size: 12px;
  }

  .footer-right a {
    font-size: 12px;
  }


  /* FLOATING BUTTON */

  .floating-btn {
    right: 15px;
    bottom: 15px;

    padding: 11px 16px;

    font-size: 12px;
  }

}


/* =========================================================
   14. SMALL MOBILE
   480px and below
========================================================= */

@media (max-width: 480px) {

  /* NAVBAR */

  .navbar {
    padding: 7px 10px;
  }

  .nav-logo {
    width: 22px;
    height: 22px;
  }

  .logo-text {
    font-size: 17px;
  }


  /* HERO */

  .hero {
    padding: 90px 16px 45px;
  }

  .hero-logo {
    width: 80px;
    height: 80px;

    margin-bottom: 16px;
  }

  .hero-left h1,
  .hero-title {
    font-size: 29px;

    line-height: 1.16;
  }

  .hero-left p {
    max-width: 340px;

    font-size: 14px;
  }

  .hero-left .store-buttons {
    gap: 8px;
  }

  .hero-stats {
    gap: 18px;
  }

  .hero-stat-num {
    font-size: 18px;
  }


  /* HERO PLAYER CARD + PHONES */

  .hero-right {
    height: 300px;
  }

  .player-card {
    width: 180px;

    padding: 16px;
  }

  .phone {
    width: 100px;
  }

  .p1 {
    left: calc(50% - 115px);
    top: 165px;
  }

  .p2 {
    left: calc(50% - 50px);
    top: 115px;
  }

  .p3 {
    left: calc(50% + 15px);
    top: 165px;
  }


  /* WHY */

  .why {
    padding: 70px 16px;
  }

  .why-title {
    font-size: 25px;

    margin-bottom: 32px;
  }

  .why-card {
    padding: 23px;
  }

  .why-card h3 {
    font-size: 17px;
  }

  .why-card p,
  .why-card ul {
    font-size: 14px;
  }

  .xp-tag {
    top: 20px;
    right: 20px;
  }


  /* TESTIMONIALS */

  .testimonials {
    padding: 70px 16px;
  }

  .testimonials h2 {
    font-size: 25px;
  }

  .testimonials > p {
    font-size: 14px;
  }

  .testimonial-grid {
    margin-top: 30px;
  }

  .card {
    padding: 23px;
  }

  .card p {
    font-size: 14px;
  }


  /* SHOWCASE */

  .visai-demo {
    padding: 65px 12px;
  }

  .visai-demo h2 {
    font-size: 25px;
  }

  .subheading {
    font-size: 14px;

    margin-bottom: 30px;
  }

  .slider {
    padding: 30px 32px;

    border-radius: 22px;
  }

  .content {
    min-height: 520px;

    gap: 20px;
  }

  .image {
    width: 200px;
    height: 270px;
  }

  .image img {
    width: 200px;
    height: 270px;

    border-radius: 22px;
  }

  .text h3 {
    font-size: 22px;
  }

  .text p {
    font-size: 14px;
  }

  .arrow {
    width: 38px;
    height: 38px;

    font-size: 15px;
  }


  /* CTA */

  .cta {
    padding: 60px 18px;
  }

  .cta h2 {
    font-size: 24px;
  }

  .cta p {
    font-size: 14px;

    margin-bottom: 25px;
  }

  .cta .store-buttons {
    gap: 8px;
  }


  /* FOOTER */

  .footer {
    padding: 20px 16px;
  }

  .footer-content {
    gap: 10px;
  }

  .footer-right,
  .footer-right a {
    font-size: 11px;
  }


  /* FLOATING BUTTON */

  .floating-btn {
    right: 12px;
    bottom: 12px;

    padding: 10px 14px;

    font-size: 11px;
  }

}


/* =========================================================
   15. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .player-card,
  .phone,
  .floating-badge {
    animation: none !important;
  }

  .why-card,
  .xp-fill {
    transition: none !important;
  }
}
