:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-2: #0b0c0f;
  --panel: rgba(20, 21, 24, 0.76);
  --panel-solid: #111216;
  --line: rgba(255, 204, 41, 0.18);
  --gold: #ffcc29;
  --gold-2: #f4a900;
  --cyan: #44d7ff;
  --text: #f7f7f2;
  --muted: #b5b5aa;
  --soft: #797b7f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 204, 41, 0.06), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(68, 215, 255, 0.12), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.section-pad {
  padding: 104px max(22px, calc((100vw - 1180px) / 2));
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(7, 8, 10, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.topbar.is-scrolled {
  border-color: rgba(255, 204, 41, 0.24);
  background: rgba(7, 8, 10, 0.9);
}

.brand-link,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-link strong,
.footer-brand strong {
  display: block;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-link small,
.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(255, 191, 0, 0.28));
}

.brand-logo.small {
  width: 58px;
  height: 58px;
  border-radius: 6px;
}

.brand-logo.large {
  position: relative;
  z-index: 2;
  width: min(500px, 84vw);
  max-height: 500px;
}

.desktop-nav {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.desktop-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease;
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.34);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta {
  padding: 0 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 14px 30px rgba(255, 204, 41, 0.22);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 204, 41, 0.5),
    0 0 24px rgba(255, 204, 41, 0.42),
    0 16px 36px rgba(255, 204, 41, 0.22);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 150px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.78), rgba(5, 5, 6, 0.34)),
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(255, 204, 41, 0.05) 14px 15px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.8fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Rajdhani, Inter, sans-serif;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.8rem);
  line-height: 0.95;
}

h3 {
  font-size: 1.18rem;
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.btn {
  padding: 0 20px;
  border: 1px solid transparent;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 18px 38px rgba(255, 204, 41, 0.23);
}

.btn-outline {
  border-color: rgba(255, 204, 41, 0.52);
  color: #ffffff;
  background: rgba(255, 204, 41, 0.06);
}

.btn-ghost,
.btn-dark {
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
}

.btn-dark {
  background: #090a0c;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
}

.hero-proof span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.9rem;
}

.hero-identity {
  display: grid;
  justify-items: center;
}

.logo-stage {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 24px;
  width: 100%;
  padding: 40px 20px;
}

.media-stage {
  min-height: 620px;
  align-content: end;
  padding: 34px;
  border: 1px solid rgba(255, 204, 41, 0.22);
  border-radius: var(--radius);
  background: #060607;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  inset: 6% 0 auto;
  height: 68%;
  border: 1px solid var(--line);
  border-radius: 8px;
  transform: skewY(-3deg);
}

.logo-stage::after {
  inset: auto 12% 0;
  height: 32%;
  border-color: rgba(68, 215, 255, 0.2);
  transform: skewY(4deg);
}

.brand-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(1.18) contrast(1.08);
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.32), rgba(5, 5, 6, 0.82)),
    radial-gradient(circle at 50% 42%, rgba(255, 204, 41, 0.2), transparent 45%);
}

.logo-caption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  text-align: center;
  text-transform: uppercase;
}

.logo-caption span {
  color: var(--muted);
  font-size: 0.85rem;
}

.logo-caption strong {
  color: var(--gold);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.65rem;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.contact-panel p,
.cred-panel p,
.product-tile p,
.trust-card p {
  color: var(--muted);
}

.product-row,
.product-tile,
.trust-card,
.cred-panel,
.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: var(--shadow);
}

.product-showcases {
  display: grid;
  gap: 22px;
}

.product-row {
  padding: clamp(16px, 2vw, 22px);
  overflow: hidden;
}

.row-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.row-heading h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.row-controls {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 204, 41, 0.35);
  border-radius: 6px;
  background: rgba(255, 204, 41, 0.08);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.carousel-btn:hover {
  border-color: rgba(255, 204, 41, 0.7);
  background: rgba(255, 204, 41, 0.16);
  box-shadow:
    0 0 0 1px rgba(255, 204, 41, 0.36),
    0 0 22px rgba(255, 204, 41, 0.38);
  transform: translateY(-2px);
}

.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 280px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  padding: 2px 2px 14px;
  scrollbar-color: rgba(255, 204, 41, 0.65) rgba(255, 255, 255, 0.06);
}

.product-track::-webkit-scrollbar {
  height: 8px;
}

.product-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.product-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 999px;
}

.product-tile {
  scroll-snap-align: start;
  min-height: 320px;
  padding: 12px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.product-tile:hover,
.trust-card:hover {
  border-color: rgba(255, 204, 41, 0.42);
  transform: translateY(-5px);
}

.product-tile.highlight {
  background:
    linear-gradient(135deg, rgba(255, 204, 41, 0.15), rgba(68, 215, 255, 0.07)),
    var(--panel-solid);
}

.product-photo {
  position: relative;
  display: block;
  height: 190px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #07080a;
  background-size: 32px 32px, cover;
  overflow: hidden;
}

.product-photo.has-image {
  background: #f7f7f2;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-photo.has-image:hover {
  border-color: rgba(255, 204, 41, 0.72);
  box-shadow: 0 18px 36px rgba(255, 204, 41, 0.16);
  transform: translateY(-2px);
}

.product-photo.has-image::before,
.product-photo.has-image::after {
  display: none;
}

.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-photo::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 204, 41, 0.55);
  clip-path: polygon(0 18%, 82% 18%, 100% 50%, 82% 82%, 0 82%, 12% 50%);
}

.product-photo::after {
  content: "";
  position: absolute;
  inset: auto 24px 28px;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 24px rgba(255, 204, 41, 0.45);
}

.product-tile h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.25;
}

.product-tile p {
  margin: 0 0 12px;
  font-size: 0.9rem;
}

.product-price {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 6px;
  color: #090909;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 1.02rem;
  font-weight: 900;
}

.keyboard {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%);
}

.components {
  background-image: radial-gradient(circle, rgba(68, 215, 255, 0.18) 1px, transparent 1px);
}

.electronics {
  background-image: linear-gradient(90deg, rgba(255, 204, 41, 0.1) 1px, transparent 1px);
}

.imported {
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 12px);
}

.sellers {
  background-image:
    radial-gradient(circle at 28% 36%, rgba(255, 204, 41, 0.26), transparent 26%),
    linear-gradient(135deg, rgba(68, 215, 255, 0.12), transparent);
}

.product-tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: #090909;
  background: var(--gold);
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 204, 41, 0.04));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.trust-card {
  min-height: 238px;
  padding: 20px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 204, 41, 0.48);
  border-radius: 6px;
  color: var(--gold);
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
}

.cred-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: end;
  padding: clamp(26px, 4vw, 52px);
  background:
    linear-gradient(120deg, rgba(255, 204, 41, 0.14), rgba(255, 255, 255, 0.03) 45%, rgba(68, 215, 255, 0.08)),
    #0b0c0f;
}

.cred-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cred-stats span {
  display: grid;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--muted);
}

.cred-stats strong {
  color: var(--gold);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 2.1rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.whatsapp-float:hover {
  border-color: rgba(255, 204, 41, 0.85);
  box-shadow:
    0 0 0 1px rgba(255, 204, 41, 0.5),
    0 0 24px rgba(255, 204, 41, 0.48),
    0 18px 40px rgba(37, 211, 102, 0.22);
  transform: translateY(-3px) scale(1.03);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px max(22px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050506;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--gold);
}

.copyright {
  color: var(--soft);
  font-size: 0.85rem;
}

.product-detail {
  padding-top: 150px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 800;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.detail-gallery,
.detail-info,
.spec-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: var(--shadow);
}

.detail-gallery,
.detail-info,
.spec-panel {
  padding: clamp(18px, 3vw, 28px);
}

.main-product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.82;
  border: 1px solid rgba(255, 204, 41, 0.2);
  border-radius: 6px;
  background: #f7f7f2;
  overflow: hidden;
}

.main-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 92px;
  gap: 10px;
  overflow-x: auto;
  padding-top: 14px;
}

.thumb-button {
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #f7f7f2;
  cursor: pointer;
  overflow: hidden;
}

.thumb-button.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(255, 204, 41, 0.18);
}

.thumb-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-info h1 {
  font-size: clamp(2.15rem, 4vw, 4.5rem);
}

.detail-summary {
  color: var(--muted);
  font-size: 1.04rem;
}

.detail-price {
  display: inline-flex;
  margin: 18px 0 20px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #090909;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 1.35rem;
  font-weight: 900;
}

.detail-quote {
  width: 100%;
}

.detail-trust {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  color: var(--muted);
}

.detail-trust span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.spec-panel {
  margin-top: 28px;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.spec-list li {
  padding: 14px 14px 14px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--muted);
  position: relative;
}

.spec-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 204, 41, 0.58);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .cred-panel,
  .contact-panel,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-identity {
    order: -1;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 82px 18px;
  }

  .topbar {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand-link small,
  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 118px;
  }

  .media-stage {
    min-height: 460px;
    padding: 18px;
  }

  .brand-logo.large {
    width: min(390px, 88vw);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .cta-row,
  .hero-proof {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .cred-stats {
    grid-template-columns: 1fr;
  }

  .row-heading {
    align-items: flex-start;
  }

  .product-track {
    grid-auto-columns: minmax(210px, 78vw);
  }

  .footer {
    display: grid;
  }

  .product-detail {
    padding-top: 118px;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
