﻿:root {
  --bg: #141215;
  --ink: #f6f2f0;
  --muted: #b7aeb2;
  --accent: #e63a65;
  --accent-dark: #c52c55;
  --paper: #1d1a1f;
  --line: rgba(255,255,255,0.1);
  --shadow: 0 24px 40px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

.hero { padding: 28px 7vw 64px; }

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.logo {
  font-family: "League Spartan", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.logo-img {
  width: 200px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--muted);
}

h1 {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.05;
  margin: 12px 0 16px;
}

.accent { color: var(--accent); display: block; }

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin: 22px 0 16px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--accent);
  box-shadow: 0 10px 18px rgba(230,58,101,0.3);
  transition: transform 0.15s ease, background 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); background: var(--accent-dark); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  box-shadow: none;
}

.meta {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 360px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 45% 55% 55% 45% / 45% 45% 55% 55%;
  background: var(--accent);
  filter: blur(0);
  opacity: 0.6;
  z-index: 1;
}

.badge {
  position: absolute;
  bottom: 12px;
  right: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--accent);
  z-index: 3;
}

.section { padding: 56px 7vw; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title h2 {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 8px;
}

.section-title p { color: var(--muted); margin: 0 0 24px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 18px;
}

.band {
  background: #1a161b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brands .section-title {
  text-align: center;
}

.logo-marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #1d1a20;
  padding: 14px 0;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 20s linear infinite;
  padding: 0 16px;
}

.logo-pill {
  background: #221f25;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.demo-carousel {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 12px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.demo-slide {
  background: #1f1b22;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  min-width: min(900px, 100%);
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.demo-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #151216;
  display: block;
}

.demo-body {
  padding: 18px 18px 22px;
}

.demo-body ul {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
}

.demo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
}

.step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step h4 {
  margin: 0 0 6px;
}

.step p {
  margin: 0;
  color: var(--muted);
}


.info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info div {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 12px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-btn {
  width: 100%;
}

.cta {
  background: linear-gradient(120deg, rgba(230,58,101,0.08), rgba(20,18,21,0.6));
}

.cta-box {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 34px;
  border-radius: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--muted);
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.footer {
  padding: 28px 7vw 48px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .service-grid, .info, .steps { grid-template-columns: 1fr 1fr; }
  .hero-media { min-height: 0; aspect-ratio: 16 / 9; }
  .demo-carousel { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
  .demo-slide { min-width: 100%; grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .service-grid, .info, .steps { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 12px; }
  .nav { grid-template-columns: 1fr; text-align: center; }
  .nav-links { justify-content: center; flex-wrap: wrap; }
  .blob { width: 320px; height: 320px; }
  .hero-media { aspect-ratio: 9 / 16; }
  .hero-media img {
    object-fit: contain;
    object-position: center;
    background: #121015;
  }
}

@media (max-width: 360px) {
  .btn {
    width: 100%;
    white-space: normal;
    line-height: 1.2;
    padding: 12px 16px;
  }
  .hero-cta, .nav { gap: 12px; }
  .blob { width: 260px; height: 260px; }
  .badge {
    right: 10px;
    bottom: 10px;
    font-size: 0.85rem;
    padding: 6px 10px;
  }
}
