﻿/* ================================================================
   EGWU.AFRICA — style.css
   Mobile-first base. Larger screen enhancements in responsive.css.
   ================================================================ */

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter Tight', sans-serif;
  background: #14181B;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img, video, embed, object, iframe { display: block; max-width: 100%; height: auto; }
*, *::before, *::after { max-width: 100%; }
p, h1, h2, h3, h4, h5, h6, li, a, span, blockquote { overflow-wrap: break-word; word-break: break-word; }
a      { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  --blue:   #004aad;
  --blue-h: #003d8c;
  --blue-l: #1a6ef0;
  --accent: #4e90f5;

  --bg:  #14181B;
  --bg2: #1D2428;
  --bg3: #22282d;
  --glass:  rgba(255,255,255,0.04);
  --glass2: rgba(255,255,255,0.08);
  --b:  rgba(255,255,255,0.08);
  --b2: rgba(255,255,255,0.14);
  --muted: rgba(255,255,255,0.50);
  --dim:   rgba(255,255,255,0.70);
  --px:    20px;
  --nav-h: 64px;
}

/* Gradient text */
.tg {
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════════════════
   PROGRESS BAR
══════════════════════════════════════════════════════════════════ */
#page-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--blue), var(--accent), var(--blue-l));
  background-size: 200% 100%;
  z-index: 9999;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease, opacity 0.3s ease;
  pointer-events: none;
  opacity: 0;
}
#page-progress.loading { transform: scaleX(0.65); opacity: 1; animation: progressShimmer 1.2s linear infinite; }
#page-progress.done    { transform: scaleX(1); }
#page-progress.hide    { opacity: 0; }


/* ══════════════════════════════════════════════════════════════════
   NAVIGATION  (desktop: dropdowns — mobile: hamburger)
══════════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0;
  transition: background 0.3s;
}
.site-nav.scrolled {  }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  max-width: 1380px;
  margin: 0 auto;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-tagline {
  display: none;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  line-height: 1.35;
  letter-spacing: 0.01em;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 10px;
}

/* Desktop dropdown nav — hidden on mobile, shown via responsive.css */
.nav-desktop { display: none; align-items: center; gap: 2px; }

/* Nav item wrapper */
.nav-item { position: relative; }

/* Nav trigger button */
.nav-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 13px;
  border-radius: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-btn:hover       { color: #fff; background: var(--glass2); }
.nav-item.open .nav-btn { color: #fff; background: #004aaded; }

/* Chevron */
.nav-chev {
  width: 10px; height: 6px;
  transition: transform 0.22s ease;
  flex-shrink: 0;
  opacity: 0.55;
}
.nav-item.open .nav-chev { transform: rotate(180deg); opacity: 1; }

/* ─── DROPDOWN PANEL (base) ─────────────────────────────────── */
.nav-drop {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 290px;
  background: #004aaded;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.20s ease, transform 0.22s cubic-bezier(0.22,1,0.36,1), visibility 0.20s;
  z-index: 600;
  box-shadow: 0 24px 64px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.04);
}
.nav-item.open .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Standard dropdown link */
.nd-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 13px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: background 0.15s;
}
.nd-link:hover { background: rgba(255,255,255,0.06); }
.nd-link > .nd-ico { font-size: 18px; flex-shrink: 0; width: 26px; text-align: center; }
.nd-link > div b     { display: block; font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 1px; }
.nd-link > div small { font-size: 11.5px; color: var(--muted); line-height: 1.3; }

/* ─── MEGA DROPDOWN (Discover) ──────────────────────────────── */
.mega-drop {
  left: -16px;
  transform: translateX(0) translateY(-8px);
  width: min(95vw, 870px);
  min-width: unset;
  display: grid;
  grid-template-columns: 218px 1fr 256px;
  padding: 0;
  overflow: hidden;
}
.nav-item.open .mega-drop { transform: translateX(0) translateY(0); }

/* Left sidebar */
.mega-sidebar {
  padding: 10px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.mega-cat {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 14px;
  text-decoration: none;
  color: #fff;
  transition: background 0.14s;
  border-left: 2px solid transparent;
}
.mega-cat:hover   { background: rgba(255,255,255,0.05); }
.mega-cat.is-active {
  background: rgba(0,74,173,0.08);
  border-left-color: var(--blue);
}
.mcat-icon { font-size: 17px; width: 22px; text-align: center; flex-shrink: 0; }
.mcat-body b     { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.mcat-body small { font-size: 11px; color: var(--muted); }

/* Center feature pane */
.mega-feature {
  padding: 22px 22px 18px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}
.mega-feature h3 {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.mega-feature p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 16px;
}
.mega-feat-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mfn-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.mega-feat-note p { font-size: 12px; color: var(--muted); line-height: 1.55; margin: 0; }

/* Right column */
.mega-right {
  display: flex;
  flex-direction: column;
  padding: 12px 10px;
}

/* Trending header */
.mega-trending-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 10px;
}
.mega-trending-head > span { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.55); }
.mega-trending-head > a   { font-size: 11px; font-weight: 600; color: var(--accent); transition: color 0.14s; }
.mega-trending-head > a:hover { color: #fff; }

/* Trend items */
.mti {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px;
  border-radius: 8px;
  transition: background 0.14s;
  text-decoration: none;
  color: #fff;
}
.mti:hover { background: rgba(255,255,255,0.05); }
.mti-num  { font-size: 11px; color: var(--muted); width: 14px; text-align: center; flex-shrink: 0; }
.mti-art  { width: 30px; height: 30px; border-radius: 6px; background: var(--bg3); flex-shrink: 0; }
.mti-info { flex: 1; min-width: 0; }
.mti-info b     { display: block; font-size: 12px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mti-info small { font-size: 10.5px; color: var(--muted); }
.mti-play { font-size: 9px; color: var(--muted); flex-shrink: 0; }

/* Support creators card */
.mega-support {
  margin-top: auto;
  background: linear-gradient(135deg, #160e30 0%, #0c1836 100%);
  border-radius: 12px;
  padding: 14px;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mega-support-tag {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}
.mega-support h4 {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 5px;
}
.mega-support p {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

/* Bridge: invisible zone so mouse can travel from nav-btn to dropdown */
.nav-drop::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}


/* ── HAMBURGER BUTTON ────────────────────────────────────────────── */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  border: 1.5px solid var(--b2);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.hamburger-btn:hover { background: var(--glass2); border-color: rgba(255,255,255,0.28); }
.hamburger-btn .hb-bar {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.26s cubic-bezier(0.22,1,0.36,1), opacity 0.2s, width 0.26s;
  transform-origin: center;
}
body.menu-open .hamburger-btn .hb-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .hamburger-btn .hb-bar:nth-child(2) { opacity: 0; width: 10px; }
body.menu-open .hamburger-btn .hb-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.menu-open .hamburger-btn { border-color: rgba(255,255,255,0.3); background: var(--glass); }


/* ── NAV ACTIONS ─────────────────────────────────────────────────── */
.nav-actions { display: flex; align-items: center; gap: 8px; }
.btn-nav-login { display: none; }


/* ══════════════════════════════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open { visibility: visible; pointer-events: all; }

.mobile-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,6,14,0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-menu.open .mobile-backdrop { opacity: 1; }

.mobile-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 100vw);
  background: transparent;
  border-left: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.44s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }

/* Panel header */
.mobile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.mobile-logo { flex-shrink: 0; }
.mobile-logo img { height: 30px; width: auto; }
.mobile-header-btns {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: flex-end;
}
.mh-btn {
  padding: 7px 13px;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: 'Inter Tight', sans-serif;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.16s, color 0.16s, border-color 0.16s;
}
.mh-btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
}
.mh-btn-ghost:hover { border-color: rgba(255,255,255,0.45); color: #fff; }
.mh-btn-blue {
  background: var(--blue);
  border: 1.5px solid var(--blue);
  color: #fff;
}
.mh-btn-blue:hover { background: var(--blue-h); border-color: var(--blue-h); }
.mobile-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.13);
  background: transparent;
  cursor: pointer;
  color: rgba(255,255,255,0.65);
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
}
.mobile-close:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-close svg { display: block; }

/* Mobile accordion nav */
.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0;
}
.mobile-group-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 13px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  transition: color 0.14s, background 0.14s;
  text-align: left;
}
.mobile-group-btn:hover { color: #fff; background: rgba(255,255,255,0.03); }
.mg-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  transition: background 0.16s, color 0.16s;
}
.mobile-group.open .mg-icon { background: rgba(0,74,173,0.2); color: var(--accent); }
.mg-label { flex: 1; }
.mg-chev {
  width: 10px; height: 6px;
  color: rgba(255,255,255,0.28);
  flex-shrink: 0;
  transition: transform 0.22s ease, color 0.22s;
}
.mobile-group.open .mg-chev { transform: rotate(180deg); color: rgba(255,255,255,0.55); }

.mobile-sub {
  display: none;
  flex-direction: column;
  gap: 3px;
  padding: 4px 12px 8px;
  background: #004aad78;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  margin: 10px;
  border-radius: 20px;
}
.mobile-group.open .mobile-sub { display: flex; }
.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.14s;
}
.mobile-sub-link:hover { background: rgba(255,255,255,0.05); }
.ms-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 7px;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.ms-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ms-body b { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.88); }
.ms-body small { font-size: 11px; color: rgba(255,255,255,0.38); }

/* Mobile bottom CTA */
.mobile-footer {
  flex-shrink: 0;
  padding: 12px 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}
.mobile-cta-box {
  background: rgba(0,74,173,0.08);
  border: 1px solid rgba(0,74,173,0.2);
  border-radius: 14px;
  padding: 13px 13px 11px;
  margin-bottom: 2px;
}
.mobile-cta-top {
  display: flex;
  gap: 11px;
  margin-bottom: 11px;
  align-items: flex-start;
}
.mobile-cta-icon {
  width: 36px; height: 36px;
  background: rgba(0,74,173,0.25);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.mobile-cta-body { flex: 1; min-width: 0; }
.mobile-cta-title { font-size: 13px; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 3px; }
.mobile-cta-body p { font-size: 11px; color: rgba(255,255,255,0.42); line-height: 1.5; }
.mobile-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 11px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 6px;
}
.mobile-cta-primary:hover { background: var(--blue-h); }
.mobile-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 11px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-cta-secondary:hover { background: rgba(255,255,255,0.09); color: #fff; }
.mobile-login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 4px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.14s;
}
.mobile-login-row:hover { color: #fff; }
.mobile-darkmode-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 4px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  width: 100%;
  text-align: left;
  transition: color 0.14s;
}
.mobile-darkmode-btn:hover { color: #fff; }


/* ══════════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 26px;
  letter-spacing: 0;
  transition: all 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  border: 2px solid transparent;
}
.btn-white   { background: #fff; color: #14181B; border-color: transparent; }
.btn-white:hover { background: #d8e4ff; }
.btn-blue    { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-h); box-shadow: 0 6px 24px rgba(0,74,173,0.42); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.26); }
.btn-outline:hover { border-color: rgba(255,255,255,0.52); background: rgba(255,255,255,0.05); }
.btn-ghost   { background: transparent; color: var(--dim); border-color: var(--b2); }
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-dim     { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.22); }
.btn-dim:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.42); }
.btn-sm { font-size: 13px; padding: 8px 18px; }


/* ══════════════════════════════════════════════════════════════════
   HERO — HOME SPLIT LAYOUT
══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) var(--px) 72px;
  background: var(--bg);
  overflow: hidden;
}

/* Background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 {
  width: min(110vw, 780px);
  height: min(110vw, 780px);
  background: radial-gradient(circle, rgba(0,74,173,0.24) 0%, rgba(0,74,173,0.08) 40%, transparent 65%);
  top: -35%; left: 50%;
  transform: translateX(-50%);
}
.hero-orb-2 {
  width: min(70vw, 480px);
  height: min(70vw, 480px);
  background: radial-gradient(circle, rgba(0,74,173,0.12) 0%, transparent 65%);
  bottom: -20%; right: -10%;
}

/* Background image */
.hero-img-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-img-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.08; }
.hero-img-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(20,24,27,0.55) 0%, transparent 50%, rgba(20,24,27,0.80) 100%);
}

/* Dot grid texture */
.hero-dots {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 80%);
}

/* Split content */
.hero-split {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Text column */
.hero-text {
  flex: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #004aad;
  border: 1px solid rgba(124,58,237,0.28);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  animation: fadeUp 0.7s ease both;
}

.hero h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.03;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: 0;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 32px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-btns .btn { width: 100%; max-width: 300px; }

/* Visual column — phone + stat cards */
.hero-visual {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.7s 0.25s ease both;
}

.hero-visual-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(124,58,237,0.28) 0%, rgba(0,74,173,0.18) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

/* Phone frame */
.hero-phone {
  width: 200px;
  background: #14181B;
  border-radius: 36px;
  border: 6px solid #1b1e20;
  outline: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 28px 72px rgba(0,0,0,0.75);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.phone-notch {
  width: 70px; height: 22px;
  background: #1D1e1f;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.phone-screen {
  background: #14181B;
  padding: 0 12px 16px;
  min-height: 360px;
}

/* Phone status bar */
.ps-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 8px;
}
.ps-status > span { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.8); }
.ps-status-icons { display: flex; gap: 3px; align-items: center; }
.ps-status-icons span { font-size: 9px; color: rgba(255,255,255,0.6); }

/* Phone top bar */
.ps-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 10px;
}
.ps-egwu { font-size: 13px; font-weight: 900; color: var(--blue-l); }
.ps-topbar-actions { display: flex; gap: 6px; }
.ps-topbar-actions .ps-tbtn {
  font-size: 9px; font-weight: 700; padding: 4px 8px; border-radius: 100px;
}
.ps-tbtn-login { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); }
.ps-tbtn-start { background: var(--blue); color: #fff; }

/* Phone greeting */
.ps-greeting { font-size: 12px; font-weight: 800; color: #fff; margin-bottom: 10px; }

/* Genre pills */
.ps-pills { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }
.ps-pill {
  font-size: 9px; font-weight: 700; padding: 3px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
}
.ps-pill.active { background: rgba(0,74,173,0.15); border-color: rgba(0,74,173,0.35); color: var(--blue-l); }

/* Trending */
.ps-trending-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.ps-trending-head span { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.65); }
.ps-trending-head a   { font-size: 9px; color: var(--accent); }

/* Phone track rows */
.ps-track {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ps-track:last-child { border-bottom: none; }
.ps-track-art {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--bg3);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.6);
}
.ps-track-info { flex: 1; min-width: 0; }
.ps-track-info b     { display: block; font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.85); }
.ps-track-info small { font-size: 9px; color: rgba(255,255,255,0.4); }
.ps-track-play { font-size: 8px; color: rgba(255,255,255,0.3); flex-shrink: 0; }

/* Stat cards */
.hero-stat-card {
  position: absolute;
  background: #14181B;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 12px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.hero-stat-card.hsc-1 { right: -10px; top: 14%; animation: fadeUp 0.7s 0.5s ease both; }
.hero-stat-card.hsc-2 { right: -10px; bottom: 18%; animation: fadeUp 0.7s 0.65s ease both; }
.hsc-label { font-size: 10px; font-weight: 600; color: var(--muted); margin-bottom: 3px; white-space: nowrap; }
.hsc-num   { font-size: 24px; font-weight: 900; color: #fff; line-height: 1.05; }
.hsc-desc  { font-size: 9.5px; color: var(--muted); white-space: nowrap; margin-top: 2px; }

/* Hero app store links (below main CTA buttons) */
.hero-app-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

/* App store badge buttons */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.app-store-btn:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.28); }
.app-store-btn svg { flex-shrink: 0; }
.app-store-btn > div { display: flex; flex-direction: column; line-height: 1.2; }
.app-store-btn > div span { font-size: 10px; color: var(--muted); }
.app-store-btn > div b   { font-size: 14px; font-weight: 700; }

/* Small variant used in hero */
.app-store-btn-sm { padding: 7px 14px; border-radius: 8px; }
.app-store-btn-sm span { font-size: 13px; font-weight: 600; }

/* Fans section: phone mockup split */
.fans-app-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin: 40px 0 48px;
}
.fans-app-phone { position: relative; flex-shrink: 0; }
.fans-app-text { text-align: center; flex: 1; min-width: 0; }
.fans-app-text .card-grid { grid-template-columns: 1fr; }
.app-store-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }


/* ══════════════════════════════════════════════════════════════════
   GENRE MARQUEE
══════════════════════════════════════════════════════════════════ */
.marquee-outer {
  overflow: hidden;
  background: #004aad;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #bcc4ce; white-space: nowrap;
}
.marquee-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: 0.5; flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════════════════ */
.section { padding: 72px var(--px); }
.bg2 { background: #14181B; }
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block; width: 16px; height: 2px;
  background: var(--accent); border-radius: 99px; flex-shrink: 0;
}
.sec-title {
  font-size: 32px; font-weight: 900;
  letter-spacing: 0; line-height: 1.05;
  color: #fff; margin-bottom: 14px;
}
.sec-lead { font-size: 15px; color: var(--muted); line-height: 1.72; }


/* ══════════════════════════════════════════════════════════════════
   SPLIT LAYOUT
══════════════════════════════════════════════════════════════════ */
.split { display: flex; flex-direction: column; gap: 40px; }
.split > * { min-width: 0; }

/* STAT PAIR */
.stat-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.stat-pair > * { min-width: 0; }
.stat-card {
  background: #14181B; border: 1px solid var(--b);
  border-radius: 18px; padding: 20px 16px;
  overflow: hidden; position: relative;
}
.stat-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.09), transparent);
}
.stat-card .num { font-size: 28px; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-card .lbl { font-size: 11px; color: var(--muted); margin-top: 6px; line-height: 1.4; }

/* MINI CARDS */
.mini-cards { display: flex; flex-direction: column; gap: 10px; }
.mini-card {
  background: var(--glass); border: 1px solid var(--b);
  border-radius: 14px; padding: 16px 18px;
  display: flex; gap: 14px; align-items: center;
  overflow: hidden; min-width: 0;
  transition: border-color 0.2s, transform 0.2s;
}
.mini-card:hover { border-color: rgba(78,144,245,0.30); transform: translateX(4px); }
.mc-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(0,74,173,0.16); border: 1px solid rgba(78,144,245,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.mc-body h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.mc-body p  { font-size: 12.5px; color: var(--muted); line-height: 1.52; }


/* ══════════════════════════════════════════════════════════════════
   FEATURE CARDS GRID
══════════════════════════════════════════════════════════════════ */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
.card-grid > * { min-width: 0; }

.feat-card {
  background: transparent; border: 1px solid var(--b);
  border-radius: 22px; padding: 24px;
  position: relative; overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.feat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, transparent 55%);
  pointer-events: none;
}
.feat-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.28s;
}
.feat-card:hover { transform: translateY(-6px); border-color: rgba(78,144,245,0.30); }
.feat-card:hover::after { opacity: 1; }
.feat-icon {
  width: 50px; height: 50px;
  background: rgba(0,74,173,0.16); border: 1px solid rgba(78,144,245,0.18);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 18px;
}
.feat-card { text-align: center; }
.feat-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feat-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }


/* ══════════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════════ */
.how-wrap { display: flex; flex-direction: column; gap: 40px; margin-top: 48px; }
.how-wrap > * { min-width: 0; }
.step-list { display: flex; flex-direction: column; }
.step-item {
  display: flex; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--b);
}
.step-item:first-child { padding-top: 0; }
.step-item:last-child  { border-bottom: none; padding-bottom: 0; }
.step-num-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; color: #fff;
  box-shadow: 0 0 20px rgba(0,74,173,0.32); flex-shrink: 0;
}
.step-line {
  width: 2px; flex: 1; min-height: 16px; margin-top: 8px;
  background: linear-gradient(to bottom, var(--b2), transparent);
}
.step-item:last-child .step-line { display: none; }
.step-text h3 { font-size: 18px; font-weight: 700; color: #fff; padding-top: 10px; margin-bottom: 6px; }
.step-text p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* Player card mockup */
.player-card {
  background: var(--glass); border: 1px solid var(--b);
  border-radius: 26px; padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden; position: relative;
}
.player-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}
.player-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.player-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.track-row {
  background: rgba(255,255,255,0.04); border: 1px solid var(--b);
  border-radius: 14px; padding: 14px;
  display: flex; align-items: center; gap: 12px; min-width: 0;
  transition: background 0.2s, border-color 0.2s;
}
.track-row:hover { background: rgba(255,255,255,0.07); border-color: var(--b2); }
.track-art { width: 42px; height: 42px; min-width: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.track-info { flex: 1; min-width: 0; }
.track-name  { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-genre { font-size: 11px; color: var(--muted); margin-top: 2px; }
.track-bar   { height: 3px; background: var(--b); border-radius: 99px; margin-top: 8px; position: relative; overflow: hidden; }
.track-fill  { position: absolute; left: 0; top: 0; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--blue-l), var(--accent)); }
.player-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.player-price {
  background: rgba(0,74,173,0.13); border: 1px solid rgba(78,144,245,0.22);
  border-radius: 100px; padding: 6px 14px;
  font-size: 12px; font-weight: 700; color: var(--accent); white-space: nowrap;
}
.player-count { font-size: 11px; color: var(--muted); }
.player-unlock-btn {
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  border-radius: 12px; padding: 14px;
  text-align: center; font-size: 14px; font-weight: 800; color: #fff;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,74,173,0.35);
}
.player-unlock-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,74,173,0.52); }


/* ══════════════════════════════════════════════════════════════════
   LOVE PANELS
══════════════════════════════════════════════════════════════════ */
.love-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 48px; }
.love-grid > * { min-width: 0; }
.love-panel {
  background: var(--glass); border: 1px solid var(--b);
  border-radius: 24px; padding: 28px;
  overflow: hidden; position: relative;
}
.love-panel::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), transparent);
  pointer-events: none;
}
.love-inner { position: relative; z-index: 1; }
.love-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.love-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: rgba(0,74,173,0.16); border: 1px solid rgba(78,144,245,0.20);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; flex-shrink: 0;
}
.love-head-text h3   { font-size: 17px; font-weight: 800; color: #fff; }
.love-head-text span { font-size: 12px; color: var(--muted); display: block; margin-top: 2px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: #fff; }
.chk {
  width: 20px; height: 20px; min-width: 20px;
  background: rgba(0,74,173,0.16); border: 1px solid rgba(78,144,245,0.30);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: var(--accent); flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════════════
   VISION QUOTE
══════════════════════════════════════════════════════════════════ */
.vision-section {
  padding: 80px var(--px);
  text-align: center;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.vision-orb {
  position: absolute;
  width: min(90vw, 600px); height: min(90vw, 600px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,74,173,0.10) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.vision-body { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.vision-body blockquote {
  font-size: 26px; font-weight: 900;
  letter-spacing: 0; line-height: 1.14;
  color: #fff; margin: 14px 0 18px;
}
.vision-body blockquote em { font-style: normal; color: var(--accent); }
.vision-body p { font-size: 15px; color: var(--muted); line-height: 1.75; }


/* ══════════════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════════════ */
.cta-outer { padding: 0 var(--px) 80px; }
.cta-box {
  border-radius: 26px; overflow: hidden; position: relative;
  background: linear-gradient(130deg, #05103d 0%, var(--blue) 55%, #1855d4 100%);
  padding: 44px var(--px);
  display: flex; flex-direction: column;
  gap: 28px; text-align: center;
}
.cta-deco { position: absolute; border-radius: 50%; pointer-events: none; background: rgba(255,255,255,0.04); }
.cta-deco-1 { width: 400px; height: 400px; right: -120px; top: -120px; }
.cta-deco-2 { width: 260px; height: 260px; left: -70px; bottom: -70px; }
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 { font-size: 28px; font-weight: 900; color: #fff; line-height: 1.07; margin-bottom: 10px; }
.cta-copy p  { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.65; }
.cta-btns { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-btns .btn { width: 100%; max-width: 280px; }


/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
footer {
  background: linear-gradient(45deg, black, transparent);
  border-top: 1px solid var(--b);
  padding: 40px var(--px);
}
.footer-logo-d,
.footer-logo-m { height: 30px; width: auto; max-width: 180px; object-fit: contain; object-position: left center; display: block; }
.footer-logo-d { display: none; }
.footer-logo-m { display: block; }


/* ══════════════════════════════════════════════════════════════════
   IMAGE COMPONENTS
══════════════════════════════════════════════════════════════════ */
.section-img {
  width: 100%; border-radius: 20px;
  overflow: hidden; position: relative;
  background: var(--bg3);
}
.section-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-img.ratio-4-3  { aspect-ratio: 4/3; }
.section-img.ratio-16-9 { aspect-ratio: 16/9; }
.section-img.ratio-3-4  { aspect-ratio: 3/4; }
.section-img.ratio-1-1  { aspect-ratio: 1/1; }
.section-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,74,173,0.15), rgba(0,0,0,0.35)); }

.page-img-strip {
  width: 100%; aspect-ratio: 21/8;
  overflow: hidden; border-radius: 20px;
  margin: 48px 0; background: var(--bg3); position: relative;
}
.page-img-strip img { width: 100%; height: 100%; object-fit: cover; }
.page-img-strip-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,74,173,0.20), transparent 60%); }

.img-loading {
  background: linear-gradient(110deg, var(--bg2) 30%, var(--bg3) 50%, var(--bg2) 70%);
  background-size: 200% 100%;
  animation: imgShimmer 1.5s infinite;
}

/* Artists section image */
.artists-img { border-radius: 20px; overflow: hidden; background: var(--bg3); aspect-ratio: 4/3; position: relative; }
.artists-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.artists-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,74,173,0.20), rgba(0,0,0,0.4)); }


/* ══════════════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════════════ */
.sr    { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sr.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; }


/* ══════════════════════════════════════════════════════════════════
   AJAX PAGE TRANSITIONS
══════════════════════════════════════════════════════════════════ */
main { transition: opacity 0.22s ease, transform 0.22s ease; }
main.page-out { opacity: 0; transform: translateY(14px); pointer-events: none; }
main.page-in  { opacity: 0; transform: translateY(-10px); }


/* ══════════════════════════════════════════════════════════════════
   HERO WAVE (sections that use it)
══════════════════════════════════════════════════════════════════ */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  display: flex; align-items: flex-end; justify-content: center; gap: 3px;
  padding-bottom: 16px; opacity: 0.07; pointer-events: none; z-index: 1;
}
.hero-wave span {
  display: block; width: 3px; border-radius: 99px;
  background: linear-gradient(to top, var(--blue), var(--accent));
  animation: waveBar 1.3s ease-in-out infinite alternate;
}


/* ══════════════════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════════════════ */
@keyframes fadeUp       { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
@keyframes waveBar      { from { transform:scaleY(0.15); } to { transform:scaleY(1); } }
@keyframes marquee      { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes progressShimmer { 0% { background-position:200% 0; } 100% { background-position:-200% 0; } }
@keyframes imgShimmer   { 0% { background-position:200% 0; } 100% { background-position:-200% 0; } }
