:root {
  --bg-black: #03020a;
  --purple: #7c3cff;
  --pink: #ff3d8b;
  --blue: #0ea5e9;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: white;
  font-family: Arial, sans-serif;
  font-weight: 600;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(135deg, var(--bg-black) 0%, #050816 55%, #070014 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
}

body::before {
  left: -20vmin;
  top: -30vmin;
  background: radial-gradient(circle at 30% 30%, var(--purple) 0%, rgba(124, 58, 237, 0.6) 25%, transparent 45%);
  animation: floatA 18s ease-in-out infinite alternate;
}

body::after {
  right: -20vmin;
  bottom: -20vmin;
  background: radial-gradient(circle at 60% 60%, var(--pink) 0%, var(--blue) 30%, transparent 55%);
  animation: floatB 22s ease-in-out infinite alternate;
}

@keyframes floatA {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(-6vh) scale(1.05);
  }
}

@keyframes floatB {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(-8vh) scale(1.07);
  }
}

.page-shell {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 6%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: linear-gradient(180deg, rgba(3, 2, 10, 0.78), rgba(3, 2, 10, 0.58));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: white;
}

.brand-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  object-fit: contain;
  display: block;
}

.brand-name {
  display: block;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 3px;
  line-height: 1;
}

.brand-tag {
  display: block;
  font-size: 12px;
  color: #d7d2ff;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: white;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: #d1d1ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
  letter-spacing: 1px;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: white;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section {
  padding: 60px 6%;
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(3, 2, 10, 0.4) 0%, rgba(5, 8, 22, 0.35) 55%, rgba(7, 0, 20, 0.4) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.2;
  margin: 16px 0 24px;
  font-weight: 900;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--pink);
  font-weight: 600;
  margin: 0;
}

.hero-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: #d4d4d8;
  margin: 0 0 24px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.mockup-placeholder {
  width: 100%;
  min-height: 360px;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.28), transparent 70%);
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: min(520px, 95%);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 84px rgba(255, 61, 139, 1))
    drop-shadow(0 0 108px rgba(14, 165, 233, 0.84));
}

.hero-star-background {
  position: absolute;
  z-index: 1;
  opacity: 0.7;
}

.hero-mockup-image {
  position: absolute;
  z-index: 2;
  width: min(7000px, 95%);
  height: auto;
  object-fit: contain;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--pink);
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0;
  font-weight: 900;
}

.glow-pink {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 48px rgba(255, 61, 139, 0.9),
               0 0 24px rgba(124, 58, 237, 0.8);
}

.services-overview,
.products-section,
.gallery-section,
.process-section,
.about-section {
  padding: 80px 6%;
}

.services-grid,
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card,
.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-card:hover,
.product-card:hover {
  background: rgba(124, 58, 237, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.service-card h3,
.product-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 12px;
}

.service-card p,
.product-card p {
  font-size: 13px;
  color: #bbb7ff;
  margin: 0;
  line-height: 1.6;
  font-weight: 600;
}

.product-image {
  min-height: 220px;
  margin-bottom: 18px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.product-gift {
  background-image:
    linear-gradient(180deg, rgba(124, 58, 237, 0.2), rgba(35, 16, 66, 0.8)),
    url("../images/gift.png");
}

.product-apparel {
  background-image:
    linear-gradient(180deg, rgba(74, 58, 255, 0.15), rgba(35, 16, 66, 0.85)),
    url("../images/shirt.png");
}

.product-mugs {
  background-image:
    linear-gradient(180deg, rgba(124, 58, 237, 0.2), rgba(35, 16, 66, 0.8)),
    url("../images/mug.jpg");
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.gallery-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 50%;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 12px 0;
}

.process-step p {
  font-size: 13px;
  color: #bbb7ff;
  margin: 0;
  line-height: 1.6;
}

.cta-banner {
  background: linear-gradient(90deg, rgba(255, 61, 139, 0.15), rgba(124, 58, 237, 0.12));
  border: 1px solid rgba(255, 61, 139, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 36px;
  margin: 40px 6%;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 8px;
  font-weight: 900;
}

.cta-banner p {
  margin: 0;
  color: #d4d4d8;
  font-size: 14px;
}

.about-section {
  text-align: center;
}

.about-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #d4d4d8;
  max-width: 800px;
  margin: 0 auto 18px;
}

.site-footer {
  margin-top: 40px;
  padding: 48px 6% 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) repeat(3, minmax(180px, 1fr));
  gap: 24px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-desc {
  max-width: 320px;
  color: #bbb7ff;
  line-height: 1.8;
  margin: 0;
  font-size: 13px;
}

.footer-links,
.footer-contact,
.footer-follow {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact p {
  color: #c9c8ff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  margin: 0;
  line-height: 1.8;
}

.footer-links h4,
.footer-contact h4,
.footer-follow h4 {
  color: #f4f0ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  margin-top: 0;
}

.social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.social-links a svg {
  width: 22px;
  height: 22px;
  display: block;
  color: white;
}

.social-links a.facebook {
  background: radial-gradient(circle at 30% 30%, #5a84ff 0%, #2145c6 100%);
}

.social-links a.instagram {
  background: radial-gradient(circle at 35% 20%, #ffdc76 0%, #f37055 35%, #b934c5 70%, #4c2ea9 100%);
}

.social-links a.tiktok {
  background: linear-gradient(135deg, #000000 0%, #0f0f0f 100%);
}

.social-links a.whatsapp {
  background: radial-gradient(circle at 30% 30%, #9dffb0 0%, #25d366 100%);
}

@media (max-width: 1140px) {
  .hero-content,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 12px 20px;
    gap: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .header-order-button {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 20px;
    width: min(280px, calc(100% - 40px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(6, 7, 17, 0.96);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .section {
    padding: 40px 20px;
  }

  .services-overview,
  .products-section,
  .gallery-section,
  .process-section,
  .about-section {
    padding: 60px 20px;
  }

  .cta-banner {
    margin: 40px 20px;
    flex-direction: column;
    text-align: center;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 40px 20px;
  }

  .hero-content {
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 1.5rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .hero-media {
    min-height: 260px;
  }

  .mockup-placeholder {
    min-height: 260px;
  }

  .hero-mockup-image {
    width: min(5250px, 95%);
  }
}