:root {
  --pink:      #F85F8E;
  --coral:     #FF8A7A;
  --peach:     #FFD3C3;
  --cream:     #FFF3EE;
  --soft-pink: #FFE4EC;
  --dark:      #09070A;
  --dark-bord: #3A101F;
  --text:      #FFF8F5;
  --text-dim:  #B8A0A8;
  --gradient:  linear-gradient(135deg, #F85F8E 0%, #FF8A7A 55%, #FFD3C3 100%);
  --shadow:    rgba(120, 40, 60, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  overflow-x: hidden;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9, 7, 10, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(248, 95, 142, 0.12);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4em;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: #fff;
  line-height: 1;
}

.logo span {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.logo span.lab {
  background: var(--gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88em;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.2s;
}

.nav a:hover { color: var(--text); background: rgba(248, 95, 142, 0.08); }

/* === DROPDOWN NAV === */
.nav-item {
  position: relative;
}

.nav-dropdown-btn {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88em;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-btn:hover { color: var(--text); background: rgba(248, 95, 142, 0.08); }

.nav-dropdown-btn .arrow {
  transition: transform 0.2s;
  font-size: 0.7em;
}

.nav-dropdown-btn.open .arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(15, 10, 18, 0.98);
  border: 1px solid rgba(248, 95, 142, 0.2);
  border-radius: 16px;
  padding: 12px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 200;
}

.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.15s;
}

.nav-dropdown-item:hover {
  background: rgba(248, 95, 142, 0.1);
}

.nav-dropdown-item .item-info {
  flex: 1;
}

.nav-dropdown-item .item-name {
  font-weight: 700;
  font-size: 0.95em;
  margin-bottom: 2px;
}

.nav-dropdown-item .item-desc {
  font-size: 0.78em;
  color: var(--text-dim);
  line-height: 1.4;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(248, 95, 142, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(255, 138, 122, 0.07) 0%, transparent 50%),
    var(--dark);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(248, 95, 142, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-tagline {
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 36px;
}

.hero-logo {
  font-size: 5.5em;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 16px;
  color: #fff;
}

.hero-logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 {
  font-size: clamp(2em, 5vw, 3.4em);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero > .hero-content > p:last-of-type {
  font-size: 1.1em;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 0;
}

/* === PRODUCT CAROUSEL === */
.products-carousel {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 60px auto 0;
  overflow: hidden;
}

.products-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card {
  min-width: 100%;
  background: rgba(255, 243, 238, 0.04);
  border: 1px solid rgba(248, 95, 142, 0.15);
  border-radius: 28px;
  padding: 44px 48px;
  text-align: left;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(248, 95, 142, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover::before { opacity: 1; }

.product-card:hover {
  border-color: rgba(248, 95, 142, 0.4);
  box-shadow: 0 20px 60px rgba(248, 95, 142, 0.1);
}

.product-label {
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.product-name {
  font-size: 1.8em;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.1;
}

.product-name span,
.logo-part {
  color: #fff;
}

.logo-part .lab {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



.product-card p {
  color: var(--text-dim);
  font-size: 0.95em;
  line-height: 1.7;
  margin: 0 0 auto;
  flex: 1;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.88em;
  font-weight: 700;
  color: var(--pink);
  transition: gap 0.2s;
}

.product-card:hover .product-link { gap: 14px; }

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(248, 95, 142, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--pink);
  transform: scale(1.3);
}

.carousel-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 243, 238, 0.06);
  border: 1px solid rgba(248, 95, 142, 0.2);
  color: var(--text-dim);
  font-size: 1.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.carousel-nav-btn:hover {
  background: rgba(248, 95, 142, 0.15);
  border-color: rgba(248, 95, 142, 0.5);
  color: var(--text);
}

.carousel-nav-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

/* === PRODUCT PAGE SHARED === */
.product-page {
  padding-top: 100px;
}

.product-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88em;
  font-weight: 600;
  margin-bottom: 40px;
  transition: color 0.2s;
}

.product-page .back-link:hover { color: var(--pink); }

.product-page .section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}

.product-page .section-label {
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text);
  margin-bottom: 16px;
}

.product-page .section-label .logo-part {
  color: #fff;
}

.product-page .section-label .logo-part .lab {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-page .product-hero-text h2 {
  font-size: clamp(1.6em, 4vw, 2.4em);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}

.product-page .section-desc {
  color: var(--text-dim);
  font-size: 1.05em;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 50px;
}

.product-page .product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-page .product-hero-text p {
  color: var(--text-dim);
  font-size: 1.02em;
  line-height: 1.75;
  margin-bottom: 32px;
}

.product-page .btn-primary {
  display: inline-block;
  background: var(--gradient);
  color: var(--text);
  text-decoration: none;
  padding: 16px 42px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95em;
  box-shadow: 0 8px 32px rgba(248, 95, 142, 0.35);
  transition: all 0.3s ease;
}

.product-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(248, 95, 142, 0.5);
}

.product-page .product-preview {
  background: rgba(255, 243, 238, 0.03);
  border: 1px solid rgba(248, 95, 142, 0.12);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.product-page .product-preview-text {
  font-size: clamp(1.2em, 2.5vw, 1.8em);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  line-height: 1.1;
  text-align: center;
  word-break: break-word;
}

.product-page .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.product-page .feature-card {
  background: rgba(255, 243, 238, 0.03);
  border: 1px solid rgba(248, 95, 142, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  transition: all 0.25s;
}

.product-page .feature-card:hover {
  border-color: rgba(248, 95, 142, 0.3);
  background: rgba(248, 95, 142, 0.04);
}

.product-page .feature-card h4 {
  font-size: 0.8em;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.product-page .feature-card p {
  color: var(--text-dim);
  font-size: 0.75em;
  line-height: 1.4;
  margin: 0;
}

.product-page .divider {
  max-width: 1100px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 95, 142, 0.2), transparent);
}

/* === FOOTER === */
.footer {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-dim);
  font-size: 0.85em;
  border-top: 1px solid rgba(248, 95, 142, 0.08);
}

.footer .logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer a:not(.logo) { color: var(--pink); text-decoration: none; }

@media (max-width: 768px) {
  .product-page .product-hero { grid-template-columns: 1fr; }
  .product-page .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-logo { font-size: 3.5em; }
  .nav a { padding: 6px 10px; font-size: 0.82em; }
  .product-page .product-hero-text h2 { font-size: 1.8em; }
  .product-page .section { padding: 40px 20px; }
}

@media (max-width: 520px) {
  .product-card { padding: 32px 28px; }
  .product-name { font-size: 1.5em; }
}

@media (max-width: 480px) {
  .product-page .features-grid { grid-template-columns: 1fr; }
}

/* === SCREENSHOT CAROUSEL === */
.screenshot-carousel {
  margin-top: 20px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(248, 95, 142, 0.1);
}

.screenshot-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  touch-action: pan;
}

.screenshot-slide {
  min-width: 100%;
  aspect-ratio: 16 / 10;
}

.screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.screenshot-carousel .carousel-controls {
  margin-top: 0;
  padding: 10px 12px;
  background: rgba(9, 7, 10, 0.6);
  border-top: 1px solid rgba(248, 95, 142, 0.08);
  justify-content: space-between;
}

.screenshot-carousel .carousel-dots {
  gap: 6px;
}

.screenshot-carousel .carousel-dot {
  width: 6px;
  height: 6px;
}

.screenshot-carousel .carousel-dot.active {
  transform: scale(1.4);
}

/* === ZOOM MODAL === */
.zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(9, 7, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.zoom-modal.open {
  opacity: 1;
  visibility: visible;
}

.zoom-modal-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s;
}

.zoom-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 243, 238, 0.08);
  border: 1px solid rgba(248, 95, 142, 0.25);
  color: var(--text);
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.zoom-modal-close:hover {
  background: rgba(248, 95, 142, 0.2);
  border-color: rgba(248, 95, 142, 0.5);
}

.zoom-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 243, 238, 0.07);
  border: 1px solid rgba(248, 95, 142, 0.2);
  color: var(--text);
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.zoom-modal-nav:hover {
  background: rgba(248, 95, 142, 0.2);
  border-color: rgba(248, 95, 142, 0.5);
}

.zoom-modal-prev { left: 20px; }
.zoom-modal-next { right: 20px; }

.zoom-modal-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8em;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(9, 7, 10, 0.7);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(248, 95, 142, 0.12);
  pointer-events: none;
}

@media (max-width: 520px) {
  .screenshot-carousel { border-radius: 12px; }
  .zoom-modal-nav { width: 36px; height: 36px; font-size: 1em; }
  .zoom-modal-prev { left: 10px; }
  .zoom-modal-next { right: 10px; }
}