:root {
  color-scheme: dark;
  --bg: #080A1A;
  --bg-soft: #0B0E26;
  --panel: rgba(14, 18, 48, 0.85);
  --panel-strong: #0f1435;
  --line: rgba(123, 113, 255, 0.28);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f8f9ff;
  --muted: #a1a7c4;
  --purple: #8b36f4;
  --blue: #1673f9;
  --cyan: #18d8ff;
  --green: #50ed75;
  --yellow: #ffe133;
  --red: #ff315d;
  --wrap: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 5%, rgba(68, 40, 220, 0.28), transparent 36rem),
    radial-gradient(circle at 15% 35%, rgba(120, 20, 220, 0.18), transparent 32rem),
    radial-gradient(circle at 50% 85%, rgba(20, 100, 250, 0.12), transparent 40rem),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .lp-section-title, .lp-ai-pro, .lp-duration, .lp-storage, .lp-bogo, .lp-brand span {
  font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
a, button { transition: all 0.25s ease; }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(24, 216, 255, .6);
  outline-offset: 4px;
}

.lp-wrap { width: min(calc(100% - 40px), var(--wrap)); margin-inline: auto; }
.lp-section { padding: 76px 0; }
.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a9b4ff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.lp-kicker::before { content: ""; width: 24px; height: 2px; background: linear-gradient(90deg, var(--purple), var(--cyan)); }
.lp-section-title { margin-top: 10px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -1.2px; font-weight: 800; }
.lp-section-lead { max-width: 680px; margin: 14px auto 0; color: var(--muted); font-size: 0.95rem; }
.lp-center { text-align: center; }
.lp-gradient { color: transparent; background: linear-gradient(90deg, #68a7ff, #a657ff, #ff57cf); background-clip: text; -webkit-background-clip: text; }

/* Header & Nav */
.lp-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8, 10, 26, 0.88);
  backdrop-filter: blur(20px);
}
.lp-nav { display: flex; min-height: 76px; align-items: center; gap: 24px; }
.lp-brand { display: flex; align-items: center; gap: 12px; margin-right: 12px; font-size: 1.15rem; font-weight: 850; }
.lp-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  overflow: hidden;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}
.lp-brand-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }

/* Category & Search Header Items */
.lp-cat-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: #d1d5db;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.lp-cat-dropdown:hover { border-color: rgba(139, 54, 244, 0.5); background: rgba(255,255,255,0.08); }

.lp-search-bar {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 440px;
  position: relative;
}
.lp-search-bar input {
  width: 100%;
  padding: 10px 48px 10px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 0.84rem;
}
.lp-search-bar input:focus { border-color: var(--purple); outline: none; background: rgba(255,255,255,0.08); }
.lp-search-btn {
  position: absolute;
  right: 5px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lp-header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.lp-cart-icon-btn {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: #fff;
}
.lp-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.lp-btn-login { padding: 9px 18px; color: #e5e7eb; font-weight: 700; font-size: 0.84rem; border-radius: 9px; }
.lp-btn-signup, .lp-btn-primary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid rgba(139, 54, 244, 0.6);
  border-radius: 10px;
  background: linear-gradient(110deg, #7c3aed, #2563eb);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
}
.lp-btn-signup:hover, .lp-btn-primary:hover { transform: translateY(-2px); filter: brightness(1.1); }
.lp-btn-secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: #e5e7eb;
  font-weight: 750;
  font-size: 0.86rem;
}
.lp-btn-secondary:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); }

/* Hero Section */
.lp-hero { position: relative; padding: 65px 0 40px; }
.lp-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 50px; }
.lp-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  color: #c4b5fd;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.lp-pill-badge::before { content: "★"; color: var(--yellow); }

.lp-hero h1 { margin-top: 20px; font-size: clamp(2.8rem, 5.5vw, 4.4rem); line-height: 1.08; letter-spacing: -2px; font-weight: 900; }
.lp-hero-desc { margin: 22px 0 30px; color: var(--muted); font-size: 1.02rem; max-width: 580px; }
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 35px; }

/* Trust Strip */
.lp-trust-strip { display: flex; flex-wrap: wrap; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line-soft); }
.lp-trust-item { display: flex; align-items: center; gap: 8px; color: #d1d5db; font-size: 0.78rem; font-weight: 700; }
.lp-trust-item span { color: var(--cyan); }

/* Stats Bar */
.lp-stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.lp-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(14, 18, 48, 0.6);
  backdrop-filter: blur(10px);
}
.lp-stat-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.18);
  color: #a78bfa;
  font-size: 1.2rem;
}
.lp-stat-card strong { display: block; font-size: 1.3rem; font-weight: 900; }
.lp-stat-card small { color: var(--muted); font-size: 0.72rem; }

/* Hero Visual Art Cards */
.lp-hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
  place-items: center;
}
.lp-3d-card {
  width: 100%;
  max-width: 380px;
  padding: 24px;
  border: 1px solid rgba(139, 54, 244, 0.35);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(20, 26, 68, 0.9), rgba(11, 14, 38, 0.95));
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(124, 58, 237, 0.2);
  position: relative;
}
.lp-3d-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.lp-3d-icon { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, #3b82f6, #8b5cf6); display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 1.3rem; }
.lp-3d-rating { display: flex; align-items: center; gap: 4px; color: var(--yellow); font-weight: 800; font-size: 0.82rem; }

/* Categories Grid */
.lp-categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 35px; }
.lp-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(14, 18, 48, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
}
.lp-cat-card:hover { transform: translateY(-5px); border-color: var(--purple); background: rgba(124, 58, 237, 0.12); box-shadow: 0 15px 35px rgba(124, 58, 237, 0.2); }
.lp-cat-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 14px;
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
  font-size: 1.4rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.lp-cat-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.lp-cat-card span { color: var(--muted); font-size: 0.76rem; }

/* Products Grid */
.lp-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 35px; }
.lp-product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: rgba(14, 18, 48, 0.7);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.lp-product-card:hover { transform: translateY(-5px); border-color: rgba(139, 54, 244, 0.5); box-shadow: 0 20px 45px rgba(0,0,0,0.4); }
.lp-product-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.lp-product-thumb { width: 54px; height: 54px; border-radius: 14px; object-fit: cover; border: 1px solid rgba(255,255,255,0.1); }
.lp-discount-badge { padding: 4px 10px; border-radius: 99px; background: rgba(255, 49, 93, 0.2); color: var(--red); font-size: 0.72rem; font-weight: 800; border: 1px solid rgba(255, 49, 93, 0.4); }
.lp-product-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.lp-product-sub { color: var(--muted); font-size: 0.8rem; margin-bottom: 16px; }
.lp-product-rating { display: flex; align-items: center; gap: 6px; color: var(--yellow); font-size: 0.78rem; font-weight: 800; margin-bottom: 16px; }
.lp-product-price-row { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.lp-price-current { font-size: 1.4rem; font-weight: 900; color: #fff; }
.lp-price-old { color: var(--muted); text-decoration: line-through; font-size: 0.85rem; }

/* Countdown Offer Banner */
.lp-offer-banner {
  margin-top: 60px;
  padding: 30px 40px;
  border-radius: 24px;
  border: 1px solid rgba(124, 58, 237, 0.4);
  background: linear-gradient(110deg, rgba(124, 58, 237, 0.25), rgba(37, 99, 235, 0.2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.lp-offer-info h2 { font-size: 1.4rem; margin-top: 4px; }
.lp-countdown { display: flex; gap: 12px; }
.lp-count-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(8, 10, 26, 0.8);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 900;
  font-size: 1.1rem;
}
.lp-count-box small { font-size: 0.6rem; color: var(--muted); font-weight: 700; text-transform: uppercase; margin-top: 2px; }

/* Assurances 6-Grid */
.lp-assurances-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.lp-ass-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(14, 18, 48, 0.6);
}
.lp-ass-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.18);
  color: var(--cyan);
  font-size: 1.2rem;
}
.lp-ass-card h3 { font-size: 0.95rem; font-weight: 800; }
.lp-ass-card p { color: var(--muted); font-size: 0.78rem; margin-top: 4px; }

/* Testimonials */
.lp-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 35px; }
.lp-review-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(14, 18, 48, 0.6);
}
.lp-review-user { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.lp-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--purple); }
.lp-review-user strong { display: block; font-size: 0.9rem; }
.lp-review-user small { color: var(--green); font-size: 0.72rem; font-weight: 700; }
.lp-review-card p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

/* Newsletter */
.lp-newsletter-box {
  margin-top: 60px;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(20, 26, 68, 0.9), rgba(11, 14, 38, 0.95));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.lp-news-form { display: flex; gap: 10px; width: 100%; max-width: 420px; margin-top: 16px; }
.lp-news-form input { flex: 1; padding: 12px 18px; border-radius: 10px; border: 1px solid var(--line); background: rgba(255,255,255,0.05); color: #fff; }

/* Footer */
.lp-footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 30px; padding: 60px 0 40px; border-top: 1px solid var(--line-soft); }
.lp-footer-col h4 { font-size: 0.9rem; font-weight: 800; margin-bottom: 16px; color: #fff; }
.lp-footer-col a { display: block; color: var(--muted); font-size: 0.82rem; margin-bottom: 10px; }
.lp-footer-col a:hover { color: #fff; }
.lp-footer-bottom { padding: 24px 0; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 0.78rem; }
.lp-payment-icons { display: flex; gap: 10px; }
.lp-pay-tag { padding: 4px 10px; border-radius: 6px; background: rgba(255,255,255,0.06); font-size: 0.7rem; font-weight: 800; }

@media (max-width: 990px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .lp-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-products-grid, .lp-assurances-grid, .lp-reviews-grid { grid-template-columns: 1fr; }
  .lp-offer-banner, .lp-newsletter-box { flex-direction: column; text-align: center; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}
