:root {
  --bg: #050814;
  --bg-2: #0b1630;
  --surface: rgba(10, 18, 38, 0.72);
  --surface-strong: rgba(7, 12, 26, 0.86);
  --border: rgba(126, 178, 255, 0.22);
  --text: #eef4ff;
  --muted: #b3bfd8;
  --blue: #69c9ff;
  --cyan: #8ff0ff;
  --pink: #ff69c7;
  --violet: #8f6bff;
  --gold: #f4c86c;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(86, 170, 255, 0.16), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(255, 105, 199, 0.14), transparent 26%),
    radial-gradient(circle at 50% 80%, rgba(143, 107, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #030611 0%, #071121 40%, #050814 100%);
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 18% 24%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1.5px 1.5px at 62% 14%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1.8px 1.8px at 80% 40%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1.4px 1.4px at 30% 66%, rgba(255,255,255,0.3), transparent 60%),
    radial-gradient(2px 2px at 72% 78%, rgba(255,255,255,0.28), transparent 60%);
  opacity: 0.9;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(3, 6, 17, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(105, 201, 255, 0.35);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 32px;
  align-items: center;
}

.glass {
  background: linear-gradient(180deg, rgba(11, 22, 48, 0.76), rgba(5, 10, 22, 0.84));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-copy {
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -170px;
  background: radial-gradient(circle, rgba(105, 201, 255, 0.18), transparent 68%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 0 18px rgba(255, 105, 199, 0.45);
}

h1 {
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  line-height: 0.98;
  margin: 0 0 20px;
  letter-spacing: -0.04em;
}

.gradient-text {
  background: linear-gradient(90deg, #ff98d7 0%, #9cc7ff 48%, #8ff0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.72;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 56ch;
}

.hero-actions,
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  color: #061120;
  background: linear-gradient(135deg, #9ceaff, #6da7ff 55%, #f4c1ff);
  box-shadow: 0 12px 28px rgba(109, 167, 255, 0.28);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.hero-visual {
  padding: 24px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(3, 8, 20, 0.56), rgba(3, 8, 20, 0.82)),
    radial-gradient(circle at 50% 20%, rgba(120, 110, 255, 0.35), transparent 28%),
    url('assets/tablet1.png') center/cover no-repeat;
}

.hero-overlay-logo {
  width: min(78%, 440px);
  filter: drop-shadow(0 0 28px rgba(105, 201, 255, 0.35));
}

.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(7, 13, 28, 0.78);
  border: 1px solid rgba(255,255,255,0.12);
  color: #dfe9ff;
  font-weight: 600;
}

.section {
  padding: 28px 0 76px;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.section-copy {
  margin: 0 0 30px;
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.72;
}

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

.feature {
  padding: 24px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(105, 201, 255, 0.16), rgba(255, 105, 199, 0.14));
  border: 1px solid rgba(255,255,255,0.12);
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.shot {
  overflow: hidden;
  padding: 12px;
}

.shot.large { grid-column: span 5; }
.shot.medium { grid-column: span 4; }
.shot.small { grid-column: span 3; }

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.highlight {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
}

.highlight-card {
  padding: 30px;
}

.highlight-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.highlight-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dfe9ff;
}

.legal-page {
  padding: 52px 0 80px;
}

.legal-card {
  padding: 30px;
}

.legal-card h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 14px; }
.legal-card h2 { margin-top: 34px; font-size: 1.4rem; }
.legal-card h3 { margin-top: 28px; font-size: 1.1rem; }
.legal-card p,
.legal-card li { color: #dce7ff; line-height: 1.8; }
.legal-card ul { padding-left: 22px; }
.legal-card .muted { color: var(--muted); }

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .highlight,
  .features {
    grid-template-columns: 1fr;
  }

  .app-slider {
    padding: 24px 74px 72px;
  }

  .slide.is-phone {
    width: min(270px, 68vw);
  }

  .slide.is-tablet {
    width: min(620px, 90vw);
  }
}

@media (max-width: 720px) {
  .navbar { align-items: flex-start; }
  .nav-links { gap: 12px; }
  .hero { padding-top: 42px; }
  .hero-copy,
  .hero-visual,
  .highlight-card,
  .legal-card,
  .feature { padding: 22px; }
  .hero-card { min-height: 380px; }
  .app-slider {
    padding: 18px 16px 60px;
  }
  .slider-track {
    gap: 16px;
  }
  .slide {
    padding: 10px;
    border-radius: 24px;
  }
  .slide.is-phone,
  .slide.is-tablet {
    width: calc(100vw - 86px);
  }
  .slider-arrow {
    display: none;
  }
  .footer-grid { flex-direction: column; }
}


.app-slider {
  position: relative;
  padding: 26px 78px 72px;
  overflow: hidden;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  display: flex;
  align-items: center;
  gap: 26px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.slide {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  padding: 14px;
  border-radius: 30px;
  background: rgba(8, 16, 36, 0.72);
  border: 1px solid rgba(126, 178, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.is-phone {
  width: 320px;
}

.slide.is-tablet {
  width: 540px;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  border-radius: 24px;
}

.slide.is-active {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(143, 240, 255, 0.18);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(4, 9, 21, 0.82);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.slider-arrow:hover:not(:disabled) {
  background: rgba(9, 18, 40, 0.95);
}

.slider-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.slider-arrow-left { left: 18px; }
.slider-arrow-right { right: 18px; }

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.slider-dot {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slider-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.slider-dot.is-active::before {
  background: linear-gradient(135deg, #ff98d7, #9cc7ff);
  box-shadow: 0 0 12px rgba(156, 199, 255, 0.45);
}


body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(105, 201, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 26%, rgba(255, 105, 199, 0.08), transparent 20%),
    radial-gradient(circle at 60% 75%, rgba(143, 107, 255, 0.08), transparent 24%);
  animation: ambientFloat 14s ease-in-out infinite alternate;
}

.glass,
.slide,
.button,
.chip,
.highlight-item,
.brand-mark {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.hero-copy,
.hero-visual,
.highlight-card,
.shot,
.feature,
.app-slider {
  position: relative;
  isolation: isolate;
}

.hero-copy::before,
.hero-visual::before,
.highlight-card::before,
.app-slider::before,
.feature::before,
.shot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(143, 240, 255, 0.08), transparent 42%, rgba(255, 105, 199, 0.06));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.hero-copy:hover,
.hero-visual:hover,
.highlight-card:hover,
.shot:hover,
.feature:hover,
.app-slider:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(143, 240, 255, 0.08);
  border-color: rgba(143, 240, 255, 0.28);
}

.hero-copy:hover::before,
.hero-visual:hover::before,
.highlight-card:hover::before,
.shot:hover::before,
.feature:hover::before,
.app-slider:hover::before {
  opacity: 1;
}

.hero-card {
  animation: heroPulse 8s ease-in-out infinite;
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(109, 167, 255, 0.34), 0 0 22px rgba(156, 199, 255, 0.18);
}

.button-secondary:hover {
  background: rgba(255,255,255,0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.feature:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 0 18px rgba(143, 240, 255, 0.18);
}

.hero-badge .chip {
  backdrop-filter: blur(10px);
}

.slide {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
  opacity: 0.72;
}

.slide:hover {
  transform: translateY(-4px);
}

.slide.is-active {
  transform: translateY(-2px) scale(1.01);
  opacity: 1;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(143, 240, 255, 0.24);
}

.slider-arrow {
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.slider-arrow:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34), 0 0 18px rgba(156, 199, 255, 0.18);
}

.slider-dot {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.slider-dot:hover::before {
  transform: scale(1.18);
}

.section-title,
.section-copy {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@keyframes ambientFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(0, -14px, 0) scale(1.03); }
}

@keyframes heroPulse {
  0% { box-shadow: inset 0 0 0 rgba(0,0,0,0), 0 0 0 rgba(0,0,0,0); }
  50% { box-shadow: inset 0 0 90px rgba(105, 201, 255, 0.06), 0 0 40px rgba(105, 201, 255, 0.08); }
  100% { box-shadow: inset 0 0 0 rgba(0,0,0,0), 0 0 0 rgba(0,0,0,0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::after,
  .hero-card {
    animation: none !important;
  }
  .reveal,
  .reveal.is-visible,
  .glass,
  .slide,
  .button,
  .feature-icon,
  .slider-arrow,
  .slider-dot {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}


.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 240, 255, 0.38), rgba(255, 105, 199, 0.28), transparent);
  opacity: 0.8;
}

.hero,
.section {
  position: relative;
}

.hero::before,
.section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(36vw, 420px);
  height: min(36vw, 420px);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.42;
  background: radial-gradient(circle, rgba(105, 201, 255, 0.14), transparent 68%);
  animation: driftOrb 13s ease-in-out infinite alternate;
}

.section::before {
  left: auto;
  right: 4%;
  top: 10%;
  width: min(28vw, 320px);
  height: min(28vw, 320px);
  opacity: 0.26;
  background: radial-gradient(circle, rgba(255, 105, 199, 0.12), transparent 68%);
  animation-duration: 16s;
}

.hero-copy::after {
  animation: haloPulse 7s ease-in-out infinite;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -18% -10% auto;
  height: 52%;
  background: radial-gradient(circle, rgba(143, 240, 255, 0.18), transparent 64%);
  pointer-events: none;
  animation: shimmerSweep 8s linear infinite;
}

.feature::after,
.highlight-card::after,
.app-slider::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(143, 240, 255, 0.0), rgba(143, 240, 255, 0.2), rgba(255, 105, 199, 0.16), rgba(143, 240, 255, 0.0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 0.78s ease,
    transform 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.78s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-left {
  transform: translate3d(-44px, 0, 0) scale(0.985);
}

.reveal-right {
  transform: translate3d(44px, 0, 0) scale(0.985);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.hero-copy:hover,
.hero-visual:hover,
.highlight-card:hover,
.shot:hover,
.feature:hover,
.app-slider:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.54), 0 0 0 1px rgba(143, 240, 255, 0.1), 0 0 34px rgba(105, 201, 255, 0.08);
}

.button-primary {
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255,255,255,0.45) 50%, transparent 78%);
  transform: translateX(-135%);
  transition: transform 0.72s ease;
}

.button-primary:hover::after {
  transform: translateX(135%);
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(143, 240, 255, 0.18), transparent 48%);
  opacity: 0.6;
}

.slide.is-active {
  transform: translateY(-4px) scale(1.012);
  opacity: 1;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(143, 240, 255, 0.24), 0 0 26px rgba(143, 240, 255, 0.12);
}

.slider-dot {
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.slider-dot:hover::before {
  transform: scale(1.18);
}

@keyframes driftOrb {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(18px, 24px, 0) scale(1.08); }
}

@keyframes haloPulse {
  0%, 100% { opacity: 0.72; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes shimmerSweep {
  0% { transform: translate3d(-8%, 0, 0); opacity: 0.22; }
  50% { opacity: 0.42; }
  100% { transform: translate3d(8%, 0, 0); opacity: 0.18; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::after,
  .hero::before,
  .section::before,
  .hero-card,
  .hero-card::before,
  .hero-copy::after {
    animation: none !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .slide,
  .button,
  .glass,
  .highlight-item,
  .chip,
  .slider-arrow,
  .slider-dot {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}


/* MOBILE RESPONSIVE PATCH */
@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero {
    padding: 54px 0 28px;
  }

  .hero-grid,
  .highlight,
  .features {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-copy,
  .hero-visual,
  .feature,
  .highlight-card {
    padding: 24px;
  }

  .hero-card {
    min-height: 430px;
    background-position: center top;
  }

  .app-slider {
    padding: 22px 14px 62px;
  }

  .slider-track {
    gap: 18px;
  }

  .slide.is-phone {
    width: min(290px, 66vw);
  }

  .slide.is-tablet {
    width: min(700px, 92vw);
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(calc(100% - 18px), var(--max));
  }

  .site-header {
    position: sticky;
  }

  .navbar {
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    gap: 10px;
  }

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

  .nav-links {
    width: 100%;
    gap: 10px 14px;
    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 0.92rem;
  }

  .hero {
    padding: 32px 0 18px;
  }

  .hero-copy,
  .hero-visual,
  .feature,
  .highlight-card {
    padding: 18px;
  }

  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 1.02;
    margin-bottom: 16px;
  }

  .lead,
  .section-copy,
  .feature p,
  .highlight-card p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-actions,
  .cta-row {
    gap: 10px;
    flex-direction: column;
  }

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

  .hero-visual {
    padding: 14px;
  }

  .hero-card {
    min-height: 320px;
    padding: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center 18px;
    background-color: rgba(4, 9, 21, 0.92);
  }

  .hero-card::before {
    inset: -8% -16% auto;
    height: 42%;
  }

  .hero-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }

  .chip {
    padding: 9px 12px;
    font-size: 0.74rem;
  }

  .section {
    padding: 36px 0;
  }

  .section-title {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    margin-bottom: 12px;
  }

  .features {
    gap: 16px;
  }

  .feature {
    min-height: 0;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }

  .app-slider {
    padding: 16px 0 54px;
    overflow: visible;
  }

  .slider-viewport {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    padding: 0 10px 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .slider-viewport::-webkit-scrollbar {
    display: none;
  }

  .slider-track {
    gap: 14px;
    width: max-content;
    transform: none !important;
    will-change: auto;
    padding-right: 10px;
  }

  .slide {
    scroll-snap-align: center;
    padding: 8px;
    border-radius: 22px;
  }

  .slide.is-phone,
  .slide.is-tablet {
    width: calc(100vw - 72px);
    max-width: 340px;
  }

  .slide.is-tablet {
    max-width: 92vw;
  }

  .slide img {
    width: 100%;
    height: auto;
    max-height: 72vh;
    object-fit: contain;
    display: block;
  }

  .slider-arrow {
    display: none;
  }

  .slider-dots {
    margin-top: 14px;
  }

  .highlight {
    gap: 16px;
  }

  .footer {
    padding: 28px 0 36px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

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

  .hero-copy,
  .hero-visual,
  .feature,
  .highlight-card {
    padding: 16px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(1.85rem, 10.4vw, 2.55rem);
  }

  .lead,
  .section-copy,
  .feature p,
  .highlight-card p {
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .hero-card {
    min-height: 280px;
    background-position: center 12px;
  }

  .hero-badge {
    position: static;
    margin-top: 14px;
  }

  .chip {
    font-size: 0.72rem;
    padding: 8px 10px;
  }

  .app-slider {
    padding-bottom: 44px;
  }

  .slider-viewport {
    padding: 0 6px 8px;
  }

  .slide.is-phone,
  .slide.is-tablet {
    width: calc(100vw - 46px);
    max-width: none;
  }

  .slide img {
    max-height: 68vh;
  }

  .section {
    padding: 30px 0;
  }
}


/* LIGHTWEIGHT AMBIENT EFFECTS */
body {
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 16%, rgba(96, 199, 255, 0.12), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(255, 97, 182, 0.09), transparent 22%),
    radial-gradient(circle at 68% 56%, rgba(91, 128, 255, 0.08), transparent 28%),
    radial-gradient(circle at 30% 82%, rgba(96, 199, 255, 0.06), transparent 22%);
  filter: blur(8px);
  animation: ambientGlowShift 18s ease-in-out infinite alternate;
}

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

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.75),
    0 0 16px rgba(116, 216, 255, 0.38),
    0 0 22px rgba(255, 105, 199, 0.18);
  opacity: 0.35;
  animation: twinkle var(--twinkle-speed, 5.5s) ease-in-out infinite;
  transform-origin: center;
}

.star::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.72), transparent);
  opacity: 0.72;
}

.star-1  { left: 8%;  top: 12%; --twinkle-speed: 4.6s; }
.star-2  { left: 18%; top: 30%; --twinkle-speed: 5.8s; }
.star-3  { left: 28%; top: 9%;  --twinkle-speed: 6.2s; }
.star-4  { left: 42%; top: 22%; --twinkle-speed: 4.9s; }
.star-5  { left: 56%; top: 12%; --twinkle-speed: 5.5s; }
.star-6  { left: 66%; top: 34%; --twinkle-speed: 6.6s; }
.star-7  { left: 78%; top: 16%; --twinkle-speed: 5.2s; }
.star-8  { left: 88%; top: 28%; --twinkle-speed: 6.0s; }
.star-9  { left: 12%; top: 64%; --twinkle-speed: 5.1s; }
.star-10 { left: 34%; top: 72%; --twinkle-speed: 6.4s; }
.star-11 { left: 72%; top: 68%; --twinkle-speed: 5.6s; }
.star-12 { left: 90%; top: 82%; --twinkle-speed: 6.8s; }

.hero-copy,
.hero-visual,
.feature,
.highlight-card,
.app-slider {
  backdrop-filter: blur(12px);
}

.section-title {
  text-shadow:
    0 0 14px rgba(111, 210, 255, 0.10),
    0 0 28px rgba(255, 105, 199, 0.05);
}

.brand-mark,
.button-primary,
.slider-dot.is-active,
.slide.is-active {
  filter: drop-shadow(0 0 14px rgba(115, 214, 255, 0.20));
}

.feature-icon {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 18px rgba(97, 196, 255, 0.12),
    inset 0 0 18px rgba(255,255,255,0.02);
}

.highlight-item,
.chip {
  position: relative;
}

.highlight-item::before,
.chip::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.03), rgba(117, 219, 255, 0.09), rgba(255, 105, 199, 0.06), rgba(255,255,255,0.02));
  opacity: 0.8;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.28;
    transform: scale(0.9);
  }
  25% {
    opacity: 0.65;
    transform: scale(1.08);
  }
  50% {
    opacity: 1;
    transform: scale(1.28);
  }
  75% {
    opacity: 0.52;
    transform: scale(1.02);
  }
}

@keyframes ambientGlowShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.95;
  }
  100% {
    transform: translate3d(0, -10px, 0) scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 720px) {
  body::before {
    filter: blur(10px);
    background:
      radial-gradient(circle at 10% 14%, rgba(96, 199, 255, 0.10), transparent 26%),
      radial-gradient(circle at 88% 10%, rgba(255, 97, 182, 0.08), transparent 20%),
      radial-gradient(circle at 70% 60%, rgba(91, 128, 255, 0.06), transparent 24%);
  }

  .ambient-stars .star:nth-child(n+9) {
    display: none;
  }

  .star {
    width: 2px;
    height: 2px;
  }

  .star::after {
    width: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .star {
    animation: none !important;
  }
}


/* HERO REWORK PATCH */
.hero .container {
  position: relative;
}

.hero-top-brand {
  display: flex;
  justify-content: center;
  margin: 0 0 22px;
}

.hero-top-brand-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(17, 30, 63, 0.92), rgba(6, 12, 26, 0.72));
  border: 1px solid rgba(126, 178, 255, 0.18);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.35),
    0 0 26px rgba(98, 206, 255, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}

.hero-top-brand-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(90, 204, 255, 0.18), transparent 28%),
    radial-gradient(circle at 80% 38%, rgba(255, 96, 184, 0.16), transparent 24%);
  pointer-events: none;
}

.hero-top-brand-inner::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  width: 28%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.34), transparent);
  transform: translateX(-220%) skewX(-16deg);
  animation: logoShimmer 5.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-top-brand-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(430px, 62vw);
  filter:
    drop-shadow(0 0 20px rgba(108, 212, 255, 0.18))
    drop-shadow(0 0 28px rgba(255, 105, 199, 0.08));
}

.hero-card-rework {
  min-height: 560px;
  padding: 18px 18px 20px;
  background:
    linear-gradient(180deg, rgba(3, 8, 20, 0.72), rgba(3, 8, 20, 0.90)),
    radial-gradient(circle at 50% 8%, rgba(123, 106, 255, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(11, 22, 50, 0.94), rgba(3, 10, 24, 0.92));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.hero-card-rework::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 26px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(140, 218, 255, 0.14), transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(255, 105, 199, 0.07), transparent 28%);
}

.hero-screen-shell {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(9, 16, 34, 0.92), rgba(4, 9, 19, 0.96));
  border: 1px solid rgba(132, 186, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 18px 44px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.hero-screen-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 44%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
}

.hero-screen {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 480px;
  max-height: 440px;
  height: auto;
  object-fit: contain;
  border-radius: 26px;
  filter:
    drop-shadow(0 18px 34px rgba(0,0,0,0.28))
    drop-shadow(0 0 18px rgba(87, 196, 255, 0.08));
}

.hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(8, 15, 31, 0.82);
  border: 1px solid rgba(255,255,255,0.12);
  color: #edf3ff;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hero-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(140, 218, 255, 0.32);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.24),
    0 0 18px rgba(101, 203, 255, 0.10);
}

.hero-pill-wide {
  flex: 1 1 100%;
  justify-content: flex-start;
}

@keyframes logoShimmer {
  0% {
    transform: translateX(-220%) skewX(-16deg);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  42% {
    transform: translateX(240%) skewX(-16deg);
    opacity: 0.95;
  }
  100% {
    transform: translateX(240%) skewX(-16deg);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .hero-top-brand-logo {
    width: min(360px, 70vw);
  }

  .hero-card-rework {
    min-height: 500px;
  }

  .hero-screen {
    max-height: 390px;
  }
}

@media (max-width: 720px) {
  .hero-top-brand {
    margin-bottom: 16px;
  }

  .hero-top-brand-inner {
    width: 100%;
    padding: 12px 18px 14px;
    border-radius: 28px;
  }

  .hero-top-brand-logo {
    width: min(300px, 72vw);
  }

  .hero-card-rework {
    min-height: 0;
    padding: 14px;
    gap: 14px;
  }

  .hero-screen-shell {
    padding: 8px;
    border-radius: 24px;
  }

  .hero-screen {
    max-width: 100%;
    max-height: 56vh;
    border-radius: 18px;
  }

  .hero-meta {
    gap: 10px;
  }

  .hero-pill {
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
  }

  .hero-pill-wide {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-top-brand-inner::after {
    animation: none !important;
  }
}

/* PREMIUM LOGO EFFECT PATCH */
.hero-top-brand {
  margin: 0 0 18px;
}

.hero-top-brand-inner {
  position: relative;
  padding: 4px 10px 8px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}

.hero-top-brand-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(540px, 78vw);
  height: min(220px, 30vw);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 20%, transparent 56%),
    radial-gradient(ellipse at 22% 50%, rgba(91, 200, 255, 0.12), transparent 34%),
    radial-gradient(ellipse at 50% 20%, rgba(137, 108, 255, 0.08), transparent 40%),
    radial-gradient(ellipse at 80% 42%, rgba(255, 101, 193, 0.11), transparent 34%);
  filter: blur(24px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.hero-top-brand-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(420px, 58vw);
  height: min(120px, 18vw);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.08), transparent 70%);
  filter: blur(18px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.hero-top-brand-logo-transparent {
  position: relative;
  z-index: 2;
  width: min(430px, 62vw);
  display: block;
  filter:
    drop-shadow(0 0 10px rgba(100, 205, 255, 0.14))
    drop-shadow(0 0 18px rgba(255, 105, 199, 0.07));
}

.hero-top-brand-sparkles {
  position: absolute;
  inset: -8px -20px -6px;
  pointer-events: none;
  z-index: 1;
}

.hero-top-brand-sparkles span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  box-shadow:
    0 0 6px rgba(255,255,255,0.38),
    0 0 10px rgba(103, 206, 255, 0.12);
  opacity: 0.28;
  animation: premiumHeroSparkle var(--spark-speed, 6.4s) ease-in-out infinite;
}

.hero-top-brand-sparkles span:nth-child(1) { left: 10%; top: 58%; --spark-speed: 6.8s; }
.hero-top-brand-sparkles span:nth-child(2) { left: 24%; top: 20%; --spark-speed: 7.1s; }
.hero-top-brand-sparkles span:nth-child(3) { left: 40%; top: 12%; --spark-speed: 5.9s; }
.hero-top-brand-sparkles span:nth-child(4) { left: 64%; top: 16%; --spark-speed: 6.6s; }
.hero-top-brand-sparkles span:nth-child(5) { left: 84%; top: 36%; --spark-speed: 6.1s; }
.hero-top-brand-sparkles span:nth-child(6) { left: 74%; top: 70%; --spark-speed: 7.4s; }

@keyframes premiumHeroSparkle {
  0%, 100% {
    opacity: 0.14;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.46;
    transform: scale(1.18);
  }
}

.slider-autoplay {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(132, 186, 255, 0.18);
  background: rgba(8, 15, 31, 0.78);
  color: #edf3ff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.slider-autoplay:hover {
  transform: translateY(-2px);
  border-color: rgba(140, 218, 255, 0.28);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22), 0 0 16px rgba(101, 203, 255, 0.08);
}

.slider-autoplay.is-active {
  background: linear-gradient(135deg, rgba(109, 210, 255, 0.18), rgba(255, 105, 199, 0.12));
  border-color: rgba(140, 218, 255, 0.34);
  box-shadow: 0 14px 30px rgba(0,0,0,0.24), 0 0 18px rgba(101, 203, 255, 0.10);
}

@media (max-width: 720px) {
  .hero-top-brand-inner::before {
    width: min(340px, 88vw);
    height: 120px;
    filter: blur(18px);
  }

  .hero-top-brand-inner::after {
    width: min(260px, 72vw);
    height: 70px;
    filter: blur(12px);
  }

  .hero-top-brand-logo-transparent {
    width: min(300px, 76vw);
  }

  .hero-top-brand-sparkles span:nth-child(n+5) {
    display: none;
  }

  .slider-autoplay {
    width: 100%;
    order: 3;
  }

  .slider-controls {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-top-brand-sparkles span {
    animation: none !important;
  }
}

/* HERO PLAY SCROLL PATCH */
.hero-top-brand {
  margin-bottom: 26px;
}

.hero-scroll-cta {
  display: flex;
  justify-content: center;
  margin: 0 0 34px;
}

.hero-play-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 18px 30px;
  border: 1px solid rgba(132, 186, 255, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(11, 22, 50, 0.92), rgba(6, 12, 28, 0.88));
  color: #edf3ff;
  box-shadow:
    0 20px 48px rgba(0,0,0,0.26),
    0 0 28px rgba(101, 203, 255, 0.10);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.hero-play-scroll::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 24%, rgba(255,255,255,0.26) 50%, transparent 76%);
  transform: translateX(-135%);
  transition: transform 0.8s ease;
}

.hero-play-scroll:hover::before {
  transform: translateX(135%);
}

.hero-play-scroll:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(148, 220, 255, 0.36);
  box-shadow:
    0 24px 54px rgba(0,0,0,0.30),
    0 0 34px rgba(101, 203, 255, 0.14);
}

.hero-play-scroll.is-active {
  background:
    linear-gradient(135deg, rgba(92, 200, 255, 0.16), rgba(255, 105, 199, 0.12)),
    linear-gradient(135deg, rgba(11, 22, 50, 0.92), rgba(6, 12, 28, 0.88));
  border-color: rgba(160, 228, 255, 0.40);
  box-shadow:
    0 24px 56px rgba(0,0,0,0.32),
    0 0 40px rgba(101, 203, 255, 0.16);
}

.hero-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(99, 205, 255, 0.24), rgba(255, 105, 199, 0.16));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 18px rgba(101, 203, 255, 0.12);
  font-size: 1rem;
  line-height: 1;
  transform: translateX(1px);
}

.hero-play-text {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .hero-top-brand {
    margin-bottom: 18px;
  }

  .hero-scroll-cta {
    margin-bottom: 22px;
  }

  .hero-play-scroll {
    width: 100%;
    min-height: 62px;
    padding: 16px 20px;
    justify-content: center;
    font-size: 0.96rem;
  }

  .hero-play-icon {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-play-scroll::before {
    transition: none !important;
    transform: none !important;
  }
}

/* SEO PERFORMANCE STAGE 2 */
.hero {
  min-height: 0;
}

.hero-top-brand {
  min-height: 176px;
}

.hero-top-brand-logo,
.hero-top-brand-logo-transparent {
  width: min(430px, 62vw);
  height: auto;
  aspect-ratio: 1 / 1;
}

.hero-grid {
  align-items: start;
}

.hero-copy,
.hero-visual {
  min-height: 100%;
}

.hero-card-rework,
.hero-card {
  min-height: 560px;
}

.hero-screen-shell {
  width: 100%;
  aspect-ratio: 420 / 852;
}

.hero-screen {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 420 / 852;
}

.slide img {
  display: block;
  width: 100%;
  height: auto;
}

.brand img {
  width: 32px;
  height: 32px;
  aspect-ratio: 1 / 1;
}

@media (max-width: 720px) {
  .hero-top-brand {
    min-height: 132px;
  }

  .hero-card-rework,
  .hero-card {
    min-height: 420px;
  }

  .hero-screen-shell {
    aspect-ratio: 420 / 852;
  }

  .hero-top-brand-logo,
  .hero-top-brand-logo-transparent {
    width: min(300px, 76vw);
  }
}

/* SWIPE LIGHTBOX PATCH */
.app-slider {
  user-select: none;
}

.app-slider.is-dragging,
.slider-track.is-dragging {
  cursor: grabbing;
}

.slider-track {
  cursor: grab;
}

.slider-track.is-dragging {
  transition: none !important;
}

.slide img.is-zoomable {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3, 8, 20, 0.88);
  backdrop-filter: blur(10px);
  padding: 28px;
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox-stage {
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 28px 72px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.06);
}

.image-lightbox-close,
.image-lightbox-nav {
  position: absolute;
  border: 1px solid rgba(132, 186, 255, 0.22);
  background: rgba(8, 15, 31, 0.82);
  color: #edf3ff;
  border-radius: 999px;
  min-width: 48px;
  min-height: 48px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}

.image-lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 1.05rem;
}

.image-lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.image-lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .image-lightbox {
    padding: 14px;
  }

  .image-lightbox-stage,
  .image-lightbox-img {
    max-height: 80vh;
  }

  .image-lightbox-prev,
  .image-lightbox-next {
    min-width: 42px;
    min-height: 42px;
  }
}

/* FRAME FIT + EXTRA ZOOM PATCH */
.hero-card-rework,
.hero-card {
  min-height: 0;
}

.hero-screen-shell {
  aspect-ratio: auto;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.hero-screen {
  width: auto;
  max-width: 100%;
  max-height: 430px;
  height: auto;
}

.hero-meta {
  margin-top: 6px;
}

.footer img.is-zoomable,
.hero-screen.is-zoomable,
.slide img.is-zoomable {
  cursor: zoom-in;
}

@media (max-width: 720px) {
  .hero-screen-shell {
    padding: 10px;
  }

  .hero-screen {
    max-height: 56vh;
  }
}

/* FOOTER IMAGE LIGHTBOX PATCH */
.footer img,
.footer-card img,
.shot img,
.hero-screen {
  cursor: zoom-in;
}

