@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --bg: #05030c;
  --card: rgba(255, 255, 255, 0.07);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #eef0f7;
  --muted: #a7b3c9;
  --primary: #6c4eff;
  --primary-2: #c76dff;
  --accent: linear-gradient(140deg, #6c4eff, #a45cff 40%, #c76dff);
  --radius-lg: 28px;
  --radius-sm: 18px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  --blur: blur(16px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page-gradient {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(108, 78, 255, 0.16), transparent 35%),
              radial-gradient(circle at 80% 30%, rgba(196, 109, 255, 0.12), transparent 35%),
              radial-gradient(circle at 50% 70%, rgba(164, 92, 255, 0.18), transparent 40%);
  filter: blur(46px);
  z-index: -1;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 10, 0.6);
  border-bottom: 1px solid var(--stroke);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent);
  color: transparent;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(108, 78, 255, 0.35);
  background-image: url('https://lolo.global/assets/img/logo.png');
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: center;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

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

.cart-dropdown {
  position: relative;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #05050a;
  font-size: 11px;
  margin-left: 6px;
  padding: 0 6px;
}

.cart-dropdown-menu {
  position: absolute;
  right: 0;
  top: 110%;
  min-width: 260px;
  background: rgba(5, 5, 10, 0.95);
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 10px 12px;
  display: none;
  z-index: 25;
}

.cart-dropdown:hover .cart-dropdown-menu {
  display: block;
}

.cart-dropdown-empty {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 4px;
}

.cart-dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  gap: 6px;
}

.cart-dropdown-list li {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.cart-dropdown-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-top: 4px;
}

.primary-btn.small {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
}

.primary-btn,
.ghost-btn,
.store-btn,
.link-btn {
  font-family: inherit;
  border: none;
  cursor: pointer;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
  text-decoration: none;
  font-weight: 600;
}

.primary-btn {
  background: var(--accent);
  color: #05050a;
  padding: 12px 18px;
  box-shadow: 0 16px 40px rgba(108, 78, 255, 0.35);
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.ghost-btn {
  background: rgba(108, 78, 255, 0.12);
  color: var(--text);
  padding: 12px 16px;
  border: 1px solid rgba(164, 92, 255, 0.4);
  display: block;
}

.ghost-btn.small {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.store-btn {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(108, 78, 255, 0.1);
  color: var(--text);
  padding: 12px 16px;
  border: 1px solid rgba(164, 92, 255, 0.35);
  min-width: 150px;
}

.store-sub {
  font-size: 13px;
  color: var(--muted);
}

.store-main {
  font-size: 16px;
  font-weight: 700;
}

.link-btn {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  border: 1px solid var(--stroke);
  display: block;
  margin: 10px 0px;
}

.section {
  padding: 90px 0;
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 10px 0 8px;
  letter-spacing: -0.5px;
}

.hero-text h2 {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 600;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  max-width: 640px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--stroke);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.secure-note {
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.glow-circle {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(108, 78, 255, 0.5), rgba(199, 109, 255, 0.14));
  filter: blur(60px);
  z-index: 0;
}

.phone-wrapper {
  position: relative;
  width: 320px;
  height: 640px;
  perspective: 1200px;
}

.phone-shadow {
  position: absolute;
  inset: 40px -20px -30px -20px;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.35), transparent 60%);
  filter: blur(20px);
  z-index: 0;
}

.phone {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
  padding: 18px;
  z-index: 1;
  overflow: hidden;
  transform: translateZ(0);
}

.phone-top {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.camera {
  width: 60px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.phone-screen {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  height: calc(100% - 40px);
  padding: 18px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.screen-dark {
  background: radial-gradient(circle at 20% 20%, rgba(108, 78, 255, 0.18), rgba(5, 5, 10, 0.9));
}

.screen-layer {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.screen-layer.active {
  opacity: 1;
  transform: translateY(0);
}

.screen-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 600;
  width: fit-content;
}

.screen-placeholder {
  height: 260px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(108, 78, 255, 0.16), rgba(199, 109, 255, 0.18));
  border: 1px dashed rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  background-size: contain;
  background-position: center;
}

.screen-placeholder.dark {
  background: linear-gradient(145deg, rgba(108, 78, 255, 0.22), rgba(5, 5, 10, 0.86));
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  right: -60px;
  top: 70px;
  transform: translateZ(0);
  box-shadow: var(--shadow);
}

.floating-card.alt {
  top: auto;
  bottom: 80px;
  right: -40px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5ecbff;
}

.dot.green { background: #5fe3b6; }
.dot.purple { background: #7c5dff; }

.card-label {
  color: var(--muted);
  margin: 0;
}

.card-value {
  margin: 2px 0 0;
  font-weight: 700;
  color: var(--text);
}

.glass {
  background: var(--card);
  border: 1px solid var(--stroke);
  backdrop-filter: var(--blur);
  z-index: 9;
}s

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 40px;
}

.section-header h3 {
  margin: 12px 0 8px;
  font-size: clamp(26px, 4vw, 36px);
}

.subhead {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.feature-card h4 {
  margin: 12px 0 8px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 24px;
}

.icon-badge.large {
  width: 80px;
  height: 80px;
  font-size: 32px;
}

.showcase {
  padding-top: 40px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.showcase-copy h3 {
  margin: 12px 0;
  font-size: clamp(26px, 4vw, 34px);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.checklist li::before {
  content: '•';
  color: var(--primary-2);
  position: absolute;
  left: 0;
  top: 2px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.coins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
}

.coin-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.badge {
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.badge.solid {
  background: var(--accent);
  color: #05050a;
  border: none;
}

.coin-preview {
  display: grid;
  gap: 14px;
}

.coin-mock {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.coin-mock.alt {
  grid-template-columns: 1fr auto;
}

.coin-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--stroke);
  font-weight: 700;
}

.mini-chart {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.mini-chart span {
  display: block;
  width: 6px;
  background: var(--accent);
  border-radius: 10px;
}

.footer {
  padding: 40px 0 30px;
  border-top: 1px solid var(--stroke);
  background: rgba(5, 5, 10, 0.7);
  backdrop-filter: blur(10px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.footnote {
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
}

.footer-links a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin: 6px 0;
}

.foot-label {
  margin: 0;
  font-weight: 700;
}

.copyright {
  text-align: center;
  color: var(--muted);
  margin-top: 18px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.package-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.2), rgba(94, 203, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.package-card:hover::before {
  opacity: 1;
}

.package-card.featured {
  border: 1px solid rgba(124, 93, 255, 0.5);
  box-shadow: 0 24px 70px rgba(124, 93, 255, 0.25);
}

.package-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.package-card h4 {
  margin: 8px 0 4px;
}

.price {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
}

.package-copy {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.full {
  width: 100%;
  text-align: center;
}

.reassurance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.reassurance-card {
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  align-items: start;
}

.cart-card,
.summary-card,
.form-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  align-items: center;
}

.cart-row .meta {
  color: var(--muted);
  margin: 2px 0 0;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.qty button {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
}

.summary-total {
  font-weight: 700;
  font-size: 18px;
}

.muted {
  color: var(--muted);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.checkout-grid input,
.checkout-grid select,
.checkout-grid textarea {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-row {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

label {
  color: var(--muted);
  font-size: 14px;
}

input {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 15px;
}

.checkout-summary {
  display: grid;
  gap: 10px;
  margin: 12px 0;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 10, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.success-popup.show {
  display: flex;
}

.popup-content {
  padding: 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 360px;
  width: 90%;
}

.packages-grid .primary-btn,
.cart-layout .primary-btn,
.checkout-grid .primary-btn {
  box-shadow: 0 16px 40px rgba(124, 93, 255, 0.35);
  display: block;
}

.fade-in,
.slide-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.in-view,
.slide-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.24s; }

.tilt {
  transition: transform 0.3s ease;
}

.tilt:hover {
  transform: rotateY(-6deg) rotateX(4deg);
}

.cart-empty {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  border: 1px dashed var(--stroke);
  border-radius: var(--radius-lg);
}

@media (max-width: 960px) {
  .cart-layout,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 40px;
  }

  .section {
    padding: 60px 0;
  }

  .phone-wrapper {
    width: 280px;
    height: 560px;
  }

  .floating-card {
    right: -20px;
  }
}

