/* =========================================================
   SnapUp Events — Camera / Photo Capture Landing Page
   Files: index.html, style.css, script.js
   ========================================================= */

:root {
  --black: #100a24;
  --camera: #17122b;
  --camera-2: #221a3b;
  --cream: #f8f5ff;
  --cream-2: #eee7ff;
  --paper: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --ink: #201a35;
  --ink-soft: rgba(32, 26, 53, 0.68);
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(32, 26, 53, 0.12);
  --coral: #7c3aed;
  --coral-2: #ec4899;
  --amber: #22d3c5;
  --green: #10b981;
  --violet: #7c3aed;
  --pink: #ec4899;
  --orange: #ff6b4a;
  --turquoise: #22d3c5;
  --main-gradient: linear-gradient(
    135deg,
    #7c3aed 0%,
    #ec4899 52%,
    #ff6b4a 100%
  );
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --font:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --mono: "JetBrains Mono", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
svg {
  width: 1em;
  height: 1em;
}

svg:not(.brand-logo-svg) {
  fill: currentColor;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.section-dark {
  color: var(--paper);
  background: var(--black);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 13px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.btn svg {
  font-size: 18px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-hot {
  color: white;
  background: linear-gradient(135deg, var(--coral), var(--coral-2));
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.28);
}
.btn-hot:hover {
  box-shadow: 0 20px 44px rgba(124, 58, 237, 0.36);
}
.btn-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.035);
}
.btn-ghost:hover,
.btn-glass:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}
.btn-glass {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}
.btn-large {
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 16px;
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0 0;
  pointer-events: none;
}
.nav-shell {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
  min-height: 72px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(16, 10, 36, 0.72);
  backdrop-filter: blur(24px) saturate(150%);
  display: flex;
  align-items: center;
  gap: 20px;
  pointer-events: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  transition:
    background 0.25s,
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --spot-x: 120px;
  --spot-y: 36px;
}
.site-header.scrolled .nav-shell {
  background: rgba(20, 13, 47, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}
.nav-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 18%,
    rgba(255, 255, 255, 0.06) 24%,
    rgba(236, 72, 153, 0.55) 34%,
    rgba(255, 255, 255, 0.22) 42%,
    transparent 54%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: navSweep 8s linear infinite;
  pointer-events: none;
  z-index: 0;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.nav-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle 180px at var(--spot-x) var(--spot-y),
    rgba(236, 72, 153, 0.16),
    transparent 62%
  );
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.25s;
}
.nav-shell > * {
  position: relative;
  z-index: 1;
}
@keyframes navSweep {
  0% {
    background-position: 180% 0;
  }
  100% {
    background-position: -40% 0;
  }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  position: relative;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 30px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
.brand::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 72px;
  height: 72px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.28),
    rgba(34, 211, 197, 0.14) 38%,
    transparent 68%
  );
  filter: blur(10px);
  opacity: 0.8;
  pointer-events: none;
}
.brand:hover,
.brand.attention {
  transform: translateY(-2px);
  border-color: rgba(236, 72, 153, 0.24);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.24);
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  position: relative;
  filter: drop-shadow(0 10px 18px rgba(236, 72, 153, 0.2));
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(236, 72, 153, 0.38);
  opacity: 0.78;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.8;
}
.brand-logo-svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
.shutter-blades {
  transform-origin: center;
  transform-box: fill-box;
}
.brand-signal {
  position: absolute;
  right: 0;
  top: 1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
  border: 2px solid #17122b;
  box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.58);
  z-index: 3;
  animation:
    signalPulse 1.55s ease-out infinite,
    signalBlink 2.4s ease-in-out infinite;
}
.brand-signal::before,
.brand-signal::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.58);
  opacity: 0;
  animation: signalWave 1.55s ease-out infinite;
}
.brand-signal::after {
  inset: -10px;
  animation-delay: 0.35s;
}
.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: 22px;
  letter-spacing: -0.05em;
  line-height: 1;
}
.brand-light {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
  transition:
    color 0.28s var(--ease),
    text-shadow 0.28s var(--ease);
}
.brand-accent {
  color: var(--coral);
  font-weight: 800;
  transition:
    text-shadow 0.28s var(--ease),
    transform 0.28s var(--ease);
}
.brand:hover .brand-light,
.brand.attention .brand-light {
  color: white;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.1);
}
.brand:hover .brand-accent,
.brand.attention .brand-accent {
  text-shadow: 0 0 18px rgba(236, 72, 153, 0.35);
}
@keyframes brandGlowPulse {
  0%,
  100% {
    transform: translateY(-50%) scale(0.95);
    opacity: 0.55;
  }
  50% {
    transform: translateY(-50%) scale(1.12);
    opacity: 0.95;
  }
}
@keyframes logoRingPulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.44;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.92;
  }
}
@keyframes logoOrbitPulse {
  0% {
    transform: scale(0.98);
    opacity: 0.18;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.46;
  }
  100% {
    transform: scale(0.98);
    opacity: 0.18;
  }
}
@keyframes shutterRotate {
  0% {
    transform: rotate(0deg);
  }
  12% {
    transform: rotate(16deg);
  }
  24% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(26deg);
  }
  76% {
    transform: rotate(14deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes signalPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.62);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 10px rgba(236, 72, 153, 0);
    opacity: 0.9;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
    opacity: 1;
  }
}
@keyframes signalBlink {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  45% {
    transform: scale(0.82);
    filter: brightness(0.78);
  }
  55% {
    transform: scale(1.18);
    filter: brightness(1.55);
  }
}
@keyframes signalWave {
  0% {
    transform: scale(0.55);
    opacity: 0.78;
  }
  68% {
    transform: scale(1.65);
    opacity: 0;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}
.nav-links {
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.74);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  transition:
    color 0.2s,
    background 0.2s,
    transform 0.2s;
  overflow: hidden;
}
.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-115%);
  transition: transform 0.45s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}
.nav-links a:hover::before {
  transform: translateX(115%);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 99px;
  background: var(--coral);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 20px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  pointer-events: auto;
  position: fixed;
  left: 18px;
  right: 18px;
  top: 96px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(10, 9, 8, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: white;
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
}
.mobile-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 8px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 930px;
  padding: 150px 0 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.78)),
    radial-gradient(
      circle at 78% 38%,
      rgba(34, 211, 197, 0.3),
      transparent 34%
    ),
    radial-gradient(
      circle at 30% 40%,
      rgba(124, 58, 237, 0.12),
      transparent 32%
    ),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=2200&q=80")
      center / cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78),
      rgba(0, 0, 0, 0.2) 56%,
      rgba(0, 0, 0, 0.7)
    ),
    radial-gradient(
      circle at 50% 55%,
      transparent 0 18%,
      rgba(0, 0, 0, 0.24) 19% 100%
    );
  pointer-events: none;
}
.hero-bg,
.viewfinder {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.lens-ring {
  position: absolute;
  right: 12%;
  top: 23%;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, 0.025),
    inset 0 0 50px rgba(34, 211, 197, 0.13),
    0 0 70px rgba(34, 211, 197, 0.15);
}
.ring-two {
  transform: scale(0.78);
  border-color: rgba(255, 255, 255, 0.08);
}
.ring-three {
  transform: scale(0.55);
  border-color: rgba(255, 255, 255, 0.06);
}
.flash {
  position: absolute;
  right: 13.7%;
  top: 33%;
  width: 180px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    var(--amber),
    transparent
  );
  transform: rotate(-27deg);
  filter: blur(0.2px);
  box-shadow: 0 0 40px var(--amber);
}
.vf-corner {
  position: absolute;
  width: 56px;
  height: 56px;
  border-color: rgba(255, 255, 255, 0.84);
}
.top-left {
  left: 48px;
  top: 130px;
  border-top: 3px solid;
  border-left: 3px solid;
}
.top-right {
  right: 48px;
  top: 130px;
  border-top: 3px solid;
  border-right: 3px solid;
}
.bottom-left {
  left: 48px;
  bottom: 118px;
  border-bottom: 3px solid;
  border-left: 3px solid;
}
.bottom-right {
  right: 48px;
  bottom: 118px;
  border-bottom: 3px solid;
  border-right: 3px solid;
}
.vf-label {
  position: absolute;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.55;
}
.vf-label i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  margin-right: 8px;
  box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.12);
}
.rec {
  left: 82px;
  top: 158px;
  font-weight: 700;
}
.iso {
  left: 82px;
  top: 220px;
}
.live {
  right: 80px;
  top: 190px;
  font-weight: 800;
}
.battery {
  right: 80px;
  top: 154px;
  width: 34px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 3px;
}
.battery::before {
  content: "";
  position: absolute;
  right: -6px;
  top: 4px;
  width: 4px;
  height: 7px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 0 2px 2px 0;
}
.battery::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  bottom: 3px;
  width: 20px;
  background: rgba(255, 255, 255, 0.75);
}
.quality {
  left: 84px;
  bottom: 132px;
}
.aperture {
  right: 84px;
  bottom: 132px;
}
.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 530px;
  gap: 72px;
  align-items: center;
}
.hero-copy {
  max-width: 650px;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral-2);
  font: 800 12px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.12);
}
.hero h1 {
  margin: 28px 0 24px;
  font-size: clamp(54px, 7vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  font-weight: 900;
  color: white;
}
.hero h1 strong {
  color: var(--coral);
  display: inline-block;
  text-shadow: 0 10px 40px rgba(124, 58, 237, 0.24);
}
.hero-title__line {
  display: block;
  width: fit-content;
}

.hero-title__line:nth-child(2) {
  margin-left: 0.12em;
}

.hero-title__line:nth-child(-n + 2) {
  white-space: nowrap;
}

.hero-title__highlight {
  position: relative;
  padding: 0 0.03em 0.08em 0;
}

.hero-title__highlight::after {
  content: "";
  position: absolute;
  left: 0.02em;
  right: 0;
  bottom: 0;
  height: 0.07em;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(167, 139, 250, 0.95),
    rgba(244, 114, 182, 0.9),
    rgba(94, 234, 212, 0.8)
  );
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.3);
  transform-origin: left;
  animation: heroTitleLine 0.8s 0.4s var(--ease) both;
}

@keyframes heroTitleLine {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px 0 28px;
}
.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}
.mini-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mini-proof svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* HERO PHONE */
.hero-device {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}
.phone-wrap {
  transform-style: preserve-3d;
  transition: transform 0.25s var(--ease);
}
.phone-frame {
  width: 330px;
  min-height: 650px;
  padding: 14px;
  border-radius: 48px;
  background: linear-gradient(
    145deg,
    #424242,
    #090909 28%,
    #2f2f2f 56%,
    #050505
  );
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.55),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    0 0 0 8px rgba(255, 255, 255, 0.06);
}
.phone-top {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-weight: 800;
  font-size: 13px;
  padding: 0 18px;
}
.phone-camera {
  width: 92px;
  height: 26px;
  border-radius: 999px;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone-screen {
  background: #0d0d0d;
  min-height: 580px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.app-head {
  padding: 22px 18px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.app-head b {
  display: block;
  color: white;
  font-size: 16px;
}
.app-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
.app-head span i,
.live-pill b {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--coral);
}
.app-head button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 10px 14px 16px;
}
.memory {
  position: relative;
  min-height: 118px;
  border-radius: 15px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.memory::after,
.thumb::after,
.frame::after,
.photo-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
}
.m1 {
  background-image: url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=500&q=80");
}
.m2 {
  background-image: url("https://images.unsplash.com/photo-1529634597503-139d3726fed5?auto=format&fit=crop&w=500&q=80");
}
.m3 {
  background-image: url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=500&q=80");
}
.m4 {
  background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=500&q=80");
}
.m5 {
  background-image: url("https://images.unsplash.com/photo-1502635385003-ee1e6a1a742d?auto=format&fit=crop&w=500&q=80");
}
.m6 {
  background-image: url("https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=500&q=80");
}
.play,
.duration {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 9px;
  min-width: 34px;
  min-height: 25px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: white;
  font: 800 11px/1 var(--mono);
}
.upload-strip {
  margin: 0 14px 16px;
  padding: 16px;
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
}
.upload-strip strong {
  display: block;
  text-align: center;
  font-size: 13px;
  margin-bottom: 12px;
}
.upload-strip div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.upload-strip button {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 70px;
  border: 0;
  border-radius: 14px;
  background: #eee7ff;
  color: var(--ink);
  font-weight: 800;
  font-size: 11px;
}
.upload-strip svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.floating-card {
  position: absolute;
  z-index: 6;
  background: rgba(255, 250, 242, 0.94);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  animation: floaty 5s ease-in-out infinite alternate;
}
.card-left {
  left: -26px;
  top: 225px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 220px;
  padding: 12px;
  border-radius: 16px;
}
.card-left img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.card-left b {
  display: block;
  font-size: 14px;
}
.card-left span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}
.card-right {
  right: -8px;
  top: 275px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  animation-delay: -2s;
}
.card-right strong {
  color: var(--coral);
  font-size: 30px;
}
.card-right span {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 800;
}
@keyframes floaty {
  from {
    transform: translateY(-8px);
  }
  to {
    transform: translateY(8px);
  }
}

/* FILM STRIP */
.film-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  height: 122px;
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}
.film-track {
  display: flex;
  gap: 14px;
  width: max-content;
  height: 100%;
  align-items: center;
  padding: 14px;
  animation: filmMove 38s linear infinite;
}
.film-strip::before,
.film-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  z-index: 2;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 18px,
    rgba(255, 255, 255, 0.18) 18px 27px,
    transparent 27px 45px
  );
}
.film-strip::before {
  top: 0;
}
.film-strip::after {
  bottom: 0;
}
.frame {
  position: relative;
  width: 170px;
  height: 84px;
  flex: 0 0 auto;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  outline: 1px solid rgba(255, 255, 255, 0.13);
}
.f1 {
  background-image: url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=400&q=70");
}
.f2 {
  background-image: url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=400&q=70");
}
.f3 {
  background-image: url("https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&w=400&q=70");
}
.f4 {
  background-image: url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=400&q=70");
}
.f5 {
  background-image: url("https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=400&q=70");
}
.f6 {
  background-image: url("https://images.unsplash.com/photo-1529636798458-92182e662485?auto=format&fit=crop&w=400&q=70");
}
@keyframes filmMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* PROCESS */
.process {
  padding: 82px 0 88px;
  background: var(--cream);
}
.section-head.center {
  text-align: center;
  margin-bottom: 44px;
}
.section-head h2,
.preview h2,
.feature-copy h2,
.upload-intro h2,
.final-cta h2 {
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  color: var(--ink);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 12%;
  right: 12%;
  border-top: 2px dashed rgba(32, 26, 53, 0.17);
}
.step {
  position: relative;
  z-index: 2;
  text-align: center;
}
.step-no {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid rgba(32, 26, 53, 0.24);
  background: var(--paper);
  font-weight: 900;
  font-size: 18px;
}
.icon-box {
  width: 94px;
  height: 94px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--paper), var(--cream-2));
  border: 1px solid var(--dark-line);
  box-shadow: 0 18px 40px rgba(32, 26, 53, 0.07);
}
.icon-box svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
}
.step h3 {
  font-size: 18px;
  margin-bottom: 9px;
}
.step p {
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 14px;
}

/* FEATURES */
.features {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(124, 58, 237, 0.16),
      transparent 24%
    ),
    radial-gradient(
      circle at 76% 22%,
      rgba(34, 211, 197, 0.15),
      transparent 30%
    ),
    linear-gradient(135deg, #100a24 0%, #17122b 48%, #2d2350 100%);
}
.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 35%, black, transparent 72%);
  pointer-events: none;
}
.features::after {
  content: "FOCUS";
  position: absolute;
  right: -50px;
  bottom: -55px;
  font-size: clamp(110px, 18vw, 260px);
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}
.feature-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}
.feature-top h2 {
  margin-top: 14px;
  max-width: 720px;
  color: white;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.feature-top p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.75;
  max-width: 500px;
}
.feature-studio {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
}
.feature-hero-card,
.bento-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}
.feature-hero-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 34px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature-hero-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  pointer-events: none;
}
.feature-hero-card::after {
  content: "";
  position: absolute;
  left: -22%;
  top: -18%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.22),
    transparent 63%
  );
  filter: blur(8px);
  pointer-events: none;
}
.feature-hero-content {
  position: relative;
  z-index: 2;
}
.camera-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.22);
  color: #ffb19d;
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.1em;
}
.camera-chip i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.13);
}
.feature-hero-card h3 {
  margin-top: 22px;
  max-width: 520px;
  color: white;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.feature-hero-card p {
  max-width: 510px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}
.feature-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.feature-metrics div {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-metrics strong {
  display: block;
  color: white;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.feature-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font: 700 11px/1.3 var(--mono);
  text-transform: uppercase;
}
.feature-lens-visual {
  position: absolute;
  right: -72px;
  bottom: -78px;
  width: 430px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle,
    #030303 0 22%,
    #141414 23% 38%,
    #070707 39% 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 0 0 24px rgba(255, 255, 255, 0.025),
    inset 0 0 0 48px rgba(255, 255, 255, 0.018),
    inset 0 0 100px rgba(34, 211, 197, 0.22),
    0 0 90px rgba(34, 211, 197, 0.13);
}
.feature-lens-visual::before,
.feature-lens-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-lens-visual::before {
  inset: 38px;
}
.feature-lens-visual::after {
  inset: 82px;
}
.lens-core {
  position: relative;
  width: 162px;
  height: 162px;
  border-radius: 50%;
  background: radial-gradient(circle, #020202 0 38%, #24193f 39% 100%);
  box-shadow: inset 0 0 45px rgba(34, 211, 197, 0.18);
}
.lens-core span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 92px;
  transform-origin: 0 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.01)
  );
  clip-path: polygon(50% 0, 100% 84%, 0 100%);
}
.lens-core span:nth-child(1) {
  transform: rotate(0deg) translate(4px, -84px);
}
.lens-core span:nth-child(2) {
  transform: rotate(60deg) translate(4px, -84px);
}
.lens-core span:nth-child(3) {
  transform: rotate(120deg) translate(4px, -84px);
}
.lens-core span:nth-child(4) {
  transform: rotate(180deg) translate(4px, -84px);
}
.lens-core span:nth-child(5) {
  transform: rotate(240deg) translate(4px, -84px);
}
.lens-core span:nth-child(6) {
  transform: rotate(300deg) translate(4px, -84px);
}
.focus-box {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  opacity: 0.28;
}
.focus-box::before,
.focus-box::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.65);
}
.focus-box::before {
  left: 50%;
  top: -34px;
  width: 2px;
  height: 26px;
}
.focus-box::after {
  left: -34px;
  top: 50%;
  width: 26px;
  height: 2px;
}
.feature-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.bento-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 28px;
  padding: 26px;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.35);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.045)
  );
}
.bento-card::after {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(34, 211, 197, 0.16),
    transparent 68%
  );
  pointer-events: none;
}
.bento-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 21px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.bento-card h3 {
  color: white;
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.bento-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
  font-size: 14px;
}
.bento-card-wide {
  grid-column: span 2;
  min-height: 240px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 22px;
  align-items: center;
}
.mini-memory-stack {
  position: relative;
  min-height: 160px;
}
.mini-photo {
  position: absolute;
  width: 142px;
  height: 112px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  border: 4px solid rgba(255, 250, 242, 0.92);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}
.mini-photo.one {
  right: 78px;
  top: 2px;
  transform: rotate(-8deg);
  background-image: url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=360&q=75");
}
.mini-photo.two {
  right: 18px;
  top: 38px;
  transform: rotate(6deg);
  background-image: url("https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=360&q=75");
}
.mini-photo.three {
  right: 112px;
  top: 76px;
  transform: rotate(3deg);
  background-image: url("https://images.unsplash.com/photo-1529636798458-92182e662485?auto=format&fit=crop&w=360&q=75");
}

/* PREVIEW */
.preview {
  padding: 90px 0;
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(124, 58, 237, 0.12),
      transparent 28%
    ),
    var(--cream-2);
}
.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.event-card {
  width: min(100%, 370px);
  margin-top: 30px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid rgba(32, 26, 53, 0.1);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(32, 26, 53, 0.13);
}
.event-card-head {
  text-align: center;
  margin-bottom: 20px;
}
.event-card-head b {
  display: block;
  font-size: 17px;
}
.event-card-head span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-weight: 600;
}
.qr-code {
  width: 240px;
  height: 240px;
  margin: 0 auto 22px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 2px;
  background: white;
  border-radius: 18px;
  border: 1px solid var(--dark-line);
}
.qr-code span {
  border-radius: 2px;
  background: transparent;
}
.qr-code span.on {
  background: #090806;
}
.code-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border-radius: 14px;
  background: #eee7ff;
}
.code-box strong {
  flex: 1;
  text-align: center;
  letter-spacing: 0.08em;
  font: 900 22px var(--mono);
}
.code-box button,
.message-box button {
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  min-height: 38px;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}
.event-card p {
  margin-top: 16px;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 650;
}
.polaroids {
  position: relative;
  min-height: 500px;
}
.polaroid {
  position: absolute;
  width: 295px;
  padding: 14px 14px 20px;
  background: var(--paper);
  border-radius: 5px;
  box-shadow: 0 26px 60px rgba(32, 26, 53, 0.18);
}
.photo-photo {
  position: relative;
  display: block;
  height: 230px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.pf1 {
  background-image: url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=600&q=80");
}
.pf2 {
  background-image: url("https://images.unsplash.com/photo-1529636798458-92182e662485?auto=format&fit=crop&w=600&q=80");
}
.polaroid figcaption {
  margin-top: 12px;
  text-align: center;
  color: var(--ink-soft);
  font:
    700 18px "Comic Sans MS",
    "Bradley Hand",
    cursive;
}
.p-top {
  right: 70px;
  top: 5px;
  transform: rotate(7deg);
}
.p-bottom {
  right: 185px;
  top: 245px;
  transform: rotate(-8deg);
}

/* UPLOAD */
.upload {
  padding: 90px 0 100px;
  background: var(--cream);
}
.upload-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 68px;
  align-items: center;
}
.upload-intro p {
  max-width: 500px;
  margin: 20px 0 30px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}
.upload-card {
  border-radius: 30px;
  background: var(--paper);
  border: 1px solid var(--dark-line);
  box-shadow: 0 22px 60px rgba(32, 26, 53, 0.11);
  padding: 24px;
}
.upload-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--dark-line);
}
.upload-card-head strong {
  display: block;
  font-size: 18px;
}
.upload-card-head span {
  display: block;
  color: var(--ink-soft);
  margin-top: 4px;
  font-size: 13px;
  font-weight: 650;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 99px;
  color: var(--coral);
  background: rgba(124, 58, 237, 0.1);
  font: 800 11px var(--mono);
  font-style: normal;
}
.drop-zone {
  margin-top: 20px;
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  gap: 8px;
  border: 2px dashed rgba(32, 26, 53, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(124, 58, 237, 0.1),
      transparent 24%
    ),
    #f1ecff;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.drop-zone.active,
.drop-zone:hover {
  border-color: var(--coral);
  transform: translateY(-2px);
}
.drop-zone svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
}
.drop-zone span {
  color: var(--ink-soft);
  font-weight: 650;
}
.upload-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.upload-options button {
  min-height: 58px;
  border: 1px solid rgba(32, 26, 53, 0.12);
  border-radius: 16px;
  background: #eee7ff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.upload-options button:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}
.message-box {
  display: none;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 18px;
}
.message-box.open {
  display: block;
}
.message-box textarea {
  display: block;
  width: 100%;
  min-height: 110px;
  padding: 16px;
  resize: none;
  border: 0;
  outline: 0;
  background: #f1ecff;
  color: var(--ink);
}
.message-box div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border-top: 1px solid var(--dark-line);
  background: #f1ecff;
}
.message-box span {
  color: var(--ink-soft);
  font: 700 12px var(--mono);
}
.progress-box {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
}
.progress-box.show {
  display: block;
}
.progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.progress-row b {
  flex: 1;
  font-size: 13px;
}
.progress-row small {
  color: var(--coral);
  font: 800 11px var(--mono);
}
.progress-track {
  height: 7px;
  border-radius: 99px;
  overflow: hidden;
  background: rgba(32, 26, 53, 0.13);
}
.progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--amber));
  transition: width 0.12s linear;
}
.thumbnail-line {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr 1fr;
  gap: 14px;
}
.thumb {
  position: relative;
  min-height: 150px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(32, 26, 53, 0.08);
}
.thumb span {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  color: white;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
}
.t1 {
  background-image: url("https://images.unsplash.com/photo-1529634597503-139d3726fed5?auto=format&fit=crop&w=700&q=80");
}
.t2 {
  background-image: url("https://images.unsplash.com/photo-1502635385003-ee1e6a1a742d?auto=format&fit=crop&w=700&q=80");
}
.t3 {
  background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=700&q=80");
}
.t4 {
  background-image: url("https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=700&q=80");
}

@media (max-width: 1100px) {
  .feature-top,
  .feature-studio {
    grid-template-columns: 1fr;
  }
  .feature-hero-card {
    min-height: 540px;
  }
  .feature-lens-visual {
    right: -55px;
    bottom: -110px;
    width: 390px;
  }
}

@media (max-width: 720px) {
  .features {
    padding: 72px 0;
  }
  .feature-top {
    gap: 18px;
    margin-bottom: 28px;
  }
  .feature-top h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .feature-top p {
    font-size: 15px;
  }
  .feature-hero-card {
    min-height: auto;
    padding: 24px;
    padding-bottom: 280px;
    border-radius: 26px;
  }
  .feature-metrics {
    grid-template-columns: 1fr;
  }
  .feature-lens-visual {
    width: 310px;
    right: 50%;
    bottom: -76px;
    transform: translateX(50%);
  }
  .feature-bento {
    grid-template-columns: 1fr;
  }
  .bento-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }
  .bento-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 360px;
  }
  .mini-memory-stack {
    min-height: 170px;
  }
  .mini-photo.one {
    right: 110px;
  }
  .mini-photo.two {
    right: 20px;
  }
  .mini-photo.three {
    right: 72px;
  }
}

/* FINAL CTA */
.final-cta {
  padding: 54px 0;
  background:
    radial-gradient(
      circle at 22% 10%,
      rgba(124, 58, 237, 0.18),
      transparent 24%
    ),
    linear-gradient(135deg, #080706, #291e48);
}
.final-cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}
.camera-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  margin-bottom: 16px;
  color: var(--paper);
}
.final-cta h2 {
  color: white;
  font-size: clamp(28px, 4vw, 42px);
}
.final-cta p {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 8px;
}
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex: 0 0 auto;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.22s;
}
.delay-3 {
  transition-delay: 0.32s;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  .burger {
    display: block;
    margin-left: auto;
  }
  .hero {
    min-height: auto;
    padding-bottom: 150px;
  }
  .hero-grid,
  .preview-grid,
  .upload-grid {
    grid-template-columns: 1fr;
  }
  .hero-device {
    min-height: 680px;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before {
    display: none;
  }
  .preview-grid {
    gap: 30px;
  }
  .polaroids {
    min-height: 440px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .site-header {
    padding-top: 10px;
  }
  .nav-shell {
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 8px 9px 8px 12px;
  }
  .brand {
    padding: 7px 10px 7px 6px;
    gap: 10px;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .brand-text {
    font-size: 19px;
  }
  .hero {
    padding-top: 112px;
    padding-bottom: 130px;
  }
  .vf-label,
  .vf-corner {
    display: none;
  }
  .hero h1 {
    font-size: clamp(44px, 15vw, 72px);
  }
  .hero-copy p {
    font-size: 16px;
  }
  .hero-buttons,
  .final-actions {
    flex-direction: column;
  }
  .btn-large,
  .hero-buttons .btn,
  .final-actions .btn {
    width: 100%;
  }
  .mini-proof {
    flex-direction: column;
  }
  .phone-frame {
    width: min(100%, 310px);
    min-height: 610px;
  }
  .phone-screen {
    min-height: 540px;
  }
  .card-left,
  .card-right {
    display: none;
  }
  .film-strip {
    height: 100px;
  }
  .frame {
    width: 140px;
    height: 66px;
  }
  .process,
  .features,
  .preview,
  .upload {
    padding: 68px 0;
  }
  .steps,
  .thumbnail-line {
    grid-template-columns: 1fr;
  }
  .section-head h2,
  .preview h2,
  .feature-copy h2,
  .upload-intro h2 {
    font-size: clamp(32px, 12vw, 48px);
  }
  .feature-list {
    gap: 20px;
  }
  .aperture {
    width: 270px;
    height: 270px;
  }
  .qr-code {
    width: min(100%, 230px);
    height: auto;
    aspect-ratio: 1;
  }
  .polaroids {
    min-height: 520px;
  }
  .polaroid {
    width: min(82vw, 280px);
  }
  .p-top {
    right: 15px;
  }
  .p-bottom {
    right: 50px;
    top: 255px;
  }
  .upload-options {
    grid-template-columns: 1fr;
  }
  .final-cta-inner {
    flex-direction: column;
    align-items: stretch;
  }
}

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

.nav-login-link,
.nav-register-link,
.nav-account-link,
.nav-logout-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.nav-register-link,
.nav-account-link {
  background: linear-gradient(135deg, #ec4899, #22d3c5);
  color: #1b1432;
  border-color: transparent;
}

.nav-logout-btn {
  font-family: inherit;
}

.nav-login-link:hover,
.nav-register-link:hover,
.nav-account-link:hover,
.nav-logout-btn:hover {
  transform: translateY(-1px);
}

/* Navbar auth buttons spacing fix */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-left: auto;
}

.nav-actions .btn {
  white-space: nowrap;
  padding: 10px 14px;
  min-height: 42px;
}

.nav-actions .btn-hot {
  padding-inline: 16px;
}

/* Login olduktan sonra gelen Logout butonu için */
.nav-logout-btn {
  border: none;
  font-family: inherit;
}

/* Tablet genişliklerde butonları biraz küçült */
@media (max-width: 1100px) {
  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn {
    padding: 9px 11px;
    font-size: 13px;
  }
}

/* Mobilde zaten burger menu kullanılacağı için nav-actions gizli kalmalı */
@media (max-width: 900px) {
  .nav-actions {
    display: none;
  }

  .mobile-actions {
    display: grid;
    gap: 10px;
  }

  .mobile-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.nav-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.22),
    rgba(247, 177, 76, 0.2)
  );
  border: 1px solid rgba(255, 166, 77, 0.28);
  color: #fff;
  box-shadow: 0 10px 24px rgba(236, 72, 153, 0.16);
}

.nav-account-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.3),
    rgba(247, 177, 76, 0.28)
  );
}

.nav-account-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ec4899, #22d3c5);
  color: #20163a;
  flex-shrink: 0;
}

.nav-account-icon svg {
  width: 16px;
  height: 16px;
}

.nav-account-text {
  display: inline-block;
  font-weight: 800;
  white-space: nowrap;
}

/* JOIN WITH CODE MODAL */
body.join-upload-open {
  overflow: hidden;
}

.join-upload-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.join-upload-modal.active {
  display: flex;
}

.join-upload-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 10, 36, 0.74);
  backdrop-filter: blur(16px);
}

.join-upload-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  max-height: min(90vh, 820px);
  overflow-y: auto;
  border-radius: 30px;
  padding: 28px;
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(124, 58, 237, 0.16),
      transparent 34%
    ),
    var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.join-upload-panel::-webkit-scrollbar {
  width: 9px;
}

.join-upload-panel::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(32, 26, 53, 0.06);
}

.join-upload-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(32, 26, 53, 0.28);
}

.join-upload-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(32, 26, 53, 0.08);
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.join-upload-head {
  padding-right: 44px;
  margin-bottom: 22px;
}

.join-upload-head span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--coral);
  font: 900 12px/1 var(--mono);
  letter-spacing: 0.14em;
}

.join-upload-head span i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.14);
}

.join-upload-head h2 {
  margin-top: 12px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.join-upload-head p {
  margin-top: 10px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.join-upload-form {
  display: grid;
  gap: 16px;
}

.join-upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.join-upload-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.join-upload-form input,
.join-upload-form textarea {
  width: 100%;
  border: 1px solid rgba(32, 26, 53, 0.13);
  border-radius: 16px;
  background: #f1ecff;
  color: var(--ink);
  outline: 0;
  padding: 14px 15px;
  font: inherit;
}

.join-upload-form textarea {
  min-height: 120px;
  resize: vertical;
}

.join-upload-form input:focus,
.join-upload-form textarea:focus {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.join-event-preview {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 10px 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(118, 209, 144, 0.13);
  border: 1px solid rgba(22, 128, 60, 0.18);
}

.join-event-preview[hidden] {
  display: none;
}

.join-event-cover {
  position: relative;
  width: 108px;
  height: 86px;
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #7c3aed;
  background:
    radial-gradient(
      circle at 22% 18%,
      rgba(236, 72, 153, 0.2),
      transparent 42%
    ),
    #eee7ff;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 14px;
}

.join-event-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.join-event-cover img[hidden],
.join-event-cover span[hidden] {
  display: none;
}

.join-event-cover span {
  display: grid;
  place-items: center;
}

.join-event-cover svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.join-event-preview__details {
  min-width: 0;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.join-event-preview strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.join-event-preview span {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 13px;
}

.join-event-preview .join-event-address {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.join-event-map-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  padding: 7px 9px;
  color: #6d28d9;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: 10px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.join-event-map-link[hidden] {
  display: none;
}

.join-event-map-link:hover {
  transform: translateY(-1px);
  background: rgba(124, 58, 237, 0.13);
  border-color: rgba(124, 58, 237, 0.3);
}

html[data-theme="dark"] .join-event-map-link {
  color: #c4b5fd;
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(196, 181, 253, 0.22);
}

html[data-theme="dark"] .join-event-map-link:hover {
  background: rgba(167, 139, 250, 0.18);
  border-color: rgba(196, 181, 253, 0.38);
}

.join-event-map-link svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.join-event-preview .join-event-map-link span {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.join-event-gallery-link {
  grid-column: 3;
  grid-row: 1 / span 2;
  min-width: 132px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #17122b;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(23, 18, 43, 0.16);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.join-event-gallery-link:hover {
  transform: translateY(-2px);
}

.join-event-gallery-link[hidden] {
  display: none;
}

.join-media-type {
  display: grid;
  gap: 10px;
}

.join-media-type > span {
  font-weight: 900;
}

.join-media-type div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.join-media-type button {
  min-height: 54px;
  border: 1px solid rgba(32, 26, 53, 0.12);
  border-radius: 16px;
  background: #eee7ff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}

.join-media-type button:hover,
.join-media-type button.active {
  transform: translateY(-2px);
  background: var(--ink);
  color: white;
}

.join-file-preview {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(23, 18, 43, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.58),
      rgba(255, 250, 242, 0.94)
    ),
    rgba(255, 250, 242, 0.9);
  box-shadow:
    0 16px 36px rgba(23, 18, 43, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.join-selected-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.join-selected-header strong {
  display: block;
  color: #17122b;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.join-selected-header span {
  display: block;
  margin-top: 4px;
  color: rgba(23, 18, 43, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.join-clear-files-button {
  min-height: 34px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.1);
  color: #7c3aed;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.join-clear-files-button:hover {
  transform: translateY(-1px);
  background: rgba(236, 72, 153, 0.18);
}

.join-selected-file-list {
  max-height: 260px;
  overflow-y: auto;
  display: grid;
  gap: 10px;
  padding-right: 6px;
}

.join-selected-file-list::-webkit-scrollbar {
  width: 7px;
}

.join-selected-file-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(23, 18, 43, 0.06);
}

.join-selected-file-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(23, 18, 43, 0.22);
}

.join-selected-file-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(23, 18, 43, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.join-selected-file-thumb {
  width: 68px;
  height: 58px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #17122b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

.join-selected-file-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-selected-file-thumb.video-thumb {
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(247, 177, 76, 0.38),
      transparent 34%
    ),
    #17122b;
}

.join-selected-file-info {
  min-width: 0;
}

.join-selected-file-info strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: #17122b;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.join-selected-file-info span {
  display: block;
  margin-top: 5px;
  color: rgba(23, 18, 43, 0.54);
  font-size: 11px;
  font-weight: 800;
}

.join-remove-file-button {
  min-height: 34px;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 18, 43, 0.08);
  color: rgba(23, 18, 43, 0.72);
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.join-remove-file-button:hover {
  transform: translateY(-1px);
  background: rgba(236, 72, 153, 0.16);
  color: #7c3aed;
}

.join-file-helper-text {
  margin: 12px 0 0;
  color: rgba(23, 18, 43, 0.52);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.join-submit-button {
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--coral), var(--coral-2));
  color: white;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 35px rgba(124, 58, 237, 0.25);
}

.join-submit-button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  box-shadow: none;
}

.join-upload-result {
  min-height: 22px;
  font-weight: 800;
}

.join-upload-result.info {
  color: var(--ink-soft);
}

.join-upload-result.success {
  color: #16803c;
}

.join-upload-result.error {
  color: #d62828;
}

.join-upload-success {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.join-upload-success[hidden] {
  display: none;
}

.join-upload-success.active {
  opacity: 1;
  visibility: visible;
}

.join-upload-success__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 10, 36, 0.68);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.join-upload-success__card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  overflow: hidden;
  padding: 38px 34px 32px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 30px;
  color: #17122b;
  text-align: center;
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(236, 72, 153, 0.15),
      transparent 34%
    ),
    radial-gradient(
      circle at 92% 12%,
      rgba(34, 211, 197, 0.16),
      transparent 30%
    ),
    #fffaf2;
  box-shadow:
    0 38px 110px rgba(10, 6, 24, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transform: translateY(18px) scale(0.96);
  transition: transform 0.24s var(--ease);
}

.join-upload-success.active .join-upload-success__card {
  transform: translateY(0) scale(1);
}

.join-upload-success__icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #ec4899 55%, #22d3c5);
  box-shadow:
    0 20px 42px rgba(124, 58, 237, 0.28),
    0 0 0 9px rgba(124, 58, 237, 0.08);
}

.join-upload-success__icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.join-upload-success.active .join-upload-success__icon {
  animation: join-success-pop 0.5s 0.1s both;
}

.join-upload-success__brand {
  display: inline-flex;
  color: #7c3aed;
  font: 900 11px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.join-upload-success__card h2 {
  margin: 12px 0 0;
  color: #17122b;
  font-size: clamp(31px, 7vw, 44px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.join-upload-success__card p {
  margin: 14px auto 0;
  max-width: 330px;
  color: rgba(23, 18, 43, 0.66);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.55;
}

.join-upload-success__button {
  width: 100%;
  min-height: 56px;
  margin-top: 26px;
  border: 0;
  border-radius: 18px;
  color: #ffffff;
  background: #17122b;
  font: 950 15px/1 var(--font);
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(23, 18, 43, 0.2);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.join-upload-success__button:hover,
.join-upload-success__button:focus-visible {
  transform: translateY(-2px);
  background: #7c3aed;
  box-shadow: 0 18px 38px rgba(124, 58, 237, 0.26);
  outline: none;
}

.join-submit-button.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.join-submit-button.is-loading::before {
  width: 17px;
  height: 17px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: join-upload-spin 0.75s linear infinite;
}

@keyframes join-success-pop {
  0% {
    opacity: 0;
    transform: scale(0.58) rotate(-8deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.08) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes join-upload-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .join-upload-modal {
    padding: 14px;
  }

  .join-upload-panel {
    border-radius: 24px;
    padding: 22px;
  }

  .join-upload-grid {
    grid-template-columns: 1fr;
  }

  .join-media-type div {
    grid-template-columns: 1fr;
  }

  .join-event-preview {
    grid-template-columns: 1fr;
  }

  .join-event-cover,
  .join-event-preview__details,
  .join-event-gallery-link {
    grid-column: 1;
    grid-row: auto;
  }

  .join-event-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8.5;
    border-radius: 16px;
  }

  .join-event-gallery-link {
    width: 100%;
  }

  .join-selected-file-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .join-selected-file-thumb {
    width: 58px;
    height: 52px;
  }

  .join-remove-file-button {
    grid-column: 1 / -1;
    justify-self: flex-start;
  }

  .join-upload-success {
    align-items: end;
    padding: 12px;
  }

  .join-upload-success__card {
    width: 100%;
    padding: 32px 22px 22px;
    border-radius: 28px;
    transform: translateY(34px);
  }

  .join-upload-success__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }

  .join-upload-success__icon svg {
    width: 41px;
    height: 41px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .join-upload-success,
  .join-upload-success__card,
  .join-upload-success__icon,
  .join-submit-button.is-loading::before {
    animation: none;
    transition: none;
  }
}

/* =========================================================
   SnapUp Events — Every Event Type
   ========================================================= */

.event-types {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  color: #ffffff;
  background: #17122b;
}

.event-types::before,
.event-types::after {
  position: absolute;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.event-types::before {
  top: -250px;
  right: -90px;
  box-shadow:
    0 0 0 68px rgba(255, 255, 255, 0.018),
    0 0 0 136px rgba(255, 255, 255, 0.014);
}

.event-types::after {
  bottom: -310px;
  left: -170px;
  box-shadow:
    0 0 0 82px rgba(255, 255, 255, 0.016),
    0 0 0 164px rgba(255, 255, 255, 0.012);
}

.event-types .container {
  position: relative;
  z-index: 1;
}

.event-types__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(46px, 8vw, 112px);
  align-items: end;
}

.event-types .section-kicker {
  color: #75eadc;
}

.event-types__intro h2 {
  max-width: 740px;
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.event-types__summary {
  padding-bottom: 4px;
}

.event-types__summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.7;
}

.event-types__cta {
  width: fit-content;
  min-height: 52px;
  margin-top: 27px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #17122b;
  background: #fff8ed;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(4, 2, 14, 0.25);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.event-types__cta span {
  font-size: 18px;
  line-height: 1;
}

.event-types__cta:hover,
.event-types__cta:focus-visible {
  color: #17122b;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(4, 2, 14, 0.34);
  transform: translateY(-2px);
  outline: none;
}

.event-types__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.event-type-card {
  position: relative;
  isolation: isolate;
  min-height: 238px;
  overflow: hidden;
  padding: 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: #201a29;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.24s var(--ease),
    border-color 0.24s ease;
}

.event-type-card::before,
.event-type-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.event-type-card::before {
  background-image: var(--event-art);
  background-position: center;
  background-size: cover;
  opacity: 0.72;
  transition:
    opacity 0.35s ease,
    transform 0.45s var(--ease);
  transform: scale(1.015);
}

.event-type-card::after {
  background:
    linear-gradient(
      90deg,
      rgba(23, 18, 31, 0.94) 0%,
      rgba(23, 18, 31, 0.72) 43%,
      rgba(23, 18, 31, 0.18) 78%,
      rgba(23, 18, 31, 0.04) 100%
    ),
    linear-gradient(
      0deg,
      rgba(18, 14, 25, 0.72) 0%,
      rgba(18, 14, 25, 0.06) 66%,
      transparent 100%
    );
}

.event-type-card--wedding {
  --event-art: url("../assets/event-types/weddings-abstract.webp");
}

.event-type-card--birthday {
  --event-art: url("../assets/event-types/birthdays-abstract.webp");
}

.event-type-card--graduation {
  --event-art: url("../assets/event-types/graduations-abstract.webp");
}

.event-type-card--corporate {
  --event-art: url("../assets/event-types/corporate-abstract.webp");
}

.event-type-card--travel {
  --event-art: url("../assets/event-types/trips-abstract.webp");
}

.event-type-card--community {
  --event-art: url("../assets/event-types/communities-abstract.webp");
}

.event-type-card:hover {
  border-color: color-mix(in srgb, var(--event-accent) 46%, transparent);
  transform: translateY(-6px);
}

.event-type-card:hover::before {
  opacity: 0.9;
  transform: scale(1.055);
}

.event-type-card__icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--event-accent) 38%, transparent);
  border-radius: 18px;
  color: var(--event-accent);
  background: color-mix(in srgb, var(--event-accent) 11%, transparent);
}

.event-type-card__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-type-card h3 {
  position: relative;
  z-index: 1;
  max-width: 260px;
  margin: 38px 0 0;
  color: #ffffff;
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.event-type-card__signal {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 30px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--event-accent);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--event-accent) 12%, transparent);
}

@media (max-width: 1050px) {
  .event-types__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .event-types__summary {
    max-width: 720px;
  }

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

@media (max-width: 680px) {
  .event-types {
    padding: 82px 0;
  }

  .event-types::before {
    right: -280px;
  }

  .event-types::after {
    left: -300px;
  }

  .event-types__intro h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .event-types__summary p {
    font-size: 15px;
    line-height: 1.65;
  }

  .event-types__cta {
    width: 100%;
    min-height: 56px;
    padding-inline: 16px;
    text-align: center;
  }

  .event-types__grid {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .event-type-card {
    min-height: 184px;
    padding: 23px;
    border-radius: 24px;
  }

  .event-type-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .event-type-card__icon svg {
    width: 26px;
    height: 26px;
  }

  .event-type-card h3 {
    max-width: calc(100% - 50px);
    margin-top: 31px;
    font-size: 25px;
  }

  .event-type-card__signal {
    top: 26px;
    right: 26px;
  }
}

/* =========================================================
   SnapUp Events — Homepage Pricing Section
   ========================================================= */

.pricing {
  position: relative;
  scroll-margin-top: 110px;
  padding: 110px 0;
  background: #f8f5ff;
  overflow: hidden;
}

.pricing::before {
  display: none;
}

.pricing .section-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
}

.pricing .section-kicker {
  color: #ec4899;
}

.pricing .section-head h2 {
  color: #201a35;
}

.pricing .section-head p {
  max-width: 680px;
  margin: 14px auto 0;
  color: rgba(32, 26, 53, 0.66);
  line-height: 1.7;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(32, 26, 53, 0.08);
  box-shadow: 0 24px 70px rgba(58, 39, 94, 0.13);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.pricing-card::before {
  display: none;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 72, 153, 0.34);
  box-shadow: 0 34px 100px rgba(58, 39, 94, 0.18);
}

.pricing-card-featured {
  border-color: rgba(236, 72, 153, 0.42);
  background: #ffffff;
  transform: translateY(-14px);
}

.pricing-card-featured:hover {
  transform: translateY(-20px);
}

.pricing-popular {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #ec4899, #ff6b4a);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.28);
}

.pricing-card-head {
  position: relative;
  z-index: 1;
  min-height: 150px;
}

.pricing-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.1);
  color: #7c3aed;
  border: 1px solid rgba(236, 72, 153, 0.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 22px 0 10px;
  color: #201a35;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.pricing-card p {
  margin: 0;
  color: rgba(32, 26, 53, 0.62);
  line-height: 1.55;
  font-size: 14px;
}

.pricing-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 24px 0 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(32, 26, 53, 0.08);
}

.pricing-price strong {
  color: #201a35;
  font-size: clamp(38px, 5vw, 50px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.pricing-price span {
  color: rgba(32, 26, 53, 0.52);
  font-size: 14px;
  font-weight: 700;
}

.pricing-features {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 30px;
  color: rgba(32, 26, 53, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.24);
}

.pricing-features li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #ec4899;
  border-bottom: 2px solid #ec4899;
  transform: rotate(-45deg);
}

.pricing-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

.pricing .btn-glass {
  background: rgba(32, 26, 53, 0.04);
  color: #201a35;
  border-color: rgba(32, 26, 53, 0.12);
}

.pricing .btn-glass:hover {
  background: rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.28);
}

@media (max-width: 1050px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .pricing-card,
  .pricing-card-featured,
  .pricing-card-featured:hover {
    min-height: auto;
    transform: none;
  }

  .pricing-card-head {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .pricing {
    padding: 82px 0;
  }

  .pricing::before {
    inset: 14px;
    border-radius: 24px;
  }

  .pricing-grid {
    gap: 16px;
    margin-top: 34px;
  }

  .pricing-card {
    padding: 22px;
    border-radius: 24px;
  }

  .pricing-popular {
    position: static;
    width: max-content;
    margin-bottom: 16px;
  }
}

/* =========================================================
   COLORFUL HERO — SnapUp Events
   Scoped to the home hero so the remaining page stays intact.
   ========================================================= */
.hero {
  isolation: isolate;
  min-height: 940px;
  background:
    linear-gradient(
      112deg,
      rgba(15, 8, 40, 0.96) 4%,
      rgba(28, 15, 61, 0.78) 47%,
      rgba(14, 15, 41, 0.88) 100%
    ),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=2200&q=84")
      center / cover;
}

.hero::before {
  z-index: 0;
  background:
    radial-gradient(
      circle at 14% 24%,
      rgba(124, 58, 237, 0.48),
      transparent 29%
    ),
    radial-gradient(
      circle at 72% 24%,
      rgba(236, 72, 153, 0.38),
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 70%,
      rgba(34, 211, 197, 0.26),
      transparent 25%
    ),
    radial-gradient(
      circle at 36% 82%,
      rgba(255, 107, 74, 0.24),
      transparent 26%
    ),
    linear-gradient(180deg, rgba(10, 6, 31, 0.08), rgba(10, 7, 28, 0.58));
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 0 121px;
  height: 210px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(10, 7, 28, 0.48));
}

.hero-bg {
  overflow: hidden;
}

.color-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.75;
  animation: heroOrb 9s ease-in-out infinite alternate;
}

.orb-violet {
  top: 18%;
  left: -7%;
  width: 320px;
  aspect-ratio: 1;
  background: radial-gradient(
    circle at 62% 38%,
    rgba(167, 139, 250, 0.75),
    rgba(124, 58, 237, 0.12) 62%,
    transparent 72%
  );
}

.orb-pink {
  top: 12%;
  right: 19%;
  width: 250px;
  aspect-ratio: 1;
  background: radial-gradient(
    circle at 40% 42%,
    rgba(244, 114, 182, 0.7),
    rgba(236, 72, 153, 0.1) 62%,
    transparent 72%
  );
  animation-delay: -3s;
}

.orb-cyan {
  right: -3%;
  bottom: 19%;
  width: 290px;
  aspect-ratio: 1;
  background: radial-gradient(
    circle at 42% 45%,
    rgba(94, 234, 212, 0.64),
    rgba(34, 211, 197, 0.08) 62%,
    transparent 72%
  );
  animation-delay: -6s;
}

@keyframes heroOrb {
  from {
    transform: translate3d(0, -10px, 0) scale(0.94);
  }
  to {
    transform: translate3d(18px, 16px, 0) scale(1.08);
  }
}

.hero .lens-ring {
  right: 7%;
  top: 19%;
  width: 580px;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, 0.025),
    inset 0 0 70px rgba(124, 58, 237, 0.2),
    0 0 90px rgba(236, 72, 153, 0.2);
}

.hero .ring-two {
  border-color: rgba(34, 211, 197, 0.2);
}

.hero .ring-three {
  border-color: rgba(255, 107, 74, 0.22);
}

.hero .flash {
  right: 8%;
  top: 34%;
  width: 250px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffffff,
    #f9a8d4,
    #5eead4,
    transparent
  );
  box-shadow:
    0 0 30px rgba(236, 72, 153, 0.6),
    0 0 55px rgba(34, 211, 197, 0.36);
}

.hero .vf-corner {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .vf-label {
  color: rgba(255, 255, 255, 0.72);
}

.hero .vf-label i {
  background: #ff4d6d;
  box-shadow:
    0 0 0 5px rgba(255, 77, 109, 0.13),
    0 0 20px rgba(255, 77, 109, 0.5);
  animation: heroRec 1.55s ease-in-out infinite;
}

@keyframes heroRec {
  50% {
    opacity: 0.38;
    transform: scale(0.75);
  }
}

.hero-grid {
  gap: clamp(38px, 5vw, 76px);
}

.hero-copy {
  padding: 30px 0 70px;
}

.hero .eyebrow {
  gap: 12px;
  padding: 10px 14px;
  color: #f5f3ff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.24),
    rgba(236, 72, 153, 0.18)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero .eyebrow span {
  background: #5eead4;
  box-shadow:
    0 0 0 5px rgba(94, 234, 212, 0.13),
    0 0 18px rgba(94, 234, 212, 0.65);
}

.hero h1 {
  max-width: 720px;
  margin: 26px 0 22px;
  font-size: clamp(58px, 6.6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.072em;
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(4, 2, 17, 0.45);
}

.hero h1 strong {
  color: transparent;
  background: linear-gradient(
    100deg,
    #a78bfa 3%,
    #f472b6 43%,
    #fb7185 68%,
    #fb923c 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 14px 28px rgba(236, 72, 153, 0.2));
}

.hero-copy p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.hero .btn-large {
  min-height: 60px;
  padding-inline: 27px;
  border-radius: 18px;
}

.hero .btn-hot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(120deg, #7c3aed 0%, #db2777 52%, #ff6b4a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 34px rgba(124, 58, 237, 0.28),
    0 7px 18px rgba(236, 72, 153, 0.18);
}

/* The old moving shine reached the rounded edge and created a thin,
   uneven-looking frame. Keep the button surface clean instead. */
.hero .btn-hot::after {
  display: none;
}

.hero .btn-hot:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 20px 42px rgba(124, 58, 237, 0.34),
    0 9px 24px rgba(236, 72, 153, 0.24);
}

/* Both hero actions use the same frame geometry. Their colors remain distinct. */
.hero .btn-hot,
.hero .btn-glass {
  border-radius: 18px;
}

.hero .btn-glass {
  color: #ffffff;
  border: 1px solid rgba(167, 139, 250, 0.48);
  background: linear-gradient(
    120deg,
    rgba(124, 58, 237, 0.16),
    rgba(34, 211, 197, 0.1)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.hero .btn-glass:hover {
  border-color: rgba(94, 234, 212, 0.65);
  background: linear-gradient(
    120deg,
    rgba(124, 58, 237, 0.27),
    rgba(34, 211, 197, 0.17)
  );
}

.hero .mini-proof {
  gap: 10px;
}

.hero .mini-proof span {
  min-height: 38px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.hero .mini-proof span:nth-child(1) svg {
  color: #c4b5fd;
}

.hero .mini-proof span:nth-child(2) svg {
  color: #5eead4;
}

.hero .mini-proof span:nth-child(3) svg {
  color: #fda4af;
}

.hero-device {
  min-height: 650px;
  perspective: 1200px;
}

.hero .phone-frame {
  position: relative;
  width: 336px;
  padding: 12px;
  border: 1px solid transparent;
  background:
    linear-gradient(#11101c, #11101c) padding-box,
    linear-gradient(145deg, #a78bfa, #f472b6 46%, #5eead4) border-box;
  box-shadow:
    0 40px 100px rgba(4, 2, 18, 0.62),
    0 0 0 7px rgba(255, 255, 255, 0.045),
    -24px 12px 80px rgba(124, 58, 237, 0.24),
    30px -10px 90px rgba(236, 72, 153, 0.18);
}

.hero .phone-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -13%;
  border-radius: 50%;
  background: conic-gradient(
    from 45deg,
    rgba(124, 58, 237, 0.42),
    rgba(236, 72, 153, 0.32),
    rgba(34, 211, 197, 0.32),
    rgba(124, 58, 237, 0.42)
  );
  filter: blur(42px);
  opacity: 0.76;
}

.hero .phone-screen {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(236, 72, 153, 0.14),
      transparent 28%
    ),
    linear-gradient(180deg, #171329, #0f0e19);
}

.hero .app-head span i {
  background: #5eead4;
  box-shadow: 0 0 13px rgba(94, 234, 212, 0.7);
}

.hero .memory {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(4, 2, 18, 0.18);
}

.hero .upload-strip {
  color: #24163b;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 245, 255, 0.96)
  );
  box-shadow: 0 18px 40px rgba(4, 2, 18, 0.22);
}

.hero .upload-strip button {
  color: #4c1d95;
  background: #f0e9ff;
  transition:
    transform 0.25s var(--ease),
    color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.hero .upload-strip button:nth-child(2) {
  color: #be185d;
  background: #fce7f3;
}

.hero .upload-strip button:nth-child(3) {
  color: #0f766e;
  background: #ccfbf1;
}

.hero .upload-strip button:hover {
  transform: translateY(-2px);
}

.hero .floating-card {
  color: #24163b;
  border-color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    rgba(248, 245, 255, 0.88)
  );
  box-shadow:
    0 22px 55px rgba(4, 2, 18, 0.32),
    0 0 0 1px rgba(167, 139, 250, 0.08);
}

.hero .card-left {
  left: -42px;
  top: 205px;
}

.hero .card-left img {
  box-shadow: 0 0 0 3px #f0e9ff;
}

.hero .card-left span,
.hero .card-right span {
  color: rgba(36, 22, 59, 0.62);
}

.hero .card-right {
  right: -22px;
  top: 302px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.97),
    rgba(236, 253, 245, 0.91)
  );
}

.hero .card-right strong {
  color: transparent;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero .film-strip {
  border-top-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      90deg,
      rgba(124, 58, 237, 0.25),
      rgba(236, 72, 153, 0.18),
      rgba(34, 211, 197, 0.2)
    ),
    #0d0a1d;
  box-shadow: 0 -20px 60px rgba(20, 9, 44, 0.34);
}

.hero .frame {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 10px 24px rgba(4, 2, 18, 0.26);
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 780px;
    padding-bottom: 10px;
  }

  .hero .lens-ring {
    right: -18%;
    top: 30%;
  }

  .hero-device {
    min-height: 700px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 112px;
    background:
      linear-gradient(
        150deg,
        rgba(18, 9, 49, 0.96),
        rgba(33, 14, 64, 0.89) 50%,
        rgba(8, 26, 39, 0.94)
      ),
      url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1200&q=80")
        center / cover;
  }

  .hero::after {
    bottom: 99px;
  }

  .hero-copy {
    padding: 8px 0 14px;
  }

  .hero .eyebrow {
    max-width: 100%;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(34px, 10.5vw, 67px);
    letter-spacing: -0.065em;
  }

  .hero .mini-proof {
    align-items: stretch;
  }

  .hero .mini-proof span {
    width: fit-content;
  }

  .hero-device {
    min-height: 660px;
  }

  .hero .phone-frame {
    width: min(100%, 310px);
  }

  .orb-violet {
    left: -40%;
  }

  .orb-pink {
    right: -32%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .color-orb,
  .hero .vf-label i {
    animation: none;
  }
}

/* =========================================================
   SNAPUP COLORFUL THEME V4
   This layer stays last so older warm/black rules cannot
   override the new page-wide palette.
   ========================================================= */
:root {
  --snap-violet: #7c3aed;
  --snap-pink: #ec4899;
  --snap-coral: #ff6b4a;
  --snap-cyan: #14b8a6;
  --snap-yellow: #fbbf24;
  --snap-ink: #21183a;
  --snap-gradient: linear-gradient(
    120deg,
    var(--snap-violet) 0%,
    var(--snap-pink) 48%,
    var(--snap-coral) 100%
  );
}

body {
  color: var(--snap-ink);
  background:
    radial-gradient(
      circle at 4% 20%,
      rgba(124, 58, 237, 0.12),
      transparent 22%
    ),
    radial-gradient(
      circle at 96% 42%,
      rgba(236, 72, 153, 0.11),
      transparent 24%
    ),
    #f8f5ff;
}

.btn-hot {
  color: #fff;
  background: var(--snap-gradient);
  box-shadow:
    0 16px 36px rgba(124, 58, 237, 0.25),
    0 8px 22px rgba(236, 72, 153, 0.18);
}

.section-kicker {
  color: var(--snap-pink);
}

.process {
  background:
    radial-gradient(circle at 8% 8%, rgba(34, 211, 197, 0.2), transparent 26%),
    radial-gradient(
      circle at 92% 82%,
      rgba(236, 72, 153, 0.18),
      transparent 27%
    ),
    linear-gradient(145deg, #f3edff 0%, #fff7fb 48%, #edfffc 100%);
}

.process .section-head h2,
.features .feature-top h2,
.pricing .section-head h2,
.preview h2,
.upload h2 {
  color: var(--snap-ink);
}

.step {
  border-color: rgba(124, 58, 237, 0.16);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 60px rgba(92, 53, 146, 0.12);
}

.step:nth-child(1) {
  border-top: 4px solid var(--snap-violet);
}

.step:nth-child(2) {
  border-top: 4px solid var(--snap-pink);
}

.step:nth-child(3) {
  border-top: 4px solid var(--snap-coral);
}

.step:nth-child(4) {
  border-top: 4px solid var(--snap-cyan);
}

.step:nth-child(1) .step-no,
.step:nth-child(1) .icon-box {
  color: #6d28d9;
  background: #ede9fe;
}

.step:nth-child(2) .step-no,
.step:nth-child(2) .icon-box {
  color: #be185d;
  background: #fce7f3;
}

.step:nth-child(3) .step-no,
.step:nth-child(3) .icon-box {
  color: #c2410c;
  background: #ffedd5;
}

.step:nth-child(4) .step-no,
.step:nth-child(4) .icon-box {
  color: #0f766e;
  background: #ccfbf1;
}

.features {
  padding: 96px 0 110px;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(251, 191, 36, 0.17),
      transparent 25%
    ),
    radial-gradient(
      circle at 12% 74%,
      rgba(124, 58, 237, 0.18),
      transparent 28%
    ),
    #fff;
}

.features::after {
  display: none;
}

.feature-top {
  align-items: center;
  margin-bottom: 32px;
}

.feature-top p {
  max-width: 470px;
  padding-left: 22px;
  border-left: 3px solid rgba(124, 58, 237, 0.28);
  color: rgba(33, 24, 58, 0.7);
}

.feature-studio {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 24px;
}

.feature-hero-card {
  min-height: 570px;
  padding: 36px;
  border-color: rgba(167, 139, 250, 0.28);
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(236, 72, 153, 0.34),
      transparent 27%
    ),
    radial-gradient(
      circle at 72% 88%,
      rgba(20, 184, 166, 0.24),
      transparent 30%
    ),
    linear-gradient(135deg, #24154e 0%, #421b5e 54%, #132c42 100%);
  box-shadow: 0 34px 90px rgba(64, 27, 112, 0.24);
}

.feature-hero-card h3 {
  max-width: 470px;
}

.feature-hero-card p {
  max-width: 450px;
}

.feature-hero-card .camera-chip {
  color: #fdf4ff;
  border-color: rgba(244, 114, 182, 0.38);
  background: rgba(236, 72, 153, 0.18);
}

.feature-lens-visual {
  right: -42px;
  bottom: -48px;
  width: 310px;
  opacity: 0.92;
}

.feature-lens-visual::before {
  inset: 28px;
}

.feature-lens-visual::after {
  inset: 60px;
}

.lens-core {
  width: 118px;
  height: 118px;
}

.lens-core span {
  width: 53px;
  height: 68px;
}

.lens-core span:nth-child(1) {
  transform: rotate(0deg) translate(3px, -62px);
}

.lens-core span:nth-child(2) {
  transform: rotate(60deg) translate(3px, -62px);
}

.lens-core span:nth-child(3) {
  transform: rotate(120deg) translate(3px, -62px);
}

.lens-core span:nth-child(4) {
  transform: rotate(180deg) translate(3px, -62px);
}

.lens-core span:nth-child(5) {
  transform: rotate(240deg) translate(3px, -62px);
}

.lens-core span:nth-child(6) {
  transform: rotate(300deg) translate(3px, -62px);
}

.focus-box {
  width: 112px;
  height: 112px;
}

.bento-card {
  min-height: 196px;
  padding: 28px;
  border-color: rgba(124, 58, 237, 0.13);
  background: #fff;
  box-shadow: 0 18px 48px rgba(66, 37, 112, 0.11);
}

.bento-card:hover {
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 24px 58px rgba(66, 37, 112, 0.15);
}

.bento-card h3 {
  color: #21183a;
}

.bento-card p {
  color: rgba(33, 24, 58, 0.68);
}

.bento-icon {
  margin-bottom: 18px;
  border-color: rgba(33, 24, 58, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(66, 37, 112, 0.09);
}

.bento-card-wide {
  min-height: 220px;
  grid-template-columns: minmax(0, 1fr) 200px;
}

.mini-memory-stack {
  min-height: 150px;
}

.mini-photo {
  width: 126px;
  height: 98px;
}

.bento-card:nth-child(1) {
  background: linear-gradient(145deg, #f3e8ff, #fff);
}

.bento-card:nth-child(2) {
  background: linear-gradient(145deg, #fce7f3, #fff);
}

.bento-card:nth-child(3) {
  background: linear-gradient(145deg, #fff1eb, #fff);
}

.bento-card:nth-child(4) {
  background: linear-gradient(145deg, #ccfbf1, #fff);
}

.bento-card:nth-child(5) {
  background: linear-gradient(145deg, #fef3c7, #fff);
}

.bento-card:nth-child(1) .bento-icon {
  color: #6d28d9;
  background: #ede9fe;
}

.bento-card:nth-child(2) .bento-icon {
  color: #be185d;
  background: #fce7f3;
}

.bento-card:nth-child(3) .bento-icon {
  color: #ea580c;
  background: #ffedd5;
}

.bento-card:nth-child(4) .bento-icon {
  color: #0f766e;
  background: #ccfbf1;
}

.bento-card:nth-child(5) .bento-icon {
  color: #b45309;
  background: #fef3c7;
}

@media (max-width: 1100px) {
  .feature-studio {
    grid-template-columns: 1fr;
  }

  .feature-hero-card {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .features {
    padding: 72px 0;
  }

  .feature-top p {
    padding-left: 16px;
  }

  .feature-hero-card {
    min-height: auto;
    padding: 24px 24px 250px;
  }

  .feature-lens-visual {
    right: 50%;
    bottom: -66px;
    width: 280px;
    transform: translateX(50%);
  }

  .bento-card {
    min-height: auto;
    padding: 22px;
  }

  .bento-card-wide {
    min-height: 350px;
    grid-template-columns: 1fr;
  }
}

.pricing {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(124, 58, 237, 0.2),
      transparent 24%
    ),
    radial-gradient(
      circle at 90% 86%,
      rgba(255, 107, 74, 0.18),
      transparent 26%
    ),
    linear-gradient(145deg, #eee8ff 0%, #fff5fb 50%, #fff8ef 100%);
}

.pricing-card:nth-child(1) {
  border-top: 5px solid var(--snap-cyan);
}

.pricing-card:nth-child(2) {
  border-top: 5px solid var(--snap-pink);
}

.pricing-card:nth-child(3) {
  border-top: 5px solid var(--snap-coral);
}

.pricing-card-featured {
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--snap-gradient) border-box;
  border: 2px solid transparent;
  box-shadow:
    0 32px 85px rgba(124, 58, 237, 0.2),
    0 18px 45px rgba(236, 72, 153, 0.13);
}

.preview {
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(34, 211, 197, 0.18),
      transparent 25%
    ),
    radial-gradient(
      circle at 15% 84%,
      rgba(236, 72, 153, 0.17),
      transparent 28%
    ),
    linear-gradient(140deg, #f8f5ff, #effffc);
}

.event-card {
  border: 1px solid rgba(124, 58, 237, 0.18);
  background: linear-gradient(145deg, #fff, #faf7ff);
  box-shadow: 0 30px 80px rgba(74, 38, 129, 0.17);
}

.code-box {
  color: #6d28d9;
  border-color: rgba(124, 58, 237, 0.23);
  background: #f1eaff;
}

.upload {
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(255, 107, 74, 0.18),
      transparent 23%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(124, 58, 237, 0.2),
      transparent 27%
    ),
    linear-gradient(140deg, #fff7f3 0%, #fff 45%, #f3edff 100%);
}

.create-event-launch-card,
.upload-card {
  border-color: rgba(124, 58, 237, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 75px rgba(78, 42, 132, 0.14);
}

.create-event-launch-icon {
  color: #fff;
  background: var(--snap-gradient);
  box-shadow: 0 18px 40px rgba(236, 72, 153, 0.24);
}

.drop-zone {
  border-color: rgba(124, 58, 237, 0.3);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(236, 72, 153, 0.12),
      transparent 45%
    ),
    #faf7ff;
}

.upload-options button:nth-child(1) {
  color: #6d28d9;
  background: #ede9fe;
}

.upload-options button:nth-child(2) {
  color: #be185d;
  background: #fce7f3;
}

.upload-options button:nth-child(3) {
  color: #0f766e;
  background: #ccfbf1;
}

.final-cta {
  background:
    radial-gradient(
      circle at 12% 24%,
      rgba(167, 139, 250, 0.38),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 72%,
      rgba(34, 211, 197, 0.27),
      transparent 26%
    ),
    linear-gradient(120deg, #1d1242 0%, #4a185e 52%, #17334c 100%);
}

.final-cta-inner {
  border-color: rgba(244, 114, 182, 0.3);
  background: linear-gradient(
    125deg,
    rgba(124, 58, 237, 0.22),
    rgba(236, 72, 153, 0.16),
    rgba(20, 184, 166, 0.14)
  );
}

@media (max-width: 720px) {
  .process,
  .features,
  .pricing,
  .preview,
  .upload {
    background-attachment: scroll;
  }
}

/* =========================================================
   SNAPUP PROCESS — isolated component
   All selectors are scoped to prevent styles leaking into
   the logo, navigation, hero, or other page sections.
   ========================================================= */
.snap-process {
  --process-ink: #21183a;
  --process-muted: #6f6781;
  --process-violet: #7c3aed;
  --process-pink: #ec4899;
  --process-coral: #ff6b4a;
  --process-cyan: #14b8a6;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0;
  color: var(--process-ink);
  background:
    linear-gradient(rgba(124, 58, 237, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.045) 1px, transparent 1px),
    #faf8ff;
  background-size: 40px 40px;
}

.snap-process::before,
.snap-process::after {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  content: "";
}

.snap-process::before {
  top: -210px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.18),
    rgba(124, 58, 237, 0) 70%
  );
}

.snap-process::after {
  right: -170px;
  bottom: -230px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.16),
    rgba(20, 184, 166, 0) 70%
  );
}

.snap-process__glow {
  position: absolute;
  z-index: -1;
  top: 24%;
  left: 48%;
  width: 360px;
  height: 260px;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.09);
  filter: blur(80px);
  transform: translateX(-50%);
  pointer-events: none;
}

.snap-process__container {
  position: relative;
}

.snap-process__header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 48px;
}

.snap-process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--process-violet);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.snap-process__eyebrow i {
  width: 9px;
  height: 9px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--process-pink);
  box-shadow:
    0 0 0 4px rgba(236, 72, 153, 0.14),
    0 0 18px rgba(236, 72, 153, 0.45);
}

.snap-process__heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--process-ink);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.snap-process__heading h2 span {
  display: inline-block;
  padding-bottom: 0.08em;
  color: var(--process-violet);
  background: linear-gradient(
    100deg,
    var(--process-violet) 3%,
    var(--process-pink) 52%,
    var(--process-coral) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.snap-process__intro {
  max-width: 430px;
  margin: 0 0 6px;
  color: var(--process-muted);
  font-size: 16px;
  line-height: 1.75;
}

.snap-process__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(69, 46, 110, 0.13);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 40px 90px rgba(66, 39, 108, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.snap-process__panel::before {
  position: absolute;
  top: 0;
  left: 7%;
  width: 86%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 58, 237, 0.48),
    rgba(236, 72, 153, 0.48),
    transparent
  );
  content: "";
}

.snap-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 22px;
  list-style: none;
}

.snap-process__steps::before {
  position: absolute;
  right: 3%;
  bottom: 20px;
  left: 3%;
  z-index: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.35),
    rgba(236, 72, 153, 0.34),
    rgba(255, 107, 74, 0.32),
    rgba(20, 184, 166, 0.35)
  );
  content: "";
}

.snap-process__step {
  --step-color: var(--process-violet);
  --step-soft: #ede9fe;
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 360px;
  flex-direction: column;
  padding: 24px 22px 22px;
  border: 1px solid transparent;
  border-radius: 22px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.snap-process__step:nth-child(2) {
  --step-color: var(--process-pink);
  --step-soft: #fce7f3;
}

.snap-process__step:nth-child(3) {
  --step-color: var(--process-coral);
  --step-soft: #fff0eb;
}

.snap-process__step:nth-child(4) {
  --step-color: var(--process-cyan);
  --step-soft: #dff9f5;
}

.snap-process__step:hover {
  z-index: 2;
  border-color: color-mix(in srgb, var(--step-color) 22%, transparent);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 42px rgba(67, 42, 103, 0.1);
  transform: translateY(-6px);
}

.snap-process__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.snap-process__number {
  color: var(--step-color);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.snap-process__tag {
  padding: 7px 10px;
  border: 1px solid rgba(55, 43, 82, 0.08);
  border-radius: 999px;
  color: #6e647f;
  background: rgba(255, 255, 255, 0.76);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.snap-process__icon {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid color-mix(in srgb, var(--step-color) 17%, transparent);
  border-radius: 23px;
  color: var(--step-color);
  background: var(--step-soft);
  box-shadow:
    0 14px 28px color-mix(in srgb, var(--step-color) 13%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.snap-process__icon::after {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 21px;
  height: 21px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: var(--step-color);
  box-shadow: 0 5px 12px color-mix(in srgb, var(--step-color) 26%, transparent);
  content: "";
}

.snap-process__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.snap-process__step h3 {
  margin: 0 0 10px;
  color: var(--process-ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.snap-process__step > p {
  margin: 0 0 22px;
  color: var(--process-muted);
  font-size: 14px;
  line-height: 1.65;
}

.snap-process__result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: color-mix(in srgb, var(--step-color) 78%, #21183a);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.snap-process__result i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--step-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--step-color) 12%, transparent);
}

.snap-process__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 28px;
  border-top: 1px solid rgba(69, 46, 110, 0.1);
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.055),
    rgba(236, 72, 153, 0.035),
    rgba(20, 184, 166, 0.045)
  );
}

.snap-process__promise {
  display: flex;
  align-items: center;
  gap: 13px;
}

.snap-process__promise-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--process-violet);
  box-shadow: 0 9px 20px rgba(124, 58, 237, 0.24);
}

.snap-process__promise-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.snap-process__promise p {
  margin: 0;
  color: var(--process-muted);
  font-size: 12px;
  line-height: 1.55;
}

.snap-process__promise strong {
  display: block;
  color: var(--process-ink);
  font-size: 13px;
}

.snap-process__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(124, 58, 237, 0.17);
  border-radius: 999px;
  color: var(--process-violet);
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.snap-process__link span {
  font-size: 16px;
  line-height: 1;
  transition: transform 180ms ease;
}

.snap-process__link:hover {
  border-color: var(--process-violet);
  color: #ffffff;
  background: var(--process-violet);
  transform: translateY(-2px);
}

.snap-process__link:hover span {
  transform: translateX(3px);
}

@media (max-width: 1050px) {
  .snap-process {
    padding: 92px 0;
  }

  .snap-process__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .snap-process__intro {
    max-width: 620px;
  }

  .snap-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .snap-process__steps::before {
    display: none;
  }

  .snap-process__step {
    min-height: 330px;
    border-color: rgba(69, 46, 110, 0.08);
    background: rgba(255, 255, 255, 0.62);
  }
}

@media (max-width: 680px) {
  .snap-process {
    padding: 72px 0;
    background-size: 30px 30px;
  }

  .snap-process__header {
    margin-bottom: 30px;
  }

  .snap-process__heading h2 {
    font-size: clamp(37px, 11.5vw, 52px);
    line-height: 1.01;
  }

  .snap-process__intro {
    font-size: 15px;
    line-height: 1.65;
  }

  .snap-process__panel {
    border-radius: 24px;
  }

  .snap-process__steps {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .snap-process__step {
    min-height: 0;
    padding: 22px 20px;
    border-radius: 18px;
  }

  .snap-process__step:hover {
    transform: none;
  }

  .snap-process__icon {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .snap-process__icon svg {
    width: 30px;
    height: 30px;
  }

  .snap-process__result {
    margin-top: 2px;
  }

  .snap-process__footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }

  .snap-process__link {
    justify-content: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .snap-process__step,
  .snap-process__link,
  .snap-process__link span {
    transition: none;
  }
}

/* =========================================================
   HOW SNAPUP WORKS — unified process, preview and upload demo
   ========================================================= */
.product-flow {
  --flow-ink: #20162f;
  --flow-muted: #71687f;
  --flow-violet: #7c3aed;
  --flow-pink: #ec4899;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0;
  color: var(--flow-ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(124, 58, 237, 0.1), transparent 27%),
    radial-gradient(circle at 94% 80%, rgba(34, 211, 197, 0.1), transparent 27%),
    linear-gradient(rgba(124, 58, 237, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.035) 1px, transparent 1px),
    #fbf9ff;
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
}

.product-flow__header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 46px;
}

.product-flow__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--flow-violet);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.product-flow__eyebrow i {
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--flow-pink);
  box-shadow:
    0 0 0 4px rgba(236, 72, 153, 0.13),
    0 0 18px rgba(236, 72, 153, 0.42);
}

.product-flow__header h2 {
  max-width: 820px;
  margin: 0;
  color: var(--flow-ink);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.product-flow__header h2 span {
  display: inline;
  color: var(--flow-violet);
  background: linear-gradient(100deg, #7c3aed, #ec4899 58%, #ff6b4a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-flow__header > p {
  max-width: 410px;
  margin: 0 0 6px;
  color: var(--flow-muted);
  font-size: 16px;
  line-height: 1.75;
}

.product-flow__shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.35fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(69, 46, 110, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 42px 100px rgba(65, 39, 105, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.product-flow__steps {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid rgba(69, 46, 110, 0.1);
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.055), transparent 45%),
    rgba(255, 255, 255, 0.58);
}

.product-flow__step {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 19px 16px;
  border: 1px solid transparent;
  border-radius: 18px;
  color: var(--flow-ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-flow__step:not(:last-of-type)::after {
  position: absolute;
  bottom: -5px;
  left: 36px;
  width: 1px;
  height: 10px;
  background: rgba(124, 58, 237, 0.18);
  content: "";
}

.product-flow__step:hover {
  background: rgba(124, 58, 237, 0.045);
  transform: translateX(3px);
}

.product-flow__step.active {
  border-color: rgba(124, 58, 237, 0.17);
  background: #fff;
  box-shadow: 0 14px 32px rgba(73, 43, 111, 0.1);
}

.product-flow__step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(124, 58, 237, 0.13);
  border-radius: 13px;
  color: var(--flow-violet);
  background: #f1ebff;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
}

.product-flow__step:nth-child(2) .product-flow__step-number {
  border-color: rgba(236, 72, 153, 0.14);
  color: #d93787;
  background: #fce7f3;
}

.product-flow__step:nth-child(3) .product-flow__step-number {
  border-color: rgba(255, 107, 74, 0.15);
  color: #e95435;
  background: #fff0eb;
}

.product-flow__step:nth-child(4) .product-flow__step-number {
  border-color: rgba(20, 184, 166, 0.16);
  color: #0f9b8d;
  background: #def8f4;
}

.product-flow__step-copy {
  display: grid;
  gap: 5px;
}

.product-flow__step-copy strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.product-flow__step-copy small {
  color: var(--flow-muted);
  font-size: 11px;
  line-height: 1.45;
}

.product-flow__step-arrow {
  color: #9a8fac;
  font-size: 18px;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.product-flow__step.active .product-flow__step-arrow {
  color: var(--flow-violet);
  transform: translateX(3px);
}

.product-flow__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding: 26px 8px 4px;
}

.product-flow__join {
  color: var(--flow-violet);
  font-size: 12px;
  font-weight: 800;
}

.product-flow__join:hover {
  color: var(--flow-pink);
}

.product-flow__demo {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  background:
    radial-gradient(circle at 75% 10%, rgba(236, 72, 153, 0.13), transparent 28%),
    linear-gradient(145deg, #241936, #171126 68%, #211a3c);
}

.product-flow__browser {
  display: flex;
  min-height: 560px;
  flex: 1;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: #f8f6fb;
  box-shadow: 0 28px 70px rgba(8, 5, 17, 0.36);
}

.product-flow__browser-bar {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(59, 40, 91, 0.09);
  color: #82778f;
  background: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
}

.product-flow__browser-bar > span {
  overflow: hidden;
  padding: 8px 14px;
  border: 1px solid #eee8f5;
  border-radius: 999px;
  background: #faf8fc;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-flow__browser-bar > b {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #655b71;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.product-flow__browser-bar > b i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ec4899;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
  animation: flowLivePulse 1.8s ease-in-out infinite;
}

.product-flow__browser-dots {
  display: flex;
  gap: 6px;
}

.product-flow__browser-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d0df;
}

.product-flow__browser-dots i:first-child {
  background: #ff7b70;
}

.product-flow__browser-dots i:nth-child(2) {
  background: #ffc85c;
}

.product-flow__browser-dots i:last-child {
  background: #57cf8f;
}

@keyframes flowLivePulse {
  50% {
    box-shadow: 0 0 0 7px rgba(236, 72, 153, 0);
    opacity: 0.7;
  }
}

.product-flow__screen {
  min-height: 508px;
  flex: 1;
  padding: 34px;
  opacity: 0;
  transform: translateY(8px);
}

.product-flow__screen.active {
  opacity: 1;
  transform: translateY(0);
  animation: flowPanelIn 260ms ease both;
}

@keyframes flowPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flow-screen-heading > span {
  display: block;
  margin-bottom: 8px;
  color: var(--flow-violet);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flow-screen-heading h3 {
  margin: 0 0 8px;
  color: var(--flow-ink);
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.flow-screen-heading p {
  margin: 0;
  color: var(--flow-muted);
  font-size: 12px;
  line-height: 1.55;
}

.flow-create {
  max-width: 520px;
  margin: 10px auto 0;
}

.flow-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #ece6f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(62, 40, 91, 0.09);
}

.flow-form label {
  display: grid;
  gap: 7px;
  color: #84798f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flow-form label > span {
  padding: 13px 14px;
  border: 1px solid #e9e3ee;
  border-radius: 11px;
  color: #332742;
  background: #fbfafc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.flow-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.flow-form-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  padding: 5px 0;
  color: #63596f;
  font-size: 10px;
  font-weight: 600;
}

.flow-form-checks span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.flow-form-checks i {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background: #7c3aed;
  font-size: 9px;
  font-style: normal;
}

.flow-primary-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(100deg, #7c3aed, #9c35c9, #ec4899);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.2);
  font-size: 11px;
  font-weight: 800;
}

.flow-share {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(250px, 1fr);
  align-items: center;
  gap: 30px;
  min-height: 430px;
}

.flow-event-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 330px;
  padding: 25px;
  border: 1px solid #e9e2ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 25px 60px rgba(61, 39, 91, 0.12);
  text-align: center;
}

.flow-event-card > div:first-child {
  display: grid;
  gap: 4px;
}

.flow-event-card b {
  color: #2b2038;
  font-size: 13px;
}

.flow-event-card small {
  color: #8b8095;
  font-size: 9px;
}

.flow-event-card .qr-code {
  width: 160px;
  height: 160px;
  padding: 8px;
  border-radius: 14px;
  background-color: #fff;
}

.flow-code-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px 16px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e9e2f0;
  border-radius: 13px;
  background: #faf8fc;
  text-align: left;
}

.flow-code-box span {
  grid-column: 1;
  color: #94899f;
  font-family: "JetBrains Mono", monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.flow-code-box strong {
  grid-column: 1;
  color: #30223f;
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.flow-code-box button {
  grid-row: 1 / span 2;
  grid-column: 2;
  padding: 9px 10px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: #7c3aed;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.flow-upload {
  max-width: 540px;
  margin: 0 auto;
}

.flow-upload .drop-zone {
  min-height: 180px;
  margin-top: 20px;
  border-color: rgba(124, 58, 237, 0.24);
  background: linear-gradient(145deg, #fff, #f7f2ff);
}

.flow-upload .upload-options {
  margin-top: 12px;
}

.flow-upload .message-box,
.flow-upload .progress-box {
  margin-top: 12px;
}

.flow-gallery__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.flow-gallery__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 999px;
  color: #0d8f82;
  background: #e9fbf8;
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.flow-gallery__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #14b8a6;
}

.flow-gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 150px 150px;
  gap: 10px;
  margin-top: 24px;
}

.flow-memory {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background-color: #d8d0e2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.flow-memory::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 54%, rgba(22, 14, 34, 0.72));
  content: "";
}

.flow-memory > span {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  left: 11px;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
}

.memory-one {
  grid-column: span 2;
  background:
    radial-gradient(circle at 52% 37%, #ffe7d7 0 12%, transparent 13%),
    linear-gradient(135deg, #c994e8, #7240ad);
}

.memory-two {
  grid-column: span 4;
  background:
    radial-gradient(circle at 64% 35%, #ffd6c1 0 10%, transparent 11%),
    radial-gradient(circle at 43% 42%, #ffe6cf 0 12%, transparent 13%),
    linear-gradient(120deg, #ff9e8c, #a83b76);
}

.memory-three {
  grid-column: span 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: linear-gradient(135deg, #7040bd, #c73f94);
}

.memory-three::after {
  display: none;
}

.memory-three b {
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
}

.memory-four {
  grid-column: span 1;
  background: linear-gradient(145deg, #46c9b8, #176e77);
}

.memory-five {
  grid-column: span 2;
  background:
    radial-gradient(circle at 50% 42%, #ffe1ca 0 14%, transparent 15%),
    linear-gradient(135deg, #ffbd72, #e65d61);
}

.product-flow__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  font-weight: 700;
}

.product-flow__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.product-flow__meta i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22d3c5;
  box-shadow: 0 0 9px rgba(34, 211, 197, 0.55);
}

@media (max-width: 1050px) {
  .product-flow {
    padding: 92px 0;
  }

  .product-flow__header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-flow__header > p {
    max-width: 650px;
  }

  .product-flow__shell {
    grid-template-columns: 1fr;
  }

  .product-flow__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(69, 46, 110, 0.1);
  }

  .product-flow__step:not(:last-of-type)::after {
    display: none;
  }

  .product-flow__actions {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding-top: 14px;
  }
}

@media (max-width: 680px) {
  .product-flow {
    padding: 72px 0;
  }

  .product-flow__header {
    margin-bottom: 30px;
  }

  .product-flow__header h2 {
    font-size: clamp(37px, 11vw, 50px);
    line-height: 1;
  }

  .product-flow__header > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .product-flow__shell {
    border-radius: 24px;
  }

  .product-flow__steps {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .product-flow__step {
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    padding: 14px 12px;
  }

  .product-flow__step-number {
    width: 38px;
    height: 38px;
  }

  .product-flow__step-copy small {
    display: none;
  }

  .product-flow__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 12px 4px 4px;
  }

  .product-flow__actions .btn,
  .product-flow__join {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .product-flow__demo {
    padding: 12px;
  }

  .product-flow__browser {
    min-height: 540px;
    border-radius: 18px;
  }

  .product-flow__browser-bar {
    grid-template-columns: 48px 1fr 48px;
    padding: 0 12px;
  }

  .product-flow__browser-bar > b {
    font-size: 0;
  }

  .product-flow__screen {
    min-height: 488px;
    padding: 24px 18px;
  }

  .flow-form-row,
  .flow-share {
    grid-template-columns: 1fr;
  }

  .flow-share {
    gap: 20px;
  }

  .flow-event-card {
    width: 100%;
    max-width: none;
    padding: 18px;
  }

  .flow-event-card .qr-code {
    width: 130px;
    height: 130px;
  }

  .flow-gallery__top {
    display: grid;
  }

  .flow-gallery__grid {
    grid-template-rows: 128px 128px;
  }

  .memory-three b {
    font-size: 11px;
  }

  .product-flow__meta {
    gap: 8px 13px;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-flow__step,
  .product-flow__step-arrow,
  .product-flow__screen.active,
  .product-flow__browser-bar > b i {
    animation: none;
    transition: none;
  }
}

/* SITE FOOTER */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 76px 0 0;
  color: rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 8% 5%, rgba(124, 58, 237, 0.18), transparent 30%),
    radial-gradient(circle at 92% 90%, rgba(34, 211, 197, 0.1), transparent 27%),
    #120d22;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 58, 237, 0.8),
    rgba(236, 72, 153, 0.75),
    rgba(34, 211, 197, 0.7),
    transparent
  );
  content: "";
}

.site-footer__glow {
  position: absolute;
  top: -120px;
  left: 12%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.08);
  filter: blur(80px);
  pointer-events: none;
}

.site-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.65fr) repeat(3, minmax(140px, 1fr));
  gap: 54px;
  padding-bottom: 62px;
}

.site-footer__brand {
  max-width: 355px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.site-footer__brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
}

.site-footer__brand-mark svg {
  display: block;
  width: 44px;
  height: 44px;
}

.site-footer__brand-mark i {
  position: absolute;
  top: 2px;
  right: 1px;
  width: 8px;
  height: 8px;
  border: 2px solid #120d22;
  border-radius: 50%;
  background: #ff426d;
  box-shadow: 0 0 10px rgba(255, 66, 109, 0.7);
}

.site-footer__logo > span:last-child {
  display: flex;
  align-items: baseline;
  font-size: 19px;
  letter-spacing: -0.04em;
}

.site-footer__logo strong {
  font-weight: 800;
}

.site-footer__logo em {
  color: #ff5d8f;
  font-style: normal;
  font-weight: 800;
}

.site-footer__brand > p {
  max-width: 330px;
  margin-top: 21px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
}

.site-footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.site-footer__column h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer__column a {
  position: relative;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.site-footer__column p {
  max-width: 220px;
  margin: 1px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
  line-height: 1.65;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.site-footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  text-decoration: none;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: #fff;
}

@media (max-width: 960px) {
  .site-footer__grid {
    grid-template-columns: minmax(260px, 1.5fr) repeat(2, 1fr);
    gap: 44px 34px;
  }

  .site-footer__column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding-top: 56px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
    padding-bottom: 42px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__column:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 420px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand,
  .site-footer__column:last-child {
    grid-column: auto;
  }
}

/* =========================================================
   MOBILE POLISH
   Keeps the current design language while making the home page
   calmer, more compact and easier to use on narrow screens.
   ========================================================= */
@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    padding-top: max(8px, env(safe-area-inset-top));
  }

  .nav-shell {
    width: calc(100% - 20px);
    min-height: 62px;
    gap: 8px;
    padding: 7px 8px 7px 10px;
    border-radius: 18px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
    padding: 6px 8px 6px 5px;
  }

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

  .brand-text {
    font-size: 18px;
  }

  .burger {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 13px;
  }

  .mobile-menu {
    top: calc(max(8px, env(safe-area-inset-top)) + 70px);
    right: 10px;
    left: 10px;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    padding: 12px;
    border-radius: 20px;
  }

  .mobile-menu a {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 88px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    padding-top: 4px;
  }

  .hero .eyebrow {
    max-width: 100%;
    padding: 8px 10px;
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: 0.055em;
  }

  .hero h1 {
    margin: 20px 0 18px;
    font-size: clamp(33px, 10vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.06em;
  }

  .hero-title__line,
  .hero-title__line:nth-child(2) {
    width: max-content;
    max-width: 100%;
    margin-left: 0;
    white-space: nowrap;
  }

  .hero-title__highlight {
    padding-bottom: 0.12em;
  }

  .hero-copy p {
    max-width: 34rem;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-buttons {
    gap: 10px;
    margin: 26px 0 22px;
  }

  .hero-buttons .btn {
    min-height: 52px;
    border-radius: 14px;
  }

  .hero .mini-proof {
    gap: 10px;
    font-size: 13px;
  }

  .hero-device {
    min-height: 590px;
  }

  .hero .phone-frame {
    width: min(88vw, 286px);
    min-height: 570px;
    border-radius: 40px;
  }

  .hero .phone-screen {
    min-height: 500px;
  }

  .product-flow,
  .features,
  .pricing {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .product-flow__shell,
  .feature-hero-card,
  .pricing-card {
    border-radius: 22px;
  }

  .product-flow__header h2,
  .section-head h2 {
    font-size: clamp(32px, 9.5vw, 43px);
    line-height: 1.06;
  }

  .site-footer {
    padding-bottom: 62px;
  }
}

/* =========================================================
   HERO PROOF BADGES — MULTILINGUAL LAYOUT SAFETY
   Reserves space above the film strip and lets longer labels
   wrap inside their own badge without being cropped.
   ========================================================= */
.hero-grid {
  padding-bottom: 142px;
}

.hero-copy {
  padding-bottom: 0;
}

.hero .mini-proof {
  align-items: flex-start;
  row-gap: 10px;
  max-width: 100%;
}

.hero .mini-proof span {
  width: auto;
  max-width: 100%;
  min-height: 40px;
  height: auto;
  padding: 9px 13px;
  line-height: 1.25;
  white-space: normal;
}

.hero .mini-proof svg {
  flex: 0 0 21px;
}

@media (max-width: 1100px) {
  .hero-grid {
    padding-bottom: 136px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-bottom: 0;
  }

  .hero-grid {
    padding-bottom: 122px;
  }

  .hero .mini-proof {
    align-items: flex-start;
  }

  .hero .mini-proof span {
    width: fit-content;
    max-width: 100%;
  }
}

/* =========================================================
   MOBILE HERO V2
   Purpose-built first viewport instead of a scaled desktop hero.
   ========================================================= */
@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero {
    padding-top: 92px;
  }

  .hero-grid {
    gap: 18px;
    padding-bottom: 104px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero .eyebrow {
    min-height: 28px;
    padding: 7px 9px;
    gap: 8px;
    font-size: clamp(7.5px, 2.35vw, 9px);
    line-height: 1;
    letter-spacing: 0.045em;
    white-space: nowrap;
  }

  .hero .eyebrow span {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
  }

  .hero h1 {
    margin: 17px 0 14px;
    font-size: clamp(32px, 10vw, 42px);
    line-height: 0.96;
    letter-spacing: -0.065em;
  }

  .hero-title__line,
  .hero-title__line:nth-child(2) {
    width: fit-content;
  }

  html:is(
    [lang="de"],
    [lang="fr"],
    [lang="es"],
    [lang="it"],
    [lang="nl"],
    [lang="bg"],
    [lang="ro"],
    [lang="el"],
    [lang="sr"],
    [lang="hr"],
    [lang="bs"],
    [lang="sq"],
    [lang="mk"]
  ) .hero h1 {
    font-size: clamp(28px, 8.7vw, 36px);
  }

  .hero-copy p {
    max-width: none;
    font-size: 13.5px;
    line-height: 1.52;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 19px 0 15px;
  }

  .hero-buttons .btn {
    min-height: 46px;
    padding-inline: 18px;
    border-radius: 13px;
    font-size: 13px;
  }

  .hero-buttons .btn svg {
    font-size: 16px;
  }

  .hero .mini-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 7px;
    width: 100%;
  }

  .hero .mini-proof span {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 8px 5px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border-radius: 14px;
    font-size: clamp(9px, 2.6vw, 11px);
    line-height: 1.16;
    text-align: center;
  }

  .hero .mini-proof svg {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }

  .hero-device {
    min-height: 530px;
    margin-top: 2px;
  }

  .hero .phone-frame {
    width: min(78vw, 272px);
    min-height: 535px;
    border-radius: 38px;
  }

  .hero .phone-screen {
    min-height: 470px;
  }

  .hero .floating-card {
    display: none;
  }

  .hero .lens-ring {
    top: 48%;
    right: -74%;
    width: 500px;
    opacity: 0.72;
  }

  .hero .flash {
    display: none;
  }

  .viewfinder .vf-label,
  .viewfinder .vf-corner {
    display: none;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .hero h1 {
    font-size: clamp(30px, 9.8vw, 37px);
  }

  .hero-copy p {
    font-size: 13px;
  }

  .hero .mini-proof span {
    min-height: 56px;
    padding-inline: 4px;
    font-size: 9px;
  }
}

/* =========================================================
   MOBILE FIRST VIEW
   Keeps the complete primary action area above the fold and
   starts the product preview only after the opening screen.
   ========================================================= */
@media (max-width: 720px) {
  .site-header {
    padding-top: max(6px, env(safe-area-inset-top));
  }

  .nav-shell {
    width: calc(100% - 14px);
    min-height: 58px;
    padding: 5px 6px 5px 8px;
    border-radius: 16px;
  }

  .brand {
    gap: 6px;
    padding: 4px 5px 4px 3px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .brand-text {
    font-size: clamp(15px, 4.6vw, 18px);
  }

  .burger {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }

  .mobile-menu {
    top: calc(max(6px, env(safe-area-inset-top)) + 64px);
  }

  .hero {
    min-height: 100svh;
    padding-top: 74px;
    padding-bottom: 0;
  }

  .hero-grid {
    display: block;
    padding-bottom: 0;
  }

  .hero-copy {
    display: flex;
    min-height: calc(100svh - 74px);
    padding: 6px 0 14px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero .eyebrow {
    align-self: flex-start;
    min-height: 24px;
    padding: 6px 8px;
    font-size: clamp(6.7px, 2vw, 8.2px);
    letter-spacing: 0.035em;
  }

  .hero .eyebrow span {
    width: 7px;
    height: 7px;
    flex-basis: 7px;
  }

  .hero h1 {
    margin: 13px 0 10px;
    font-size: clamp(31px, 9.7vw, 39px);
    line-height: 0.94;
  }

  html:is(
    [lang="de"],
    [lang="fr"],
    [lang="es"],
    [lang="it"],
    [lang="nl"],
    [lang="bg"],
    [lang="ro"],
    [lang="el"],
    [lang="sr"],
    [lang="hr"],
    [lang="bs"],
    [lang="sq"],
    [lang="mk"]
  ) .hero h1 {
    font-size: clamp(26px, 8.15vw, 33px);
  }

  .hero-copy p {
    max-width: 33rem;
    font-size: clamp(11.5px, 3.35vw, 13px);
    line-height: 1.38;
  }

  .hero-buttons {
    gap: 7px;
    margin: 14px 0 11px;
  }

  .hero-buttons .btn {
    min-height: 39px;
    padding-inline: 14px;
    border-radius: 11px;
    font-size: 11.5px;
  }

  .hero-buttons .btn svg {
    width: 14px;
    height: 14px;
  }

  .hero .mini-proof {
    gap: 5px;
    margin-top: auto;
  }

  .hero .mini-proof span {
    min-height: 49px;
    padding: 6px 3px;
    gap: 4px;
    border-radius: 12px;
    font-size: clamp(7.6px, 2.25vw, 9.5px);
    line-height: 1.1;
  }

  .hero .mini-proof svg {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .hero-device {
    min-height: 560px;
    padding-top: 34px;
  }

  .hero::after {
    display: none;
  }

  .hero .film-strip {
    display: none;
  }
}

@media (max-width: 720px) and (min-height: 650px) {
  .hero-copy {
    min-height: calc(100svh - 74px);
    padding-bottom: 18px;
  }

  .hero .mini-proof {
    margin-top: 14px;
  }
}

@media (max-width: 380px) {
  .container {
    width: calc(100% - 24px);
  }

  .hero h1 {
    font-size: clamp(29px, 9.45vw, 36px);
  }

  .hero-copy p {
    font-size: 11.5px;
  }
}

@media (max-width: 720px) and (max-height: 600px) {
  .hero h1 {
    margin-block: 11px 8px;
    font-size: clamp(29px, 9.2vw, 36px);
  }

  .hero-copy p {
    font-size: 11.2px;
    line-height: 1.32;
  }

  .hero-buttons {
    margin-block: 11px 9px;
  }

  .hero-buttons .btn {
    min-height: 37px;
  }

  .hero .mini-proof span {
    min-height: 46px;
  }
}

/* =========================================================
   MOBILE HERO PROPORTIONS
   Final responsive scale for a balanced, touch-friendly first view.
   ========================================================= */
@media (max-width: 720px) {
  .container {
    width: calc(100% - 32px);
  }

  .site-header {
    padding-top: max(8px, env(safe-area-inset-top));
  }

  .nav-shell {
    width: calc(100% - 16px);
    min-height: 60px;
    padding: 6px 7px 6px 9px;
    gap: 8px;
    border-radius: 17px;
  }

  .brand {
    gap: 7px;
    padding: 4px 7px 4px 4px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: clamp(16px, 4.8vw, 19px);
  }

  .burger {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 82px;
  }

  .hero-copy {
    min-height: calc(100svh - 82px);
    padding: 4px 0 clamp(22px, 4svh, 38px);
  }

  .hero .eyebrow {
    min-height: 27px;
    padding: 7px 9px;
    gap: 7px;
    font-size: clamp(7.5px, 2.2vw, 9px);
    letter-spacing: 0.045em;
  }

  .hero h1 {
    margin: clamp(15px, 2.7svh, 22px) 0 13px;
    font-size: clamp(35px, 10.7vw, 43px);
    line-height: 0.96;
  }

  html:is(
    [lang="de"],
    [lang="fr"],
    [lang="es"],
    [lang="it"],
    [lang="nl"],
    [lang="bg"],
    [lang="ro"],
    [lang="el"],
    [lang="sr"],
    [lang="hr"],
    [lang="bs"],
    [lang="sq"],
    [lang="mk"]
  ) .hero h1 {
    font-size: clamp(29px, 8.8vw, 36px);
  }

  .hero-copy p {
    max-width: 36rem;
    font-size: clamp(13px, 3.8vw, 15px);
    line-height: 1.46;
  }

  .hero-buttons {
    gap: 9px;
    margin: clamp(17px, 2.8svh, 24px) 0 clamp(17px, 2.6svh, 22px);
  }

  .hero-buttons .btn {
    min-height: 47px;
    padding-inline: 18px;
    border-radius: 13px;
    font-size: clamp(12px, 3.45vw, 13.5px);
  }

  .hero-buttons .btn svg {
    width: 16px;
    height: 16px;
  }

  .hero .mini-proof {
    gap: 7px;
    margin-top: 0;
  }

  .hero .mini-proof span {
    min-height: 68px;
    padding: 9px 5px;
    gap: 6px;
    border-radius: 14px;
    font-size: clamp(8.7px, 2.55vw, 10.5px);
    line-height: 1.16;
  }

  .hero .mini-proof svg {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }

  .hero-device {
    padding-top: 42px;
  }
}

@media (max-width: 380px) {
  .container {
    width: calc(100% - 26px);
  }

  .hero h1 {
    font-size: clamp(33px, 10.4vw, 39px);
  }

  .hero-copy p {
    font-size: 13px;
  }

  .hero .mini-proof span {
    min-height: 64px;
    font-size: 8.5px;
  }
}

@media (max-width: 720px) and (max-height: 600px) {
  .hero {
    padding-top: 74px;
  }

  .hero-copy {
    min-height: calc(100svh - 74px);
    padding-bottom: 14px;
  }

  .hero h1 {
    margin-block: 11px 8px;
    font-size: clamp(31px, 9.5vw, 37px);
  }

  .hero-copy p {
    font-size: 11.5px;
    line-height: 1.34;
  }

  .hero-buttons {
    margin-block: 11px 10px;
  }

  .hero-buttons .btn {
    min-height: 40px;
  }

  .hero .mini-proof span {
    min-height: 51px;
    padding-block: 6px;
  }
}

/* =========================================================
   MOBILE FULL-SCREEN HERO
   The primary hero copy owns the complete opening viewport.
   Product previews and following sections begin after scrolling.
   ========================================================= */
@media (max-width: 720px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 74px;
  }

  .hero-grid {
    display: block;
    min-height: calc(100vh - 74px);
    min-height: calc(100svh - 74px);
    min-height: calc(100dvh - 74px);
    padding-bottom: 0;
  }

  .hero-copy {
    display: flex;
    box-sizing: border-box;
    min-height: calc(100vh - 74px);
    min-height: calc(100svh - 74px);
    min-height: calc(100dvh - 74px);
    padding: 8px 0 calc(70px + env(safe-area-inset-bottom));
    flex-direction: column;
  }

  .hero .mini-proof {
    margin-top: auto;
  }

  .hero-device {
    min-height: 560px;
    padding-top: 42px;
  }
}

@media (max-width: 720px) and (max-height: 620px) {
  .hero-copy {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .hero h1 {
    margin-block: 10px 7px;
  }

  .hero-buttons {
    margin-block: 10px 9px;
  }

  .hero .mini-proof span {
    min-height: 48px;
  }
}

/* =========================================================
   MOBILE HERO — FINAL VERTICAL COMPOSITION
   Keeps the opening message visually full while placing both
   primary actions in the lower, thumb-friendly part of the screen.
   ========================================================= */
@media (max-width: 720px) {
  .hero-copy {
    display: grid;
    grid-template-rows: auto auto auto minmax(18px, 1fr) auto auto;
    align-content: stretch;
    padding-top: clamp(9px, 1.8dvh, 15px);
    padding-bottom: calc(54px + env(safe-area-inset-bottom));
  }

  .hero .eyebrow {
    width: fit-content;
  }

  .hero h1 {
    margin: clamp(14px, 2.2dvh, 19px) 0 clamp(11px, 1.7dvh, 15px);
    font-size: clamp(39px, 11.8vw, 47px);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  html:is(
    [lang="de"],
    [lang="fr"],
    [lang="es"],
    [lang="it"],
    [lang="nl"],
    [lang="bg"],
    [lang="ro"],
    [lang="el"],
    [lang="sr"],
    [lang="hr"],
    [lang="bs"],
    [lang="sq"],
    [lang="mk"]
  ) .hero h1 {
    font-size: clamp(34px, 10.15vw, 41px);
    line-height: 0.96;
  }

  .hero-copy p {
    max-width: none;
    margin: 0;
    font-size: clamp(13.5px, 3.85vw, 15.5px);
    line-height: 1.47;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin: 0 0 14px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 18px;
    font-size: clamp(12.5px, 3.55vw, 14px);
  }

  .hero .mini-proof {
    margin-top: 0;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(37px, 11.4vw, 43px);
  }

  html:is(
    [lang="de"],
    [lang="fr"],
    [lang="es"],
    [lang="it"],
    [lang="nl"],
    [lang="bg"],
    [lang="ro"],
    [lang="el"],
    [lang="sr"],
    [lang="hr"],
    [lang="bs"],
    [lang="sq"],
    [lang="mk"]
  ) .hero h1 {
    font-size: clamp(32px, 9.85vw, 37px);
  }
}

@media (max-width: 720px) and (max-height: 650px) {
  .hero-copy {
    grid-template-rows: auto auto auto minmax(8px, 1fr) auto auto;
    padding-top: 6px;
    padding-bottom: calc(48px + env(safe-area-inset-bottom));
  }

  .hero h1 {
    margin-block: 9px 7px;
    font-size: clamp(31px, 9.6vw, 38px);
  }

  html:is(
    [lang="de"],
    [lang="fr"],
    [lang="es"],
    [lang="it"],
    [lang="nl"],
    [lang="bg"],
    [lang="ro"],
    [lang="el"],
    [lang="sr"],
    [lang="hr"],
    [lang="bs"],
    [lang="sq"],
    [lang="mk"]
  ) .hero h1 {
    font-size: clamp(27px, 8.25vw, 33px);
  }

  .hero-copy p {
    font-size: 11.5px;
    line-height: 1.34;
  }

  .hero-buttons {
    gap: 7px;
    margin-bottom: 9px;
  }

  .hero-buttons .btn {
    min-height: 39px;
    font-size: 11.5px;
  }

  .hero .mini-proof span {
    min-height: 47px;
  }
}

/*
 * Theme-independent brand mark.
 *
 * This deliberately uses a raster CSS background rather than an inline SVG or
 * an <img>. Theme rules can neither inherit a fill color into it nor apply the
 * dark image color-scheme treatment that caused the white circle.
 */
.brand-logo-fixed {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  background: transparent
    url("../icon/snapup-brand-mark-fixed-v3.png") center / contain no-repeat !important;
  color-scheme: only light !important;
  forced-color-adjust: none !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  isolation: isolate;
}

html[data-theme="dark"]
  :is(.brand-mark, .site-footer__brand-mark, .brand-logo-fixed) {
  background-color: transparent !important;
  color-scheme: only light !important;
  forced-color-adjust: none !important;
  filter: none !important;
}

/* Keep the mobile hero fully inside the viewport after enlarging its copy. */
@media (max-width: 720px) {
  .hero-grid,
  .hero-copy,
  .hero-message,
  .hero-buttons {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(43px, 13.2vw, 56px);
  }

  html:is(
    [lang="de"],
    [lang="fr"],
    [lang="es"],
    [lang="it"],
    [lang="nl"],
    [lang="bg"],
    [lang="ro"],
    [lang="el"],
    [lang="sr"],
    [lang="hr"],
    [lang="bs"],
    [lang="sq"],
    [lang="mk"]
  ) .hero h1 {
    font-size: clamp(35px, 10.8vw, 45px);
  }

  html[lang="ar"] .hero h1 {
    font-size: clamp(37px, 11.2vw, 47px);
  }

  .hero-title__line {
    max-width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(41px, 12.8vw, 49px);
  }
}

@media (max-width: 720px) and (max-height: 650px) {
  .hero h1 {
    font-size: clamp(34px, 10.2vw, 41px);
  }
}

/* =========================================================
   MOBILE HERO — EXACT FIRST-SCREEN PLACEMENT
   Message fills the large upper area; each action occupies its
   own full-width row below it. Desktop remains unchanged.
   ========================================================= */
@media (max-width: 720px) {
  .hero {
    min-height: 100dvh;
    padding-top: 76px;
  }

  .hero-grid,
  .hero-copy {
    min-height: calc(100dvh - 76px);
  }

  .hero-copy {
    display: grid;
    grid-template-rows:
      auto
      minmax(0, 1fr)
      auto
      auto;
    gap: 0;
    padding: 5px 0 calc(58px + env(safe-area-inset-bottom));
  }

  .hero .eyebrow {
    margin: 0 0 8px;
  }

  .hero-message {
    display: flex;
    min-height: 0;
    flex-direction: column;
    justify-content: center;
  }

  .hero h1 {
    margin: 0 0 clamp(14px, 2.2dvh, 20px);
    font-size: clamp(52px, 16vw, 66px);
    line-height: 0.92;
    letter-spacing: -0.05em;
  }

  .hero-copy p {
    max-width: none;
    margin: 0;
    font-size: clamp(16px, 4.45vw, 18px);
    line-height: 1.5;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 14px 0 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
    border-radius: 13px;
    font-size: clamp(12.5px, 3.55vw, 14px);
  }

  .hero .mini-proof {
    margin: 0;
  }

  html:is(
    [lang="de"],
    [lang="fr"],
    [lang="es"],
    [lang="it"],
    [lang="nl"],
    [lang="bg"],
    [lang="ro"],
    [lang="el"],
    [lang="sr"],
    [lang="hr"],
    [lang="bs"],
    [lang="sq"],
    [lang="mk"]
  ) .hero h1 {
    font-size: clamp(41px, 12.4vw, 50px);
    line-height: 0.95;
  }

  html[lang="ar"] .hero h1 {
    font-size: clamp(43px, 12.8vw, 52px);
  }

  .hero-device {
    padding-top: 38px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(47px, 14.5vw, 55px);
  }

  .hero-copy p {
    font-size: clamp(14.5px, 4.15vw, 16px);
  }
}

@media (max-width: 720px) and (max-height: 650px) {
  .hero {
    padding-top: 70px;
  }

  .hero-grid,
  .hero-copy {
    min-height: calc(100dvh - 70px);
  }

  .hero-copy {
    padding-top: 3px;
    padding-bottom: calc(50px + env(safe-area-inset-bottom));
  }

  .hero .eyebrow {
    margin-bottom: 5px;
  }

  .hero h1 {
    margin-bottom: 8px;
    font-size: clamp(35px, 10.5vw, 42px);
  }

  .hero-copy p {
    font-size: 13px;
    line-height: 1.38;
  }

  .hero-buttons {
    gap: 7px;
    margin: 8px 0 7px;
  }

  .hero-buttons .btn {
    min-height: 39px;
    font-size: 11.5px;
  }

  .hero .mini-proof span {
    min-height: 47px;
  }
}

/* Homepage hero buttons: remove the visible outer frame. */
.hero-buttons .btn {
  border: 0 !important;
}

.hero-buttons .btn-glass,
.hero-buttons .btn-ghost {
  border-color: transparent !important;
}
