:root {
  --bg: #080c16;
  --bg-soft: #10172a;
  --surface: rgba(16, 23, 42, 0.8);
  --surface-strong: #121a2f;
  --text: #eef3ff;
  --muted: #aeb8d2;
  --primary: #0d6efd;
  --primary-strong: #0056d6;
  --accent: #29d7b5;
  --danger: #ff6b6b;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 0%, #1c2b54 0%, var(--bg) 48%) no-repeat fixed;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(8, 12, 22, 0.72);
  border-bottom: 1px solid var(--border);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.brand-logo {
  width: 38px;
  height: 38px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.35rem 0.6rem;
  font-size: 1.1rem;
}

.site-nav {
  margin-left: 1rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 160ms ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav li:nth-child(1) a::before { content: "🖼️"; }
.site-nav li:nth-child(2) a::before { content: "💶"; }
.site-nav li:nth-child(3) a::before { content: "📱"; }
.site-nav li:nth-child(4) a::before { content: "🛒"; }
.site-nav li:nth-child(5) a::before { content: "❓"; }
.site-nav li:nth-child(6) a::before { content: "📰"; }
.site-nav li:nth-child(7) a::before { content: "🏢"; }
.site-nav li:nth-child(8) a::before { content: "✉️"; }

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.language-select {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-height: 40px;
  padding: 0 0.65rem;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1f8cff);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-accent {
  background: linear-gradient(135deg, #00af91, var(--accent));
  color: #03231d;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 132px;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(41, 215, 181, 0.16), transparent 36%),
    radial-gradient(circle at 50% 90%, rgba(13, 110, 253, 0.12), transparent 40%);
  filter: blur(28px) saturate(1.1);
}

.light-orb {
  position: absolute;
  width: 34vmax;
  height: 34vmax;
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: 0.24;
  filter: blur(36px);
  animation: drift 24s ease-in-out infinite alternate;
}

.light-orb.one {
  top: -18vmax;
  left: -8vmax;
  background: radial-gradient(circle, rgba(71, 154, 255, 0.75), transparent 66%);
}

.light-orb.two {
  bottom: -18vmax;
  right: -10vmax;
  background: radial-gradient(circle, rgba(66, 236, 199, 0.72), transparent 66%);
  animation-duration: 30s;
}

.cursor-glow {
  position: absolute;
  width: 42vmax;
  height: 42vmax;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(112, 170, 255, 0.11) 32%, transparent 66%);
  opacity: 0.14;
  filter: blur(18px);
}

.smoke-wrap {
  position: absolute;
  inset: 0;
}

.smoke {
  position: absolute;
  width: 28vmax;
  height: 18vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 188, 255, 0.2), transparent 70%);
  filter: blur(22px);
  opacity: 0.22;
  animation: smokeFloat 16s ease-in-out infinite;
}

.smoke.s1 {
  left: 8%;
  bottom: 8%;
}

.smoke.s2 {
  left: 42%;
  top: 18%;
  animation-delay: -4s;
}

.smoke.s3 {
  right: 10%;
  bottom: 22%;
  animation-delay: -9s;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(56, 132, 255, 0.4), rgba(6, 10, 20, 0.95) 55%);
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 280ms ease, transform 280ms ease;
}

.page-transition.active {
  opacity: 1;
  transform: scale(1);
}

.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 840px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10% 0 0 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.08);
  transform: translateY(0);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 18, 0.45), rgba(5, 7, 16, 0.84));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0;
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  max-width: 12ch;
  margin-top: 0.9rem;
}

.hero p {
  font-size: clamp(1rem, 2.3vw, 1.3rem);
  max-width: 44ch;
  color: #d9e4ff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.section {
  padding: clamp(3rem, 5vw, 5.8rem) 0;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section p.lead {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.card {
  background: linear-gradient(180deg, rgba(17, 24, 41, 0.88), rgba(11, 17, 30, 0.92));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--muted);
}

.media-frame {
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
}

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

.app-slideshow {
  aspect-ratio: 1600 / 1167;
  width: 100%;
}

.app-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-slide-btn {
  min-width: 132px;
  min-height: 52px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--primary), #1f8cff);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
}

.app-slide-controls {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.h-gallery {
  position: relative;
  height: 235vh;
}

.h-gallery-sticky {
  position: sticky;
  top: 92px;
  height: calc(100vh - 104px);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(9, 14, 26, 0.72);
  display: block;
}

.h-gallery-rows {
  height: 100%;
  width: 100%;
  display: grid;
  gap: 40px;
  grid-template-rows: repeat(4, 1fr);
  align-content: stretch;
  padding: 8px 0;
}

.h-gallery-track {
  display: flex;
  gap: 1rem;
  height: 100%;
  align-items: center;
  padding: 0 8vw;
  transform: translateX(0);
  will-change: transform;
}

.h-gallery-item {
  flex: 0 0 clamp(170px, 22vw, 320px);
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.h-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-card .price {
  font-size: 2.2rem;
  font-family: "Cormorant Garamond", serif;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card .list {
  margin-bottom: 0;
}

.pricing-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.pricing-meta {
  color: #84f2d8;
  font-size: 0.9rem;
  margin: 0.2rem 0 0.8rem;
  font-weight: 700;
}

.sold-out {
  display: inline-flex;
  margin: 0.45rem 0 0.35rem;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 72, 72, 0.15);
  border: 1px solid rgba(255, 72, 72, 0.45);
  color: #ff5f5f;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.list {
  padding-left: 1.1rem;
  color: var(--muted);
}

.list li {
  margin: 0.35rem 0;
}

.gesture-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.gesture-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(233, 241, 255, 0.92);
  line-height: 1.45;
}

.gesture-icon {
  width: 1.6rem;
  flex: 0 0 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
}

.lottie-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 1px solid rgba(121, 140, 185, 0.35);
  background: #2a1146 !important;
  overflow: hidden;
}

.lottie-square svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
}

.align-bottom-cols {
  align-items: stretch;
}

.align-bottom-cols > * {
  height: 100%;
}

.column-bottom {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.column-bottom .media-frame {
  margin-top: auto !important;
}

.fill-height {
  height: 100%;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  color: #dce5fa;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0d1528;
  color: var(--text);
  padding: 0.72rem 0.82rem;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-full {
  grid-column: 1 / -1;
}

.feedback {
  margin-top: 0.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  display: none;
}

.feedback.ok {
  display: block;
  background: rgba(41, 215, 181, 0.16);
  border: 1px solid rgba(41, 215, 181, 0.48);
  color: #7ef2d7;
}

.feedback.error {
  display: block;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.45);
  color: #ffbab9;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  color: var(--muted);
}

.faq h3 {
  margin-top: 2rem;
  margin-bottom: 2rem !important;
}

.faq h3 + details {
  margin-top: 0.35rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(7, 10, 19, 0.9);
  padding: 2rem 0;
}

.section-gallery {
  padding-top: clamp(1rem, 1.6vw, 1.6rem);
  padding-bottom: 0;
}

.section-pre-gallery {
  padding-bottom: clamp(1.5rem, 2.5vw, 2.9rem);
}

.section-post-gallery {
  padding-top: clamp(1.5rem, 2.5vw, 2.9rem);
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.3fr 1fr;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(1.6vmax, 2.6vmax) scale(1.12);
  }
}

@keyframes smokeFloat {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.16;
  }
  50% {
    transform: translateY(-2.6vmax) translateX(1.4vmax) scale(1.1);
    opacity: 0.28;
  }
  100% {
    transform: translateY(1.5vmax) translateX(-1vmax) scale(0.95);
    opacity: 0.15;
  }
}

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

  .site-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: rgba(6, 10, 18, 0.96);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 180ms ease;
    padding: 1rem 4vw;
    margin-left: 0;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    margin-left: 0;
    gap: 0.5rem;
  }

  .btn-accent {
    padding: 0.62rem 0.88rem;
    font-size: 0.95rem;
  }

  .grid-3,
  .grid-2,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .h-gallery {
    height: 210vh;
  }

  .h-gallery-sticky {
    top: 78px;
    height: calc(100vh - 88px);
  }

  .h-gallery-rows {
    gap: 40px;
    padding: 6px 0;
  }

  .h-gallery-track {
    height: 100%;
    gap: 0.7rem;
    padding: 0 4vw;
  }

  .h-gallery-item {
    flex-basis: clamp(120px, 36vw, 220px);
  }

  .cursor-glow {
    opacity: 0.1;
  }
}
