:root {
  --ink: #fbf4ff;
  --paper: #030106;
  --muted: #c8a9d9;
  --line: rgba(225, 76, 255, 0.44);
  --moon: #f8d4ff;
  --moon-dark: #cc38ff;
  --white: #ffffff;
  --panel: #0c0613;
  --violet: #c300ff;
  --violet-hot: #f04dff;
  --violet-deep: #2b0044;
  --black: #030106;
  --glow: rgba(240, 77, 255, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(195, 0, 255, 0.48), transparent 30rem),
    radial-gradient(circle at 16% 18%, rgba(248, 212, 255, 0.2), transparent 22rem),
    radial-gradient(circle at 48% 96%, rgba(160, 0, 255, 0.38), transparent 34rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(240, 77, 255, 0.86) 0 1px, transparent 1.8px);
  background-position:
    0 0,
    36px 42px;
  background-size:
    128px 128px,
    184px 184px;
  opacity: 0.24;
}

body > * {
  position: relative;
  z-index: 1;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(3, 1, 6, 0.84);
  border-bottom: 1px solid var(--line);
  box-shadow:
    0 0 28px rgba(240, 77, 255, 0.24),
    0 0 70px rgba(124, 0, 255, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(242, 199, 255, 0.82);
  box-shadow:
    0 0 18px rgba(248, 212, 255, 0.86),
    0 0 36px rgba(240, 77, 255, 0.78),
    0 0 64px rgba(124, 0, 255, 0.62);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: #ead8f5;
  font-size: 0.95rem;
  font-weight: 650;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 24% 55%, rgba(3, 1, 6, 0.94) 0%, rgba(3, 1, 6, 0.82) 28%, rgba(3, 1, 6, 0.26) 54%, transparent 72%),
    linear-gradient(90deg, rgba(3, 1, 6, 0.48) 0%, rgba(3, 1, 6, 0.32) 36%, rgba(3, 1, 6, 0.08) 62%, transparent 100%),
    radial-gradient(circle at 16% 34%, rgba(240, 77, 255, 0.18), transparent 19rem),
    url("/static/images/hero-devices.png") center / cover no-repeat;
  min-height: calc(100svh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet-hot), var(--moon), transparent);
  box-shadow:
    0 0 18px rgba(240, 77, 255, 1),
    0 0 48px rgba(195, 0, 255, 0.88),
    0 0 96px rgba(124, 0, 255, 0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) clamp(22px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--moon);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(248, 212, 255, 0.95),
    0 0 26px rgba(240, 77, 255, 0.9),
    0 0 54px rgba(195, 0, 255, 0.68);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero-title {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.75rem, 2.35vw, 2.7rem) !important;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--white);
  text-shadow:
    0 0 3px rgba(248, 212, 255, 0.36),
    0 0 9px rgba(240, 77, 255, 0.34),
    0 0 16px rgba(195, 0, 255, 0.2);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: #e0cbea;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.contact-band {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(242, 199, 255, 0.58);
  border-radius: 8px;
  font-weight: 800;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.button svg,
.whatsapp-pin svg {
  flex: 0 0 auto;
  fill: currentColor;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 199, 255, 0.96);
}

.button.primary {
  color: var(--black);
  background: linear-gradient(135deg, #fdf0ff, #f04dff 42%, #b000ff 100%);
  box-shadow:
    0 0 18px rgba(248, 212, 255, 0.8),
    0 0 34px rgba(240, 77, 255, 0.9),
    0 0 74px rgba(124, 0, 255, 0.68);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 0 22px rgba(240, 77, 255, 0.24),
    0 0 26px rgba(195, 0, 255, 0.16);
}

.hero-image {
  min-height: 520px;
  background: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #08020d, #230033, #08020d);
  color: var(--white);
}

.trust-strip span {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  font-weight: 800;
  border-right: 1px solid rgba(216, 91, 255, 0.22);
  text-shadow:
    0 0 14px rgba(248, 212, 255, 0.72),
    0 0 28px rgba(240, 77, 255, 0.8);
}

.section,
.assurance,
.contact-band {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.assurance-list p {
  color: var(--muted);
  line-height: 1.55;
}

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

.instagram-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(240, 77, 255, 0.22), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(242, 199, 255, 0.12),
    0 0 28px rgba(195, 0, 255, 0.24),
    0 0 58px rgba(124, 0, 255, 0.14);
}

.instagram-card h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.instagram-card .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 560px !important;
  min-height: 0 !important;
  max-height: 560px !important;
  margin: 0 !important;
  background:
    radial-gradient(circle at 50% 16%, rgba(240, 77, 255, 0.5), transparent 9rem),
    linear-gradient(180deg, #240033, #050109);
  border-radius: 8px !important;
  overflow: hidden;
}

.instagram-card iframe {
  width: 100% !important;
  height: 560px !important;
  min-height: 0 !important;
  max-height: 560px !important;
}

.instagram-card .instagram-media a {
  display: flex;
  min-height: 280px;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: var(--moon);
  background: transparent;
  font-weight: 800;
  text-align: center;
}

.assurance {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(242, 199, 255, 0.1),
    inset 0 0 90px rgba(195, 0, 255, 0.22);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.assurance-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.assurance-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(216, 91, 255, 0.22);
  font-size: 1.08rem;
}

.customer-wheel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 16px 0;
  border-radius: 8px;
}

.customer-wheel::before,
.customer-wheel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 82px;
  pointer-events: none;
}

.customer-wheel::before {
  left: 0;
  background: linear-gradient(90deg, var(--panel), transparent);
}

.customer-wheel::after {
  right: 0;
  background: linear-gradient(270deg, var(--panel), transparent);
}

.customer-wheel-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: customer-wheel-spin 64s linear infinite;
  will-change: transform;
}

.customer-wheel:hover .customer-wheel-track {
  animation-play-state: paused;
}

.customer-wheel img {
  display: block;
  width: clamp(150px, 16vw, 220px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(242, 199, 255, 0.36);
  border-radius: 8px;
  box-shadow:
    0 0 18px rgba(195, 0, 255, 0.2),
    0 0 42px rgba(124, 0, 255, 0.12);
}

.customer-wheel img:nth-child(2n) {
  transform: translateY(18px);
}

@keyframes customer-wheel-spin {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 6px));
  }
}

.contact-band {
  justify-content: space-between;
  background:
    radial-gradient(circle at 82% 50%, rgba(240, 77, 255, 0.46), transparent 20rem),
    linear-gradient(135deg, #050109, #260033);
  color: var(--white);
}

.contact-band .eyebrow {
  color: var(--moon);
}

.contact-number {
  margin: 18px 0 0;
  color: var(--moon);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 850;
  text-shadow:
    0 0 14px rgba(248, 212, 255, 0.72),
    0 0 30px rgba(240, 77, 255, 0.76);
}

.contact-band .button.primary {
  color: var(--black);
  background: linear-gradient(135deg, #fdf0ff, #f04dff 42%, #b000ff 100%);
  border-color: var(--moon);
}

.whatsapp-pin {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow:
    0 8px 24px rgba(3, 1, 6, 0.32),
    0 0 22px rgba(37, 211, 102, 0.58);
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .hero,
  .assurance {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background-position:
      center,
      center,
      center,
      60% center;
  }

  .hero-image {
    display: none;
  }

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

  .instagram-card .instagram-media,
  .instagram-card iframe {
    height: 520px !important;
    max-height: 520px !important;
  }

  .customer-wheel img {
    width: clamp(142px, 24vw, 190px);
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    font-size: 0.88rem;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(1.8rem, 8vw, 2.7rem) !important;
    line-height: 1.08;
  }

  .instagram-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-image {
    display: none;
  }

  .instagram-card .instagram-media,
  .instagram-card iframe {
    height: 430px !important;
    max-height: 430px !important;
  }

  .customer-wheel {
    margin-inline: -20px;
    border-radius: 0;
  }

  .customer-wheel::before,
  .customer-wheel::after {
    width: 34px;
  }

  .customer-wheel img {
    width: 148px;
  }

  .whatsapp-pin {
    right: 14px;
    bottom: 14px;
  }
}

@media (min-width: 1500px) {
  h1 {
    font-size: 7.75rem;
  }

  .hero-copy {
    max-width: 700px;
  }
}
