/* ════════════════════════════════════
   BETA — KNUST Campus Marketplace
   Brand: Coffee Bean #2E0D14 + Almond Cream #F5EBE0
   ════════════════════════════════════ */

/* ── Variables ── */
:root {
  /* App brand colours (from colors.xml) */
  --brand: #2E0D14;
  /* Coffee Bean — primary */
  --brand-dark: #1A0809;
  /* Deeper maroon */
  --brand-mid: #4A1621;
  /* Lighter maroon */
  --brand-bright: #6B2033;
  /* Visible maroon for glows */
  --cream: #F5EBE0;
  /* Almond Cream — secondary */
  --cream-dim: #D4C5B5;
  /* Muted cream */
  --cream-faint: #8A7A6E;
  /* Very muted */

  /* Page backgrounds — very dark with warm maroon tint */
  --dark: #080204;
  --dark-2: #0F0507;
  --dark-3: #170A0E;
  --dark-4: #220C11;

  /* Cards & borders */
  --card-bg: rgba(46, 13, 20, 0.4);
  --card-border: rgba(245, 235, 224, 0.08);
  --card-hover: rgba(74, 22, 33, 0.45);

  /* Text — cream family */
  --text: #F5EBE0;
  --text-muted: #9A8878;
  --text-faint: #5C4840;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

/* ── Utility ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.hidden {
  display: none !important;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cream-dim);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-eyebrow.light {
  color: var(--cream);
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.section-heading.light {
  color: #fff;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 16px;
  line-height: 1.75;
}

.section-sub.light {
  color: rgba(245, 235, 224, 0.65);
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--cream);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245, 235, 224, 0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1.5px solid var(--card-border);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: rgba(245, 235, 224, 0.25);
  background: var(--card-bg);
  transform: translateY(-2px);
}

.btn-outline span {
  transition: transform 0.2s;
}

.btn-outline:hover span {
  transform: translateX(4px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(245, 235, 224, 0.35);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1.5px solid rgba(245, 235, 224, 0.15);
  cursor: not-allowed;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(8, 2, 4, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.app-svg-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: block;
}

.logo-word {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
}

.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 var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--cream);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

.nav-mobile-cta {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 22, 33, 0.9), transparent 70%);
  top: -200px;
  left: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 32, 51, 0.6), transparent 70%);
  top: 100px;
  right: -150px;
  animation-delay: -3s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 13, 20, 0.8), transparent 70%);
  bottom: -100px;
  right: 300px;
  animation-delay: -6s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 235, 224, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 235, 224, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(245, 235, 224, 0.07);
  border: 1px solid rgba(245, 235, 224, 0.18);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 24px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--cream);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 235, 224, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px transparent;
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.gold-text {
  background: linear-gradient(135deg, var(--cream), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Phone mockup */
.hero-right {
  display: flex;
  justify-content: center;
}

.phone-wrap {
  position: relative;
  width: 280px;
  animation: phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

.phone-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 30px;
  background: rgba(245, 235, 224, 0.1);
  filter: blur(20px);
  border-radius: 50%;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  background: var(--brand-dark);
  border-radius: 40px;
  border: 2px solid rgba(245, 235, 224, 0.12);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(245, 235, 224, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: var(--brand-dark);
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(23, 10, 14, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 235, 224, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  font-size: 0.82rem;
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
}

.float-card span {
  font-size: 1.4rem;
}

.float-card strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  font-size: 0.82rem;
}

.float-card small {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.fc-1 {
  right: -90px;
  top: 80px;
  animation-delay: 0s;
}

.fc-2 {
  left: -100px;
  top: 220px;
  animation-delay: -1.5s;
}

.fc-3 {
  right: -80px;
  bottom: 120px;
  animation-delay: -3s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-faint);
  z-index: 1;
  animation: fadeUp 1s ease 1s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.scroll-dot {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cream-dim), transparent);
  border-radius: 2px;
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── MARQUEE ── */
.marquee-bar {
  overflow: hidden;
  background: var(--dark-3);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 16px 0;
}

.marquee-track {
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-inner span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  white-space: nowrap;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── GLASS CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.glass-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.glass-card:hover {
  background: var(--card-hover);
  border-color: rgba(245, 235, 224, 0.14);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.glass-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.glass-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── STATS BAND ── */
.stats-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  padding: 56px 0;
  border-top: 1px solid rgba(245, 235, 224, 0.06);
  border-bottom: 1px solid rgba(245, 235, 224, 0.06);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-box {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-lbl {
  font-size: 0.85rem;
  color: rgba(245, 235, 224, 0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(245, 235, 224, 0.12);
}

/* ── SELLERS SECTION ── */
.sellers-section {
  background: var(--dark-2);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.sellers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.seller-feats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.seller-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feat-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  background: rgba(245, 235, 224, 0.05);
  border: 1px solid rgba(245, 235, 224, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seller-feat h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.seller-feat p {
  font-size: 0.85rem;
  color: rgba(245, 235, 224, 0.5);
  line-height: 1.6;
}

.sellers-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.seller-phone-wrap {
  width: 260px;
  height: 520px;
  border-radius: 32px;
  overflow: hidden;
  border: 2px solid rgba(245, 235, 224, 0.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.seller-phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.seller-stat-card {
  position: absolute;
  padding: 14px 18px;
  background: rgba(15, 5, 7, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.revenue-card {
  top: 30px;
  right: -40px;
}

.orders-card {
  bottom: 60px;
  left: -50px;
}

.ssc-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.ssc-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.ssc-change {
  font-size: 0.75rem;
  color: #4ade80;
  margin-top: 2px;
}

/* ── HOW IT WORKS ── */
.hiw-tabs {
  display: flex;
  gap: 8px;
  margin: 40px 0 48px;
  padding: 6px;
  background: var(--dark-3);
  border-radius: 50px;
  width: fit-content;
  border: 1px solid var(--card-border);
}

.hiw-tab {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
}

.hiw-tab.active {
  background: var(--cream);
  color: var(--brand-dark);
  box-shadow: 0 4px 16px rgba(245, 235, 224, 0.1);
}

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
}

.hiw-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.hiw-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.hiw-step:hover {
  border-color: rgba(245, 235, 224, 0.14);
  background: var(--card-hover);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cream);
  opacity: 0.35;
  margin-bottom: 16px;
  line-height: 1;
}

.hiw-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hiw-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hiw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 1.5rem;
  color: var(--cream);
  opacity: 0.3;
  padding-top: 48px;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--dark-2);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.testi-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testi-featured {
  background: linear-gradient(135deg, rgba(46, 13, 20, 0.7), rgba(74, 22, 33, 0.4));
  border-color: rgba(245, 235, 224, 0.15);
  transform: translateY(-8px);
}

.testi-featured.visible {
  transform: translateY(-8px);
}

.testi-stars {
  color: #FFC107;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand-mid), var(--brand-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--cream);
  flex-shrink: 0;
}

.testi-author strong {
  font-size: 0.88rem;
  display: block;
}

.testi-author small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── ABOUT SECTION ── */
.about-inner {
  max-width: 760px;
}

.mission-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: rgba(46, 13, 20, 0.5);
  border: 1px solid rgba(245, 235, 224, 0.12);
  border-radius: var(--radius);
  margin-top: 32px;
}

.mission-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.mission-box h4 {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cream);
}

.mission-box p {
  font-size: 0.95rem;
  color: rgba(245, 235, 224, 0.6);
  line-height: 1.7;
}

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
  background: var(--dark-3);
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--brand-mid), transparent 70%);
  top: -200px;
  left: -100px;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 32, 51, 0.8), transparent 70%);
  bottom: -150px;
  right: -50px;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(245, 235, 224, 0.07);
  border: 1px solid rgba(245, 235, 224, 0.18);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
}

.cta-section h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── MODAL ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-box {
  background: var(--dark-3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
  animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--card-hover);
  color: var(--text);
}

.modal-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.modal-beta {
  width: 56px;
  height: 56px;
  background: var(--cream);
  color: var(--brand-dark);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.modal-box h2 {
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}

.modal-box #modalDescription {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.download-progress {
  margin-bottom: 28px;
}

.progress-bar {
  height: 6px;
  background: var(--dark-4);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-mid), var(--cream-dim));
  border-radius: 10px;
  transition: width 0.1s ease;
}

.progress-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.modal-instructions h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.modal-instructions ol {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-instructions li {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.modal-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
  font-size: 0.78rem;
  color: var(--text-faint);
  justify-content: center;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--card-border);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: rgba(245, 235, 224, 0.07);
  border-color: rgba(245, 235, 224, 0.18);
  color: var(--cream);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--card-border);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ── RIPPLE ── */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 235, 224, 0.15);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 24px 60px;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 0;
  }

  .hero-desc {
    margin: 0 auto 32px;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-btns {
    justify-content: center;
  }

    .float-card {
      display: flex !important;
      padding: 10px 14px;
      gap: 10px;
      z-index: 10;
    }

    .float-card span {
      font-size: 1.25rem;
    }

    .float-card strong {
      font-size: 0.8rem;
    }

    .float-card small {
      font-size: 0.7rem;
    }

    .fc-1 {
      right: -25px;
      top: 40px;
    }

    .fc-2 {
      left: -35px;
      top: 220px;
    }

    .fc-3 {
      right: -10px;
      bottom: 90px;
    }

    .sellers-grid {
      grid-template-columns: 1fr;
    }

    .sellers-visual {
      margin-top: 40px;
    }

    .seller-stat-card {
      padding: 8px 12px;
      z-index: 10;
      white-space: nowrap;
    }

    .ssc-value {
      font-size: 1rem;
    }

    .ssc-label {
      font-size: 0.6rem;
    }
    
    .ssc-change {
      font-size: 0.6rem;
    }

    .revenue-card {
      right: -15px;
      top: 40px;
    }

    .orders-card {
      left: -15px;
      bottom: 60px;
    }

    .testi-grid {
      grid-template-columns: 1fr 1fr;
    }

    .testi-featured {
      transform: translateY(0);
    }

    .hiw-steps {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .hiw-arrow {
      display: none;
    }

    .stats-row {
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
    }

    .stat-divider {
      display: none;
    }

    .footer-top {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  @media (max-width: 768px) {
    .section {
      padding: 72px 0;
    }

    .navbar .nav-links {
      display: none;
    }

    .navbar .nav-cta {
      display: none;
    }

    .nav-toggle {
      display: flex;
    }

    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background: var(--dark-3);
      border-bottom: 1px solid var(--card-border);
      padding: 24px;
      gap: 20px;
    }

    .nav-mobile-cta {
      display: block;
      width: 100%;
      padding: 14px 0;
      background: var(--cream);
      color: var(--brand-dark);
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: 50px;
      text-align: center;
      margin-top: 10px;
    }

    .cards-grid {
      grid-template-columns: 1fr;
    }

    .testi-grid {
      grid-template-columns: 1fr;
    }

    .testi-featured {
      transform: none;
    }

    .footer-links {
      grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }

    .stat-num {
      font-size: 2.2rem;
    }


  }