:root {
  --purple-dark: #0a0a1a;
  --purple-mid: #12102e;
  --purple-nav: #0d0b22;
  --purple-accent: #7c3aed;
  --purple-btn: #6d28d9;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --white: #ffffff;
  --gray: #9ca3af;
  --card-bg: #1a1535;
  --card-bg2: #2a1f0e;
  --card-bg3: #0f1f15;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--purple-dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124,58,237,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-logo-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-outline {
  padding: 7px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  background: transparent;
  color: var(--white);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.05); }

.btn-primary {
  padding: 7px 20px;
  border: none;
  border-radius: 20px;
  background: var(--purple-accent);
  color: var(--white);
  font-size: 0.82rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-primary:hover { background: #6d28d9; transform: translateY(-1px); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 70% 50%, #2d1b69 0%, #1a0e3d 30%, #0a0a1a 70%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 80px 60px;
  position: relative;
  overflow: hidden;
  gap: 40px;
}

.hero-image-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  animation: heroImgFloat 4s ease-in-out infinite;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(124,58,237,0.3));
}

@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 900px) {
  .hero-image-wrap { display: none; }
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(124,58,237,0.15) 0%, transparent 50%);
}

.hero-content {
  max-width: 600px;
  z-index: 1;
  
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

.hero-badge::before { content: '●'; color: var(--gold); font-size: 0.6rem; }

.hero-title {
  font-family: 'Sora', sans-serif;
      font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 18px;
    animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-title .gold { color: var(--gold); }
.hero-title .purple { color: #a78bfa; }

.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--purple-accent);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}

.btn-hero-primary:hover { background: #6d28d9; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(124,58,237,0.4); }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 25px;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}

.btn-hero-outline:hover { border-color: white; background: rgba(255,255,255,0.05); }

.hero-trust {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}

.store-badges {
  display: flex;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
}

.store-badge:hover { border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

.store-badge .store-icon { font-size: 1.3rem; }
.store-badge .store-text { display: flex; flex-direction: column; }
.store-badge .store-text small { font-size: 0.62rem; opacity: 0.7; }
.store-badge .store-text span { font-size: 0.88rem; font-weight: 600; }

/* ── SECTION BASE ── */
section {
  padding: 90px 80px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
}

.section-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 52px;
}

/* ── THE APP ── */
#the-app {
  background: linear-gradient(135deg, #1a1245 0%, #0d0b22 50%, #0a0a1a 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

#the-app::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(124,58,237,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.app-phones-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 500px;
  gap: 0;
  z-index: 1;
}

.app-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 1;
}

.app-section-title {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 12px 0 20px;
  letter-spacing: -1px;
}

.app-section-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.app-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(120,70,20,0.8) 0%, rgba(90,50,15,0.9) 100%);
  border: 2px solid rgba(245,158,11,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fbbf24;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245,158,11,0.15);
}

.feature-icon:hover {
  background: linear-gradient(135deg, rgba(140,80,25,0.9) 0%, rgba(110,60,20,1) 100%);
  border-color: rgba(245,158,11,0.8);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(245,158,11,0.25);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-text h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.feature-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.app-phone-img {
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.app-phone-img.img-small {
  width: 220px;
  opacity: 0.95;
  transform: translateY(20px) translateX(-20px);
  z-index: 1;
}

.app-phone-img.img-large {
  width: 260px;
  z-index: 2;
  margin-left: -40px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
}

.phone-coins {
  background: rgba(245,158,11,0.15);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.6rem;
  color: var(--gold);
  font-weight: 600;
}

.phone-earn-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.phone-earn-card .earn-label { font-size: 0.55rem; color: rgba(255,255,255,0.5); }
.phone-earn-card .earn-amount { font-size: 1.2rem; font-weight: 800; color: var(--gold); }
.phone-earn-card .earn-sub { font-size: 0.5rem; color: rgba(255,255,255,0.4); }

/* ── HOW IT WORKS ── */
#how-it-works {
  background: #0a0a1a;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.step-card {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 20px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: rgba(124,58,237,0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(124,58,237,0.15);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-accent), #4f46e5);
}

.step-number {
  font-size: 0.7rem;
  color: var(--purple-accent);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.steps-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
}

.steps-footer .gold { color: var(--gold); font-weight: 600; }

/* ── WHY US ── */
#why-us {
  background: #080816;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.why-card {
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s;
}

.why-card:hover { transform: translateY(-4px); }

.why-card-users { background: rgba(109,40,217,0.25); border: 1px solid rgba(109,40,217,0.3); }
.why-card-biz { background: rgba(120,80,20,0.2); border: 1px solid rgba(180,120,30,0.2); }
.why-card-com { background: rgba(20,80,40,0.2); border: 1px solid rgba(30,150,70,0.2); }

.why-icon { font-size: 2rem; margin-bottom: 18px; }

.why-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── GIVWIN ── */
#givwin {
  background: #1a0e3d;
  text-align: center;
  padding: 90px 80px;
}

.givwin-title {
  font-family: 'Sora', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.givwin-title .give { color: var(--gold); }
.givwin-title .win { color: var(--gold-light); }

.givwin-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 50px;
}

.givwin-photos {
  margin-bottom: 50px;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}

.givwin-photos img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 2px solid rgba(124,58,237,0.25);
}

.givwin-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  position: relative;
}

.givwin-steps::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: rgba(124,58,237,0.4);
}

.givwin-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  max-width: 200px;
}

.givwin-step-dot {
  width: 20px; height: 20px;
  background: var(--purple-accent);
  border-radius: 50%;
  border: 3px solid var(--purple-dark);
  position: relative;
  z-index: 1;
}

.givwin-step p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  text-align: center;
}

.givwin-quote {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}

.givwin-quote strong { color: white; font-weight: 700; }
.givwin-quote .accent { color: var(--gold); font-weight: 700; font-style: italic; }

/* ── FOR BUSINESSES ── */
#for-businesses {
  background: #08080f;
}

.biz-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}

.biz-card {
  background: rgba(124,58,237,0.07);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.3s;
}

.biz-card:hover {
  border-color: rgba(124,58,237,0.45);
  transform: translateY(-4px);
}

.biz-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 20px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.biz-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.biz-card > p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 22px;
}

.biz-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.biz-list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}

.biz-list li::before {
  content: '→';
  color: var(--purple-accent);
  font-weight: 700;
}

.biz-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--purple-accent);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}

.btn-partner:hover { background: #6d28d9; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(124,58,237,0.4); }

/* ── MOVEMENT ── */
#movement {
  background: linear-gradient(160deg, #1a0e3d 0%, #0d0b22 60%, #0a0a1a 100%);
  padding: 80px 80px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}

.movement-text-col {
  flex: 1;
  padding-bottom: 80px;
}

.movement-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.movement-title {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.movement-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 28px;
}

.movement-download-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 460px;
}

.movement-download-text strong {
  color: white;
  font-weight: 600;
}

.movement-store-badges {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}

.movement-duck {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.movement-duck img {
  width: 420px;
  max-width: 40vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 -10px 40px rgba(124,58,237,0.2));
  display: block;
}

@media (max-width: 900px) {
  #movement { flex-direction: column; padding-bottom: 60px; }
  .movement-duck { display: none; }
}

/* ── FAQ ── */
#faq { background: #0a0a12; }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 70px; align-items: start; padding: 90px 80px; }
.faq-sidebar { position: sticky; top: 90px; }
.faq-sidebar-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.faq-cat-btn { display: block; width: 100%; text-align: left; padding: 10px 14px; border-radius: 10px; border: none; background: none; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s; margin-bottom: 4px; }
.faq-cat-btn.active { background: rgba(124,58,237,0.2); color: #fff; font-weight: 600; }
.faq-cat-btn:hover { color: #fff; background: rgba(124,58,237,0.1); }
.faq-content { }
.faq-group { display: none; }
.faq-group.active { display: block; animation: fadeUp 0.3s ease both; }
.faq-group-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(124,58,237,0.2); }
.faq-item { border-bottom: 1px solid rgba(124,58,237,0.15); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 600; color: #fff; transition: color 0.2s; }
.faq-question:hover { color: var(--purple-accent); }
.faq-icon { width: 26px; height: 26px; background: rgba(124,58,237,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; color: var(--purple-accent); transition: transform 0.3s, background 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(124,58,237,0.4); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* ── CONTACT ── */
#contact {
  position: relative;
  background: #0d0b22;
}

.contact-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 16px;
  padding: 5px;
  max-width: 420px;
  margin-bottom: 48px;
}

.contact-tab {
  flex: 1;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: none;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}

.contact-tab.active {
  background: var(--purple-accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}

.contact-panel {
  display: none;
}

.contact-panel.active {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
  animation: slideUp 0.3s ease both;
}

.contact-info-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.contact-info-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-duck {
  width: 100%;
  max-width: 240px;
  display: block;
}

.contact-info-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  color: #c4b5fd;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-form {
  background: #0a0a1a;
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 22px;
  padding: 36px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 11px;
  padding: 13px 15px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(124,58,237,0.6);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(155,140,196,0.5);
}

.form-select option {
  background: #1a0e3d;
  color: #fff;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--purple-accent), #9333ea);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 6px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.5);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select option { background: #1a1535; }

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-connect {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 25px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}

.btn-connect:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,158,11,0.35);
}

/* ── LEGAL ── */
#legal {
  background: #0a0a1a;
}

.legal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.legal-card {
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 18px;
  padding: 32px 26px;
  transition: all 0.3s;
}

.legal-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
}

.legal-icon { font-size: 2rem; margin-bottom: 18px; }

.legal-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.legal-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 18px;
}

.legal-link {
  color: var(--purple-accent);
  font-size: 0.83rem;
  text-decoration: none;
  font-weight: 500;
}

.legal-link:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: #08080f;
  padding: 60px 80px 30px;
  border-top: 1px solid rgba(124,58,237,0.12);
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin: 8px 0 20px;
}

.footer-store-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 0.78rem;
  transition: all 0.2s;
  width: fit-content;
}

.footer-store-badge:hover { border-color: rgba(255,255,255,0.3); }

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  color: white;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--purple-accent);
  background: rgba(124,58,237,0.15);
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

.footer-tagline {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  margin-top: 16px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp 0.7s ease both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-content > *:nth-child(6) { animation-delay: 0.6s; }

/* Mobile menu toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

/* ===== LEGAL SECTION ===== */
.legal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.legal-card { background: #0a0a1a; border: 1px solid rgba(124,58,237,0.2); border-radius: 20px; padding: 32px 28px; transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden; }
.legal-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,0.08), transparent); opacity: 0; transition: opacity 0.3s; }
.legal-card:hover { border-color: rgba(124,58,237,0.5); transform: translateY(-3px); }
.legal-card:hover::after { opacity: 1; }
.legal-icon { font-size: 32px; margin-bottom: 16px; }
.legal-title { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.legal-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.legal-link { display: inline-flex; align-items: center; gap: 6px; color: #c4b5fd; font-size: 13px; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.legal-link:hover { color: var(--gold); }

/* ===== MODAL OVERLAY ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.82); backdrop-filter: blur(10px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }

/* ===== LEGAL MODAL SHELL ===== */
.legal-modal { background: #0a0a1a; border: 1px solid rgba(124,58,237,0.3); border-radius: 24px; width: 100%; max-width: 940px; height: 86vh; max-height: 680px; display: flex; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.7); animation: slideUp 0.3s ease both; }

/* ===== SIDEBAR ===== */
.lm-sidebar { width: 230px; flex-shrink: 0; background: rgba(0,0,0,0.3); border-right: 1px solid rgba(124,58,237,0.18); display: flex; flex-direction: column; overflow: hidden; }
.lm-sidebar-top { padding: 20px 14px 12px; border-bottom: 1px solid rgba(124,58,237,0.15); flex-shrink: 0; }
.lm-sidebar-label { font-family: 'Sora', sans-serif; font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 10px; }
.doc-tabs { display: flex; flex-direction: column; gap: 3px; }
.doc-tab { display: flex; align-items: center; gap: 8px; padding: 9px 11px; border-radius: 9px; border: none; background: none; font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s; text-align: left; width: 100%; }
.doc-tab:hover { background: rgba(124,58,237,0.1); color: #fff; }
.doc-tab.active { background: rgba(124,58,237,0.22); color: #fff; border: 1px solid rgba(124,58,237,0.3); }
.doc-tab .dt-icon { font-size: 13px; width: 16px; text-align: center; flex-shrink: 0; }
.doc-tab .dt-arrow { margin-left: auto; font-size: 10px; color: rgba(255,255,255,0.5); transition: transform 0.2s, color 0.2s; }
.doc-tab.active .dt-arrow { color: var(--gold); transform: rotate(90deg); }
.lm-sections { flex: 1; overflow-y: auto; padding: 8px 8px 14px; }
.lm-sections::-webkit-scrollbar { width: 3px; }
.lm-sections::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.3); border-radius: 3px; }
.sec-group { display: none; }
.sec-group.active { display: block; animation: fadeIn 0.2s ease; }
.sec-group-label { font-family: 'Sora', sans-serif; font-size: 9px; font-weight: 700; color: rgba(155,140,196,0.45); letter-spacing: 2px; text-transform: uppercase; padding: 8px 8px 5px; }
.sec-tab { display: flex; align-items: center; gap: 8px; width: 100%; padding: 7px 9px; border-radius: 7px; border: none; background: none; font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s; text-align: left; }
.sec-tab:hover { background: rgba(124,58,237,0.1); color: #fff; }
.sec-tab.active { background: rgba(124,58,237,0.18); color: #c4b5fd; font-weight: 700; }
.sec-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); flex-shrink: 0; transition: background 0.2s; }
.sec-tab.active .sec-dot { background: var(--gold); }

/* ===== MAIN CONTENT AREA ===== */
.lm-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.lm-progress { height: 2px; background: rgba(124,58,237,0.15); flex-shrink: 0; }
.lm-progress-fill { height: 100%; background: linear-gradient(90deg, var(--purple-accent), #c4b5fd); transition: width 0.3s ease; }
.lm-header { padding: 18px 26px 16px; border-bottom: 1px solid rgba(124,58,237,0.18); display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.lm-header-left { display: flex; align-items: center; gap: 11px; }
.lm-icon-badge { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.lmi-purple { background: rgba(124,58,237,0.25); }
.lmi-yellow { background: rgba(245,197,24,0.15); }
.lmi-green  { background: rgba(34,197,94,0.15); }
.lmi-blue   { background: rgba(59,130,246,0.15); }
.lm-title { font-size: 17px; font-weight: 800; color: #fff; }
.lm-breadcrumb { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 1px; display: flex; align-items: center; gap: 4px; }
.lm-breadcrumb .bc-sep { color: rgba(155,140,196,0.4); }
.lm-breadcrumb .bc-active { color: #c4b5fd; }
.lm-close { width: 30px; height: 30px; background: rgba(255,255,255,0.07); border: none; border-radius: 50%; cursor: pointer; color: rgba(255,255,255,0.5); font-size: 14px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.lm-close:hover { background: rgba(124,58,237,0.3); color: #fff; }
.lm-body { flex: 1; overflow-y: auto; padding: 24px 26px; }
.lm-body::-webkit-scrollbar { width: 4px; }
.lm-body::-webkit-scrollbar-track { background: transparent; }
.lm-body::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.35); border-radius: 4px; }

/* ===== CONTENT PANELS ===== */
.lm-panel { display: none; }
.lm-panel.active { display: block; animation: slideUp 0.25s ease both; }
.lm-updated { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,0.5); background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.18); padding: 3px 10px; border-radius: 50px; margin-bottom: 18px; }
.lm-updated span { color: var(--gold); font-weight: 700; }
.lm-sec-title { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -0.4px; }
.lm-sec-intro { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid rgba(124,58,237,0.15); }
.lm-sec-content { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; }
.lm-sec-content p { margin-bottom: 14px; }
.lm-sec-content h2, .lm-sec-content h3, .lm-sec-content h4 { color: #fff; margin-top: 20px; margin-bottom: 10px; font-weight: 700; }
.lm-sec-content ul, .lm-sec-content ol { padding-left: 20px; margin-bottom: 14px; }
.lm-sec-content li { margin-bottom: 6px; }
.lm-sec-content strong { color: #fff; font-weight: 600; }
.lm-block { margin-bottom: 18px; }
.lm-block h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px; display: flex; align-items: center; gap: 7px; }
.lm-block h4::before { content: ''; width: 3px; height: 12px; background: #c4b5fd; border-radius: 2px; flex-shrink: 0; }
.lm-block p, .lm-block li { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; }
.lm-block ul { padding-left: 16px; display: flex; flex-direction: column; gap: 4px; }
.lm-note { background: rgba(245,197,24,0.07); border: 1px solid rgba(245,197,24,0.2); border-radius: 9px; padding: 12px 14px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; display: flex; gap: 10px; }
.lm-note .ni { font-size: 14px; flex-shrink: 0; }
.lm-next { margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(124,58,237,0.15); display: flex; justify-content: flex-end; }
.lm-next-btn { display: inline-flex; align-items: center; gap: 6px; background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.25); color: #c4b5fd; font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600; padding: 7px 13px; border-radius: 50px; cursor: pointer; transition: all 0.2s; }
.lm-next-btn:hover { background: rgba(124,58,237,0.3); color: #fff; }

/* ===== FAQ ACCORDION inside modal ===== */
.lm-faq-list { display: flex; flex-direction: column; margin-bottom: 4px; }
.lm-faq-item { border-bottom: 1px solid rgba(124,58,237,0.18); overflow: hidden; }
.lm-faq-item:first-child { border-top: 1px solid rgba(124,58,237,0.18); }
.lm-faq-btn { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 16px 0; font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: #fff; cursor: pointer; transition: color 0.2s; text-align: left; }
.lm-faq-btn:hover { color: #c4b5fd; }
.lm-faq-item.open .lm-faq-btn { color: #c4b5fd; }
.lm-faq-icon { width: 26px; height: 26px; background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #c4b5fd; flex-shrink: 0; transition: background 0.2s, color 0.2s; }
.lm-faq-item.open .lm-faq-icon { background: var(--purple-accent); border-color: var(--purple-accent); color: #fff; }
.lm-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease, padding-bottom 0.32s ease; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; padding-bottom: 0; }
.lm-faq-item.open .lm-faq-answer { max-height: 200px; padding-bottom: 16px; }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 60px 24px; }
  #hero { padding: 100px 24px 60px; }
  .hero-title { font-size: 2.2rem; }
  #the-app { grid-template-columns: 1fr; padding: 60px 24px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .biz-cards { grid-template-columns: 1fr; }
  #faq { grid-template-columns: 1fr; }
  #contact { grid-template-columns: 1fr; }
  .legal-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .movement-title { font-size: 2rem; }
}
