/* =========================================
   SPIKYAPP WEBSITE - MAIN STYLESHEET
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --bg-deep:       #05020f;
  --bg-card:       #0d0a1e;
  --bg-card2:      #110e22;
  --border:        rgba(255,255,255,0.07);
  --pink:          #ff5fa0;
  --purple:        #a855f7;
  --teal:          #2dd4bf;
  --yellow:        #facc15;
  --text-primary:  #f0eeff;
  --text-muted:    rgba(240,238,255,0.5);
  --grad-brand:    linear-gradient(135deg, #ff5fa0 0%, #a855f7 50%, #2dd4bf 100%);
  --grad-pink-pur: linear-gradient(135deg, #ff5fa0, #a855f7);
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
p { color: var(--text-muted); }

/* =========================================
   NAVBAR
   ========================================= */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s;
}
#mainNav.scrolled {
  background: rgba(5,2,15,0.85);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-link-item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted) !important;
  transition: color 0.2s;
  padding: 6px 14px !important;
}
.nav-link-item:hover { color: var(--text-primary) !important; }
.nav-link-item.active { color: var(--text-primary) !important; }

/* Lang switcher */
.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover,
.lang-btn.active {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

/* Hamburger custom */
.navbar-toggler {
  border: 1px solid var(--border);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240,238,255,0.6%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =========================================
   AMBIENT BLOBS (bg deco)
   ========================================= */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.18;
}
.blob-pink  { background: var(--pink);   width: 500px; height: 500px; }
.blob-purple{ background: var(--purple); width: 600px; height: 600px; }
.blob-teal  { background: var(--teal);   width: 400px; height: 400px; }

/* =========================================
   SECTION BASE
   ========================================= */
section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 80px;
}
section:first-of-type { padding-top: 0; }

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title .highlight {
  background: var(--grad-pink-pur);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title .highlight-teal {
  background: linear-gradient(135deg, var(--teal), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 50px;
}

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}
.hero-inner { padding: 140px 0 80px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,95,160,0.12);
  border: 1px solid rgba(255,95,160,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}
.hero-eyebrow span { font-size: 0.6rem; background: var(--pink); border-radius: 50%; width: 8px; height: 8px; display: block; }
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.0;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero-title .grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}
.btn-primary-spike {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-primary-spike:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }
.btn-outline-spike {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline-spike:hover { border-color: var(--pink); color: var(--pink); }

/* Pill tags */
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 4px;
}
.feature-pill .dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-pink   { background: var(--pink); }
.dot-purple { background: var(--purple); }
.dot-teal   { background: var(--teal); }
.dot-yellow { background: var(--yellow); }

/* Hero mockup visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-mock {
  width: 260px;
  height: 520px;
  background: var(--bg-card);
  border-radius: 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(168,85,247,0.25), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-notch {
  width: 80px; height: 26px;
  background: var(--bg-deep);
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.phone-screen {
  padding: 10px 16px;
}
.phone-bar {
  height: 10px; border-radius: 10px;
  margin-bottom: 10px;
  background: var(--bg-card2);
}
.phone-bar.pink   { background: linear-gradient(90deg, var(--pink), transparent); width: 70%; }
.phone-bar.purple { background: linear-gradient(90deg, var(--purple), transparent); width: 55%; }
.phone-bar.teal   { background: linear-gradient(90deg, var(--teal), transparent); width: 40%; }

.phone-card {
  background: var(--bg-card2);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}
.phone-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--grad-brand);
  margin-bottom: 8px;
}
.phone-line {
  height: 7px; border-radius: 6px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 6px;
}
.phone-line.short { width: 60%; }
.earning-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(45,212,191,0.15);
  border: 1px solid rgba(45,212,191,0.3);
  border-radius: 50px; padding: 4px 10px;
  font-size: 0.7rem; font-weight: 700; color: var(--teal);
  font-family: var(--font-display);
}
.phone-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: var(--purple);
  border-radius: 50%; filter: blur(80px);
  opacity: 0.3;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.phone-mock { animation: float 5s ease-in-out infinite; }

/* =========================================
   PROBLEM SECTION
   ========================================= */
#problem { background: linear-gradient(180deg, var(--bg-deep) 0%, #080516 100%); }
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 26px;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-pink-pur);
  opacity: 0;
  transition: opacity 0.3s;
}
.problem-card:hover { border-color: rgba(255,95,160,0.3); transform: translateY(-4px); }
.problem-card:hover::before { opacity: 1; }
.problem-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}
.problem-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.problem-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* =========================================
   SOLUTION SECTION
   ========================================= */
#solution { background: var(--bg-deep); }
.app-combo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 40px;
}
.app-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  transition: border-color 0.2s;
}
.app-chip:hover { border-color: rgba(168,85,247,0.4); }
.app-chip .emoji { font-size: 1.5rem; }
.plus-sign {
  font-size: 1.2rem;
  color: var(--text-muted);
  padding: 0 4px;
}
.solution-banner {
  background: linear-gradient(135deg, rgba(255,95,160,0.1), rgba(168,85,247,0.1), rgba(45,212,191,0.1));
  border: 1px solid rgba(255,95,160,0.2);
  border-radius: 20px;
  padding: 28px 32px;
  text-align: center;
}
.solution-banner h4 {
  font-size: 1.5rem;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.solution-banner p { margin: 0; font-size: 0.95rem; }

/* =========================================
   FEATURES SECTION
   ========================================= */
#features { background: linear-gradient(180deg, #080516 0%, var(--bg-deep) 100%); }
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  background: var(--grad-brand);
  opacity: 0;
  border-radius: 18px;
  transition: opacity 0.3s;
  z-index: 0;
}
.feat-card:hover { transform: translateY(-5px); border-color: transparent; }
.feat-card:hover::after { opacity: 0.08; }
.feat-card > * { position: relative; z-index: 1; }
.feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feat-icon.pink   { background: rgba(255,95,160,0.15); }
.feat-icon.purple { background: rgba(168,85,247,0.15); }
.feat-icon.teal   { background: rgba(45,212,191,0.15); }
.feat-icon.yellow { background: rgba(250,204,21,0.15); }
.feat-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.feat-card p  { font-size: 0.87rem; color: var(--text-muted); margin: 0; }

/* =========================================
   USDT / ECOSYSTEM SECTION
   ========================================= */
#ecosystem { background: var(--bg-deep); }
.usdt-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,212,191,0.12);
  border: 1px solid rgba(45,212,191,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal);
  margin-bottom: 28px;
}
.usdt-list li {
  list-style: none;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.usdt-list li:last-child { border-bottom: none; }
.usdt-list li::before {
  content: '✦';
  color: var(--pink);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.earn-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
  border-left: 3px solid;
  transition: background 0.2s;
}
.earn-card:hover { background: var(--bg-card2); }
.earn-card.pink-l   { border-left-color: var(--pink); }
.earn-card.purple-l { border-left-color: var(--purple); }
.earn-card.teal-l   { border-left-color: var(--teal); }
.earn-card.yellow-l { border-left-color: var(--yellow); }
.earn-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.earn-card p { font-size: 0.87rem; margin: 0; }

/* =========================================
   MARKET SECTION
   ========================================= */
#market { background: linear-gradient(180deg, var(--bg-deep) 0%, #06031a 100%); }
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}
.stat-card:hover { border-color: rgba(168,85,247,0.3); transform: translateY(-3px); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); }
.market-region {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  height: 100%;
  transition: all 0.3s;
}
.market-region:hover { border-color: rgba(45,212,191,0.3); }
.market-region h6 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.market-region p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* =========================================
   BUSINESS MODEL SECTION
   ========================================= */
#bizmodel { background: var(--bg-deep); }
.rev-bar-row {
  display: flex; align-items: center;
  gap: 14px; margin-bottom: 16px;
}
.rev-bar-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  min-width: 140px;
  color: var(--text-primary);
  display: flex; align-items: center; gap: 8px;
}
.rev-bar-track {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  height: 10px;
  overflow: hidden;
}
.rev-bar-fill {
  height: 100%; border-radius: 50px;
  transition: width 1s ease;
}
.rev-bar-pct {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  min-width: 36px;
  text-align: right;
  color: var(--text-muted);
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 12px;
}
.info-card-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.info-card p { font-size: 0.87rem; color: var(--text-muted); margin: 0; }

/* =========================================
   ROADMAP SECTION
   ========================================= */
#roadmap { background: linear-gradient(180deg, #06031a 0%, var(--bg-deep) 100%); }
.road-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.road-card:hover { transform: translateY(-4px); }
.road-card.active-phase {
  border-color: rgba(250,204,21,0.3);
  background: linear-gradient(135deg, var(--bg-card), rgba(250,204,21,0.04));
}
.road-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.badge-done   { background: rgba(45,212,191,0.15); color: var(--teal); }
.badge-now    { background: rgba(250,204,21,0.15); color: var(--yellow); }
.badge-next   { background: rgba(168,85,247,0.15); color: var(--purple); }
.badge-future { background: rgba(255,95,160,0.15); color: var(--pink); }
.road-card h5 { font-size: 1.1rem; margin-bottom: 16px; }
.road-list li {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-muted);
  padding: 4px 0;
}
.road-list li::before {
  content: '→ ';
  color: var(--purple);
}

/* =========================================
   INVESTMENT SECTION
   ========================================= */
#investment { background: var(--bg-deep); }
.raise-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.raise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--grad-brand);
  opacity: 0.04;
  pointer-events: none;
}
.raise-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.raise-sub { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 36px; }
.alloc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.alloc-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
}
.alloc-pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.alloc-label { font-size: 0.75rem; color: var(--text-muted); }
.raise-note { font-size: 0.85rem; color: var(--text-muted); }

/* =========================================
   CONTACT / CTA SECTION
   ========================================= */
#contact {
  background: var(--bg-deep);
  text-align: center;
  padding-bottom: 120px;
}
.cta-box {
  background: linear-gradient(135deg, rgba(255,95,160,0.08), rgba(168,85,247,0.08), rgba(45,212,191,0.08));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: var(--pink);
  border-radius: 50%; filter: blur(100px);
  opacity: 0.08;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: var(--teal);
  border-radius: 50%; filter: blur(100px);
  opacity: 0.08;
}
.cta-email a {
  color: var(--pink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  transition: opacity 0.2s;
}
.cta-email a:hover { opacity: 0.75; }
.social-links { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
  font-family: var(--font-display);
}
.social-btn:hover { border-color: var(--pink); color: var(--text-primary); }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #030210;
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0 12px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-primary); }
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================
   PP / TOS PAGE STYLES
   ========================================= */
.legal-hero {
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}
.legal-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 14px;
}
.legal-date { font-size: 0.88rem; color: var(--text-muted); }
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--text-primary);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--pink);
}
.legal-content p, .legal-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-content li { margin-bottom: 6px; }
.legal-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  position: sticky;
  top: 90px;
  margin-bottom: 30px;
}
.legal-toc h6 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.legal-toc a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.legal-toc a:last-child { border-bottom: none; }
.legal-toc a:hover { color: var(--text-primary); }
.legal-toc a.active { color: var(--pink); }

/* =========================================
   ANIMATIONS & UTILITIES
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.3); border-radius: 10px; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  section { padding: 80px 0 60px; }
  .alloc-grid { grid-template-columns: repeat(2, 1fr); }
  .phone-mock { width: 220px; height: 440px; }
  .hero-visual { margin-top: 50px; }
}
@media (max-width: 767px) {
  section { padding: 70px 0 50px; }
  .rev-bar-label { min-width: 110px; }
  .legal-toc { position: static; margin-bottom: 30px; }
  .raise-card { padding: 36px 20px; }
  .alloc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { margin-bottom: 10px; }
}
@media (max-width: 480px) {
  .alloc-grid { grid-template-columns: repeat(2, 1fr); }
  .phone-mock { width: 180px; height: 360px; }
}
