:root {
  color-scheme: dark;
  --purple: #b54cff;
  --violet: #7c2cff;
  --dark: #050507;
  --card: #101014;
  --line: rgba(255,255,255,.10);
  --muted: rgba(255,255,255,.65);
  --soft: rgba(255,255,255,.04);
  --green: #22c55e;
}

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

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--dark);
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 100; background: #fff; color: #000; padding: 10px 14px; border-radius: 12px; }
.container { width: min(calc(100% - 32px), 1280px); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 32px), 1280px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 0;
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo {
  width: 150px;
  max-height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 7px 10px;
}
.brand-text { display: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  box-shadow: 0 0 40px rgba(181,76,255,.28);
  font-weight: 950;
}
.brand strong { display: block; font-size: 20px; line-height: 1; letter-spacing: -.02em; }
.brand strong span,
.footer-brand span { color: var(--purple); }
.brand small { display: block; margin-top: 5px; font-size: 10px; color: rgba(255,255,255,.55); letter-spacing: .28em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 26px; color: rgba(255,255,255,.75); font-size: 14px; font-weight: 700; }
.nav-links a:hover { color: var(--purple); }
.nav-whatsapp {
  border: 1px solid rgba(181,76,255,.6);
  border-radius: 16px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 10px 40px rgba(181,76,255,.18);
}
.nav-whatsapp:hover { background: var(--purple); }
.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  color: #fff;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}
.mobile-menu.open { display: block; }
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100%;
  border-left: 1px solid var(--line);
  background: #07070a;
  padding: 18px;
  box-shadow: -20px 0 60px rgba(0,0,0,.38);
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mobile-menu-head img { width: 138px; height: auto; }
.mobile-menu-head button {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 10px 12px;
  font-weight: 900;
}
.mobile-menu nav {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.mobile-menu nav a {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  padding: 16px;
  font-weight: 900;
}
.mobile-menu nav a:last-child {
  background: linear-gradient(90deg, var(--purple), var(--violet));
}

.hero-grid {
  background:
    radial-gradient(circle at 80% 10%, rgba(181,76,255,.30), transparent 28%),
    radial-gradient(circle at 15% 30%, rgba(124,44,255,.18), transparent 30%),
    linear-gradient(135deg, #050507 0%, #09090d 45%, #12091c 100%);
  overflow: hidden;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 48px;
  align-items: center;
  padding-block: clamp(48px, 7vw, 86px);
}
.eyebrow,
.section-kicker {
  width: fit-content;
  border: 1px solid rgba(181,76,255,.4);
  border-radius: 999px;
  background: rgba(181,76,255,.1);
  padding: 9px 14px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-kicker { border: 0; background: transparent; padding: 0; }
.hero-copy h1 {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -.015em;
}
.hero-text {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.8;
}
.hero-actions,
.store-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 16px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: linear-gradient(90deg, var(--purple), var(--violet)); color: #fff; box-shadow: 0 0 40px rgba(181,76,255,.25); }
.button-ghost,
.button-outline { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); color: #fff; }
.button-outline { color: var(--purple); border-color: rgba(181,76,255,.5); }
.button-light { background: #fff; color: #050507; }

.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.proof-grid div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  padding: 16px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
}
.proof-grid strong { display: block; color: #fff; font-size: 16px; }
.proof-grid span { display: block; margin-top: 2px; }

.hero-showcase { min-height: 560px; position: relative; }
.showcase-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.02));
  box-shadow: 0 0 40px rgba(181,76,255,.25);
  overflow: hidden;
  padding: 16px;
}
.showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  opacity: .95;
}
.glass-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(12,12,16,.68);
  backdrop-filter: blur(16px);
  padding: 22px;
}
.glass-card span { color: rgba(255,255,255,.6); font-size: 14px; }
.glass-card strong { display: block; margin-top: 4px; font-size: 26px; font-weight: 950; }
.glass-card p { margin: 8px 0 0; color: rgba(255,255,255,.68); line-height: 1.6; }

.section { padding-block: clamp(54px, 7vw, 82px); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}
.section-head h1,
.section-head h2 {
  margin: 10px 0 0;
  max-width: 820px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -.01em;
}
.section-head p { max-width: 610px; color: rgba(255,255,255,.62); line-height: 1.7; }

.category-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; min-width: 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; min-width: 0; }
.category-card,
.product-card,
.package-grid article {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  padding: 14px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.category-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(181,76,255,.62);
  box-shadow: 0 10px 40px rgba(181,76,255,.18);
}
.category-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
}
.category-card h3 { margin: 16px 0 0; font-size: 20px; font-weight: 950; }
.category-card p { color: rgba(255,255,255,.62); line-height: 1.65; font-size: 14px; }

.feature-band,
.store-band {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding-block: clamp(54px, 7vw, 82px);
}
.product-card { display: flex; flex-direction: column; min-width: 0; min-height: 100%; overflow: hidden; }
.product-card-link {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
}
.product-card img,
.product-image-placeholder {
  width: 100%;
  aspect-ratio: 1.05;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(181,76,255,.25), rgba(255,255,255,.04));
}
.product-card img { object-fit: cover; }
.product-image-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.72);
  text-align: center;
  padding: 22px;
}
.product-image-placeholder strong {
  color: var(--purple);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.product-image-placeholder span {
  font-weight: 950;
}
.detail-placeholder {
  min-height: 420px;
}
.product-card-body { display: flex; flex: 1; flex-direction: column; padding: 12px 4px 4px; }
.product-cat { color: var(--purple); font-size: 11px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.product-card h3 { margin: 10px 0 0; min-height: 52px; font-size: 17px; line-height: 1.22; font-weight: 950; overflow-wrap: anywhere; }
.product-card p { color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.6; overflow-wrap: anywhere; }
.product-price { display: block; margin-top: auto; font-size: 20px; font-weight: 950; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.card-actions .button { min-width: 0; min-height: 44px; padding: 10px 12px; border-radius: 12px; font-size: 12px; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 800;
}
.breadcrumbs a { color: rgba(255,255,255,.76); }
.breadcrumbs a:hover { color: var(--purple); }
.breadcrumbs b { color: rgba(255,255,255,.28); }

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}
.pagination button {
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  color: #fff;
  font-weight: 950;
}
.pagination button.active {
  border-color: rgba(181,76,255,.75);
  background: linear-gradient(90deg, var(--purple), var(--violet));
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}
.search-box,
.category-select {
  min-width: 0;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  color: #fff;
  padding: 0 16px;
  font: inherit;
}
.category-select option { color: #050507; }

.packages {
  border: 1px solid rgba(181,76,255,.22);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(181,76,255,.15), rgba(255,255,255,.03));
  padding: clamp(22px, 4vw, 42px);
}
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.package-grid article { background: rgba(0,0,0,.42); padding: 24px; }
.package-grid article.popular { border-color: rgba(181,76,255,.65); box-shadow: 0 0 40px rgba(181,76,255,.25); }
.package-grid article > span { display: inline-block; border-radius: 999px; background: var(--purple); padding: 5px 10px; font-size: 12px; font-weight: 900; }
.package-grid h3 { font-size: 22px; font-weight: 950; }
.package-grid ul { padding: 0; margin: 18px 0 24px; list-style: none; color: rgba(255,255,255,.72); line-height: 2; }
.package-grid li::before { content: "\2713 "; color: var(--purple); font-weight: 950; }

.seo-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 24px;
  align-items: start;
}

.seo-panel,
.faq-panel {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  padding: 24px;
}

.seo-panel h2,
.seo-panel h3,
.faq-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.seo-panel p,
.faq-panel p {
  color: rgba(255,255,255,.68);
  line-height: 1.75;
}

.keyword-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.keyword-links a {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 9px 13px;
  color: #fff;
  background: rgba(255,255,255,.05);
  font-size: 13px;
}

.seo-facts {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.seo-facts div {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 12px;
}

.seo-facts span {
  display: block;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.seo-facts strong {
  display: block;
  margin-top: 4px;
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(0,0,0,.18);
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: #fff;
}

.faq-list details p {
  margin: 10px 0 0;
  font-size: 15px;
}

.store-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.store-grid h2 { margin: 12px 0 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; font-weight: 950; }
.store-grid p { color: rgba(255,255,255,.66); line-height: 1.8; }
.store-card {
  min-height: 340px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: radial-gradient(circle at 80% 10%, rgba(181,76,255,.24), transparent 32%), rgba(0,0,0,.4);
  padding: clamp(24px, 5vw, 54px);
}
.store-card strong { font-size: clamp(34px, 5vw, 60px); line-height: 1; font-weight: 950; }
.store-card span,
.store-card small { display: block; margin-top: 18px; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.6; }

.product-detail-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 34px; align-items: start; min-width: 0; }
.product-gallery,
.product-info {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--card);
  padding: 16px;
}
.product-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 22px; }
.product-info { padding: clamp(22px, 4vw, 36px); }
.product-info h1 { margin: 10px 0 0; max-width: 100%; font-size: clamp(30px, 3.3vw, 48px); line-height: 1.08; font-weight: 950; overflow-wrap: anywhere; }
.product-info .price { margin-top: 20px; font-size: 30px; font-weight: 950; color: #fff; }
.product-info p { color: rgba(255,255,255,.68); line-height: 1.8; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.meta-list { display: grid; gap: 10px; margin-top: 26px; color: rgba(255,255,255,.65); }
.meta-list div { display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); padding-top: 10px; }

.site-footer {
  border-top: 1px solid rgba(181,76,255,.2);
  background:
    radial-gradient(circle at 18% 0%, rgba(181,76,255,.20), transparent 30%),
    radial-gradient(circle at 90% 35%, rgba(34,197,94,.09), transparent 28%),
    #000;
  padding-block: 46px 74px;
}
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr 1.05fr 1fr; gap: 24px; align-items: start; }
.footer-grid > div { min-width: 0; }
.footer-brand { display: block; width: fit-content; font-size: 26px; font-weight: 950; }
.footer-grid p,
.footer-grid a { display: block; color: rgba(255,255,255,.60); line-height: 1.75; font-size: 14px; }
.footer-grid p { margin: 14px 0 0; }
.footer-grid h3 { margin: 0 0 14px; color: #fff; font-size: 15px; font-weight: 950; }
.footer-grid a:hover { color: var(--purple); }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}
.social-links h3 { margin-bottom: 6px; }
.social-links a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  padding: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.25;
}
.social-links h3,
.social-links .map-link { flex: 0 0 100%; }
.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-links .social-icon:nth-of-type(2) svg,
.social-links .social-icon:nth-of-type(3) svg,
.social-links .social-icon:nth-of-type(4) svg {
  fill: currentColor;
  stroke: none;
}
.social-links .map-link {
  display: block;
  width: auto;
  height: auto;
  margin-top: 6px;
  padding: 10px 12px;
  text-align: left;
}
.social-links a:hover {
  border-color: rgba(181,76,255,.45);
  background: rgba(181,76,255,.10);
}
.footer-logo {
  width: 168px;
  border-radius: 14px;
  background: #fff;
  padding: 8px 11px;
  margin-bottom: 16px;
}
.mobile-whatsapp { display: none; }

@media (max-width: 1020px) {
  .nav-links,
  .nav-whatsapp { display: none; }
  .menu-toggle { display: block; }
  .nav-shell { justify-content: space-between; }
  .menu-toggle { margin-left: auto; }
  .hero-layout,
  .store-grid,
  .product-detail-grid,
  .seo-copy { grid-template-columns: 1fr; }
  .hero-showcase { min-height: 440px; }
  .category-grid,
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container,
  .nav-shell { width: min(calc(100% - 28px), 1280px); }
  .nav-shell { justify-content: space-between; gap: 12px; }
  .brand-logo { width: 128px; padding: 6px 8px; }
  .menu-toggle {
    position: static;
    display: block !important;
    margin-left: auto;
    z-index: 95;
  }
  .brand small { letter-spacing: .18em; }
  .hero-copy h1 { font-size: 38px; line-height: 1.08; }
  .hero-text { font-size: 16px; line-height: 1.75; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-showcase { min-height: 360px; }
  .showcase-frame { padding: 10px; border-radius: 24px; }
  .showcase-frame img { border-radius: 18px; }
  .glass-card { left: 20px; right: 20px; bottom: 20px; border-radius: 18px; padding: 16px; }
  .glass-card strong { font-size: 20px; }
  .section-head,
  .toolbar { display: block; }
  .toolbar > * + * { margin-top: 12px; }
  .search-box,
  .category-select { width: 100%; }
  .category-grid { grid-template-columns: minmax(0, 1fr); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-card { width: 100%; margin-inline: 0; padding: 10px; border-radius: 20px; }
  .product-card img { border-radius: 18px; }
  .product-card-body { padding-inline: 0; }
  .product-card h3 { min-height: 0; font-size: 14px; line-height: 1.25; }
  .product-card p { font-size: 12px; line-height: 1.45; }
  .product-price { font-size: 18px; }
  .card-actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .site-footer { padding-bottom: 92px; }
  .mobile-whatsapp {
    display: block;
    position: fixed;
    z-index: 60;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 18px;
    background: var(--green);
    padding: 15px;
    text-align: center;
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
  }
}
