/* Premium homepage — matches Flutter AppTheme (app_theme.dart) */

html.premium-site {
  overflow-x: clip;
  --primary: #061b5a;
  --primary-light: #0b2f8a;
  --primary-deep: #041445;
  --primary-muted: #e8eef8;
  --accent-sky: #0b2f8a;
  --accent: #f9b000;
  --accent-dark: #e0a000;
  --accent-muted: #fff4d6;
  --accent-glow: rgba(249, 176, 0, 0.4);
  --on-accent: #1a1a1a;
  --bg: #f5f5f7;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-muted: #8a8a8a;
  --border: #e5e5ea;
  --font: "Poppins", "Noto Sans Kannada", system-ui, sans-serif;
  --font-body: "Poppins", "Noto Sans Kannada", system-ui, sans-serif;
  --gradient-hero: linear-gradient(165deg, #020c28 0%, #041445 28%, #061b5a 52%, #0b2f8a 78%, #061b5a 100%);
  --gradient-cta: linear-gradient(135deg, #ffca42 0%, #f9b000 50%, #e89a00 100%);
  --gradient-gold: linear-gradient(135deg, #ffca42 0%, #f9b000 50%, #e89a00 100%);
  --gradient-section: linear-gradient(180deg, #f8faff 0%, #eef2fb 100%);
  --shadow: 0 20px 56px rgba(6, 27, 90, 0.14);
  --shadow-sm: 0 8px 28px rgba(6, 27, 90, 0.08);
  --shadow-gold: 0 12px 36px rgba(249, 176, 0, 0.35);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.22);
  --glass-light: rgba(255, 255, 255, 0.88);
  --shadow-premium: 0 28px 72px rgba(6, 27, 90, 0.22);
  --type-hero: clamp(3rem, 7vw, 4.5rem);
  --type-lead: clamp(1.2rem, 2.5vw, 1.5rem);
  --type-section: clamp(2rem, 4.2vw, 2.75rem);
  --section-pad: clamp(5rem, 10vw, 7.5rem);
  --type-body: 1.0625rem;
}

html.premium-site body {
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
  max-width: 100%;
}

html.premium-site body::before {
  background:
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(249, 176, 0, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 100%, rgba(6, 27, 90, 0.06) 0%, transparent 50%),
    var(--bg);
}

html.premium-site h1,
html.premium-site h2,
html.premium-site h3,
html.premium-site .section-title,
html.premium-site .hero-v2__title {
  font-family: var(--font);
}

html.premium-site .section-title {
  font-size: var(--type-section);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1.15;
}

html.premium-site .section-lead {
  font-size: var(--type-body);
  line-height: 1.65;
  color: var(--text-muted);
}

/* Nav */
html.premium-site .site-nav.is-scrolled {
  background: rgba(6, 27, 90, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(6, 27, 90, 0.2);
}

html.premium-site .site-nav .nav-cta,
html.premium-site .site-nav .nav-cta-desktop {
  background: var(--gradient-cta);
  color: var(--on-accent) !important;
  box-shadow: var(--shadow-gold);
  border-radius: 25px;
}

html.premium-site .nav-links a:hover {
  color: var(--accent);
}

html.premium-site .premium-section {
  padding: var(--section-pad) 0;
}

html.premium-site .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

html.premium-site .section-header .section-lead {
  margin-top: 1rem;
}

/* Hero */
.hero-v2 {
  position: relative;
  min-height: min(94vh, 920px);
  padding: calc(var(--nav-h) + 4rem) 0 6rem;
  background: var(--gradient-hero);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-v2__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-v2__gradient-anim {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(
      125deg,
      #020c28 0%,
      #041445 22%,
      #061b5a 40%,
      #0b2f8a 55%,
      #0d3da8 70%,
      #061b5a 85%,
      #041445 100%
    ),
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(249, 176, 0, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 20%, rgba(0, 180, 255, 0.15) 0%, transparent 50%);
  background-size: 220% 220%, 100% 100%, 100% 100%;
  animation: hero-gradient-shift 12s ease-in-out infinite;
}

@keyframes hero-gradient-shift {
  0%,
  100% {
    background-position: 0% 30%;
  }
  33% {
    background-position: 100% 50%;
  }
  66% {
    background-position: 50% 100%;
  }
}

.hero-v2__map-layer {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  animation: hero-map-pulse 8s ease-in-out infinite;
}

.hero-v2__map-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-v2__map-line {
  stroke: rgba(0, 180, 255, 0.25);
  stroke-width: 1.5;
  stroke-dasharray: 8 12;
  animation: hero-map-dash 12s linear infinite;
}

.hero-v2__map-dot {
  fill: rgba(0, 200, 255, 0.5);
  animation: hero-map-dot-pulse 3s ease-in-out infinite;
}

.hero-v2__map-dot:nth-child(3) { animation-delay: -0.5s; }
.hero-v2__map-dot:nth-child(4) { animation-delay: -1s; }
.hero-v2__map-dot:nth-child(5) { animation-delay: -1.5s; }
.hero-v2__map-dot:nth-child(6) { animation-delay: -2s; }
.hero-v2__map-dot:nth-child(7) { animation-delay: -0.8s; }
.hero-v2__map-dot:nth-child(8) { animation-delay: -1.2s; }

@keyframes hero-map-pulse {
  0%,
  100% { opacity: 0.35; }
  50% { opacity: 0.55; }
}

@keyframes hero-map-dash {
  to { stroke-dashoffset: -40; }
}

@keyframes hero-map-dot-pulse {
  0%,
  100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

.hero-v2__grid-pattern--drift {
  animation: hero-grid-drift 20s linear infinite;
}

@keyframes hero-grid-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(48px, 48px);
  }
}

.hero-v2__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-v2__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  animation: hero-particle-float 12s ease-in-out infinite;
}

.hero-v2__particle--pin {
  width: 8px;
  height: 8px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: rgba(249, 176, 0, 0.55);
  box-shadow: 0 0 12px rgba(249, 176, 0, 0.4);
}

.hero-v2__particle:nth-child(1) { left: 8%; top: 18%; animation-delay: 0s; }
.hero-v2__particle:nth-child(2) { left: 22%; top: 72%; animation-delay: -2s; }
.hero-v2__particle:nth-child(3) { left: 45%; top: 12%; animation-delay: -4s; }
.hero-v2__particle:nth-child(4) { left: 68%; top: 55%; animation-delay: -1s; }
.hero-v2__particle:nth-child(5) { left: 82%; top: 28%; animation-delay: -3s; }
.hero-v2__particle:nth-child(6) { left: 15%; top: 45%; animation-delay: -5s; }
.hero-v2__particle:nth-child(7) { left: 55%; top: 78%; animation-delay: -2.5s; }
.hero-v2__particle:nth-child(8) { left: 38%; top: 35%; animation-delay: -6s; }
.hero-v2__particle:nth-child(9) { left: 72%; top: 82%; animation-delay: -1.5s; }
.hero-v2__particle:nth-child(10) { left: 92%; top: 48%; animation-delay: -4.5s; }
.hero-v2__particle:nth-child(11) { left: 28%; top: 22%; animation-delay: -3.5s; }
.hero-v2__particle:nth-child(12) { left: 62%; top: 38%; animation-delay: -7s; }
.hero-v2__particle:nth-child(13) { left: 48%; top: 62%; animation-delay: -2s; }
.hero-v2__particle:nth-child(14) { left: 18%; top: 88%; animation-delay: -5.5s; }
.hero-v2__particle:nth-child(15) { left: 88%; top: 15%; animation-delay: -4s; }

@keyframes hero-particle-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.35;
  }
  50% {
    transform: translate(12px, -20px) scale(1.2);
    opacity: 0.85;
  }
}

.hero-v2__particle--pin {
  animation-name: hero-pin-float;
}

.hero-v2__particle--pin:nth-child(11) { animation-delay: -1s; }
.hero-v2__particle--pin:nth-child(12) { animation-delay: -3s; }
.hero-v2__particle--pin:nth-child(13) { animation-delay: -5s; }
.hero-v2__particle--pin:nth-child(14) { animation-delay: -2s; }
.hero-v2__particle--pin:nth-child(15) { animation-delay: -4s; }

@keyframes hero-pin-float {
  0%,
  100% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0.5;
  }
  50% {
    transform: rotate(-45deg) translate(8px, -14px);
    opacity: 1;
  }
}

.hero-v2__tagline {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 600;
  font-style: italic;
  color: #ffca42;
  letter-spacing: -0.02em;
  text-shadow: 0 0 32px rgba(249, 176, 0, 0.35);
}

.hero-v2__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 85% 5%, rgba(249, 176, 0, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 95%, rgba(11, 47, 138, 0.35) 0%, transparent 45%);
}

.hero-v2__grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.hero-v2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-v2__orb--1 {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -60px;
  background: rgba(249, 176, 0, 0.28);
}

.hero-v2__orb--2 {
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: -40px;
  background: rgba(11, 47, 138, 0.35);
}

.hero-v2 .container {
  position: relative;
  z-index: 1;
}

.hero-v2__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 5rem;
  align-items: center;
}

.hero-v2__eyebrow {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffca42;
  background: rgba(249, 176, 0, 0.18);
  border: 1px solid rgba(249, 176, 0, 0.45);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(249, 176, 0, 0.25);
}

.hero-v2__title {
  margin: 0 0 1.75rem;
  font-size: var(--type-hero);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 11ch;
  text-shadow: 0 4px 48px rgba(0, 0, 0, 0.35);
}

.hero-v2__lead {
  margin: 0 0 2.75rem;
  font-size: var(--type-lead);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36ch;
}

.hero-v2__note {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 40ch;
}

.hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 58px;
  padding: 0 2.25rem;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--on-accent);
  background: var(--gradient-cta);
  border-radius: 25px;
  border: none;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 44px rgba(249, 176, 0, 0.55);
  color: var(--on-accent);
}

.btn-hero-primary--glow {
  animation: cta-glow-pulse 2.8s ease-in-out infinite;
}

.btn-hero-primary--blue-glow {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 0 24px rgba(11, 47, 138, 0.9),
    0 0 48px rgba(0, 120, 255, 0.45),
    var(--shadow-gold);
}

.btn-hero-primary--blue-glow:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 0 36px rgba(11, 47, 138, 1),
    0 0 64px rgba(0, 150, 255, 0.55),
    0 20px 48px rgba(249, 176, 0, 0.5);
}

@keyframes cta-glow-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.2) inset,
      0 0 20px rgba(11, 47, 138, 0.75),
      0 0 40px rgba(0, 120, 255, 0.35),
      var(--shadow-gold);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.28) inset,
      0 0 32px rgba(11, 47, 138, 1),
      0 0 56px rgba(0, 150, 255, 0.5),
      0 0 28px rgba(249, 176, 0, 0.55),
      0 20px 48px rgba(249, 176, 0, 0.45);
  }
}

.hero-v2__visual-stage {
  position: relative;
  perspective: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-v2__phone-glow {
  position: absolute;
  width: min(420px, 95vw);
  height: min(520px, 70vh);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  background:
    radial-gradient(ellipse 55% 45% at 50% 45%, rgba(0, 150, 255, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(249, 176, 0, 0.2) 0%, transparent 70%);
  filter: blur(8px);
  animation: hero-glow-pulse 5s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes hero-glow-pulse {
  0%,
  100% {
    opacity: 0.75;
    transform: translate(-50%, -48%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -48%) scale(1.06);
  }
}

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

.device-frame--float-ui {
  animation: device-ui-float 5.5s ease-in-out infinite;
}

@keyframes device-ui-float {
  0%,
  100% {
    transform: rotateY(-14deg) rotateX(8deg) rotateZ(-1deg) translateY(0);
  }
  50% {
    transform: rotateY(-10deg) rotateX(5deg) rotateZ(0deg) translateY(-14px);
  }
}

.hero-v2__visual:hover .device-frame--float-ui {
  animation-play-state: paused;
}

.device-frame--3d {
  transform: rotateY(-14deg) rotateX(8deg) rotateZ(-1deg);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease);
}

.hero-v2__visual:hover .device-frame--3d {
  transform: rotateY(-8deg) rotateX(4deg) rotateZ(0deg) translateY(-6px);
}

.device-frame__shadow-3d {
  position: absolute;
  bottom: -8%;
  left: 10%;
  right: 10%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.45) 0%, transparent 70%);
  transform: rotateX(90deg) translateZ(-20px);
  filter: blur(12px);
  z-index: -1;
}

.hero-v2__visual--float {
  animation: hero-phone-float 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes hero-phone-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

.btn-hero-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 2rem;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-v2__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-glass--hero {
  position: relative;
  padding: 1.15rem;
  max-width: 340px;
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 36px;
  box-shadow:
    var(--shadow-premium),
    0 0 80px rgba(249, 176, 0, 0.25);
}

.phone-mockup-glass--hero::before {
  content: "";
  position: absolute;
  inset: -25% -15%;
  background: radial-gradient(circle, rgba(249, 176, 0, 0.35) 0%, transparent 70%);
  z-index: -1;
  filter: blur(32px);
}

.phone-mockup-glass__notch {
  position: absolute;
  top: 1.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 22px;
  background: #041445;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

/* Professional device frame */
.device-frame {
  position: relative;
  margin-inline: auto;
  background: linear-gradient(155deg, #0b2f8a 0%, #061b5a 45%, #041445 100%);
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.12) inset,
    0 48px 96px -24px rgba(4, 20, 69, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.device-frame--hero {
  width: min(360px, 88vw);
  padding: 14px;
  border-radius: 44px;
}

.device-frame--slider {
  width: min(300px, 72vw);
}

.device-frame--marquee {
  width: 200px;
  padding: 8px;
  border-radius: 28px;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.12) inset,
    0 28px 56px -16px rgba(4, 20, 69, 0.5),
    0 12px 24px -8px rgba(11, 47, 138, 0.3);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.device-frame--marquee:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.14) inset,
    0 36px 72px -12px rgba(4, 20, 69, 0.55),
    0 16px 32px -8px rgba(0, 150, 255, 0.2);
}

.app-slider .device-frame--slider.device-frame--float-ui {
  animation: none;
}

.device-frame__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 3;
  width: 32%;
  height: 24px;
  transform: translateX(-50%);
  background: #041445;
  border-radius: 0 0 16px 16px;
}

.device-frame__screen {
  overflow: hidden;
  border-radius: 32px;
  background: #000;
  line-height: 0;
}

.device-frame--hero .device-frame__screen {
  border-radius: 34px;
}

.device-frame--marquee .device-frame__screen {
  border-radius: 22px;
}

.device-frame__screen img {
  width: 100%;
  height: auto;
  display: block;
}

.device-frame__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.22) 0%,
    transparent 42%,
    transparent 58%,
    rgba(255, 255, 255, 0.06) 100%
  );
  pointer-events: none;
}

.device-frame--hero::after {
  content: "";
  position: absolute;
  inset: -15%;
  z-index: -1;
  background: radial-gradient(circle, rgba(249, 176, 0, 0.35) 0%, transparent 68%);
  filter: blur(28px);
}

.device-frame--pro {
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.14) inset,
    0 50px 100px -24px rgba(4, 20, 69, 0.6),
    0 24px 48px -12px rgba(11, 47, 138, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.app-slider__slide.is-active .device-frame--pro {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.16) inset,
    0 60px 120px -20px rgba(4, 20, 69, 0.55),
    0 32px 64px -16px rgba(0, 150, 255, 0.25);
}

.app-slider__stage {
  padding-bottom: 2rem;
}

/* Recently claimed strip */
.claimed-strip {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  padding: 0 0 2.5rem;
}

.claimed-strip__inner {
  background: var(--surface);
  border: 1px solid rgba(6, 27, 90, 0.08);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.claimed-strip__head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.claimed-strip__title {
  margin: 0 0 0.35rem;
  font-family: var(--font);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.claimed-strip__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.claimed-strip__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.claimed-strip__track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: claimed-scroll 28s linear infinite;
}

.claimed-strip__marquee:hover .claimed-strip__track {
  animation-play-state: paused;
}

@keyframes claimed-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.claimed-chip {
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  font-family: Consolas, Monaco, ui-monospace, monospace;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary-muted) 0%, #fff 100%);
  border: 1px solid rgba(6, 27, 90, 0.1);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(6, 27, 90, 0.08);
}

.claimed-chip::before {
  content: "● ";
  color: #22c55e;
  font-size: 0.65rem;
  vertical-align: middle;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Legacy feature-stats (unused) */
html.premium-site .feature-stats {
  position: relative;
  z-index: 3;
  margin-top: -3rem;
  padding: 0 0 3.5rem;
  background: transparent;
  border: none;
}

html.premium-site .feature-stats .container {
  width: min(1140px, 92vw);
}

html.premium-site .feature-stats-grid {
  gap: 1.25rem;
}

html.premium-site .feature-stat {
  background: var(--glass-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(6, 27, 90, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

html.premium-site .feature-stat:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 176, 0, 0.45);
  box-shadow: var(--shadow);
}

html.premium-site .feature-stat-value {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--primary);
}

html.premium-site .feature-stat-label {
  font-weight: 600;
  color: var(--text-muted);
}

/* Subtle premium motion (no flashy effects) */
html.premium-site .premium-section.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

html.premium-site .premium-section.reveal.is-visible {
  opacity: 1;
  transform: none;
}

html.premium-site .nav-cta {
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.25s;
}

html.premium-site .nav-cta:hover {
  box-shadow:
    0 8px 28px rgba(249, 176, 0, 0.45),
    0 0 20px rgba(249, 176, 0, 0.25);
}

.device-frame__pedestal {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -14px;
  height: 24px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(4, 20, 69, 0.4) 0%, transparent 72%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

/* App showcase */
.app-showcase--premium {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.app-screens-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-top: 2.5rem;
  align-items: end;
}

.app-screen-card {
  margin: 0;
  text-align: center;
  transition: transform 0.4s var(--ease);
}

.app-screen-card:hover {
  transform: translateY(-10px);
}

.app-screen-card:hover .device-frame--pro {
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.16) inset,
    0 56px 110px -22px rgba(4, 20, 69, 0.58),
    0 28px 56px -14px rgba(0, 150, 255, 0.22);
}

.app-screen-card figcaption {
  margin-top: 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.device-frame--grid {
  width: 100%;
  max-width: 220px;
  margin-inline: auto;
  padding: 10px;
  border-radius: 36px;
}

.device-frame--grid .device-frame__screen {
  border-radius: 28px;
}

.app-slider--mobile {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 2.5rem;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .app-screens-grid {
    display: grid;
  }

  .app-slider--mobile {
    display: none;
  }
}

.app-slider--pro {
  margin-top: 0;
  padding: 3rem 2.5rem 2.5rem;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  border-radius: 32px;
  border: 1px solid rgba(6, 27, 90, 0.06);
  box-shadow:
    0 4px 24px rgba(6, 27, 90, 0.06),
    0 32px 80px -16px rgba(6, 27, 90, 0.18);
}

.app-slider {
  margin-top: 2.5rem;
  padding: 2.5rem 2rem 2rem;
  background: var(--surface);
  border-radius: 28px;
  border: 1px solid rgba(6, 27, 90, 0.08);
  box-shadow: var(--shadow);
}

.app-slider__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.app-slider__tab {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(6, 27, 90, 0.12);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.app-slider__tab:hover {
  border-color: rgba(249, 176, 0, 0.45);
  color: var(--primary);
}

.app-slider__tab.is-active {
  background: var(--gradient-cta);
  color: var(--on-accent);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.app-slider__stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.app-slider__slide {
  margin: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(24px) scale(0.92);
  filter: blur(6px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    filter 0.55s var(--ease);
  grid-area: 1 / 1;
  pointer-events: none;
}

.app-slider__slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.app-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.app-slider__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(6, 27, 90, 0.2);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, width 0.2s;
}

.app-slider__dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--accent);
}

.app-slider__dots button:hover {
  background: rgba(249, 176, 0, 0.6);
}

.app-slider__slide[hidden] {
  visibility: hidden;
}

.app-slider__slide figcaption {
  margin-top: 1rem;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.app-screens-marquee--sub {
  margin-top: 2.5rem;
  opacity: 0.85;
}

html.premium-site .app-screens-marquee__edge--left {
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

html.premium-site .app-screens-marquee__edge--right {
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

/* How section */
.how-section--premium {
  background: var(--gradient-section);
}

html.premium-site .how-step {
  background: var(--surface);
  border: 1px solid rgba(6, 27, 90, 0.08);
  box-shadow: 0 12px 40px rgba(6, 27, 90, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

html.premium-site .how-step:hover {
  transform: translateY(-10px);
  border-color: rgba(249, 176, 0, 0.45);
  box-shadow: 0 24px 56px rgba(6, 27, 90, 0.14);
}

html.premium-site .how-step-num {
  background: var(--gradient-cta);
  color: var(--on-accent);
}

/* Suggest-place leaderboard — one-line card slider (top 4) */
.suggest-leaderboard {
  margin-top: 2.5rem;
  padding: 1.35rem 1rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(45, 106, 79, 0.28);
  background: linear-gradient(145deg, rgba(240, 253, 244, 0.95), #fff);
  width: 100%;
  max-width: 100%;
}
.suggest-leaderboard__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1b4332;
  text-align: center;
}
.suggest-leaderboard__lead {
  margin: 0.3rem 0 0.85rem;
  font-size: 0.8125rem;
  color: #64748b;
  text-align: center;
  line-height: 1.4;
}
.suggest-leaderboard__loading,
.suggest-leaderboard__empty {
  margin: 0;
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
}
.suggest-leaderboard__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -0.25rem;
  padding: 0.15rem 0.25rem 0.35rem;
  mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
}
.suggest-leaderboard__viewport::-webkit-scrollbar {
  display: none;
}
.suggest-leaderboard__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
}
.suggest-leaderboard__card {
  flex: 1 1 0;
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 12px 8px 10px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.suggest-leaderboard__card--rank-1 {
  border-color: rgba(45, 106, 79, 0.55);
  box-shadow: 0 4px 14px rgba(45, 106, 79, 0.14);
}
.suggest-leaderboard__card--rank-2 {
  border-color: rgba(100, 116, 139, 0.35);
}
.suggest-leaderboard__card--rank-3 {
  border-color: rgba(180, 83, 9, 0.25);
}
.suggest-leaderboard__rank {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #1b4332;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.suggest-leaderboard__card--rank-1 .suggest-leaderboard__rank {
  background: linear-gradient(145deg, #2d6a4f, #1b4332);
}
.suggest-leaderboard__name {
  margin: 0;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.8125rem;
  line-height: 1.25;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.suggest-leaderboard__meta {
  margin: 0;
  font-size: 0.6875rem;
  color: #64748b;
  line-height: 1.3;
}
@media (max-width: 720px) {
  .suggest-leaderboard__list {
    width: max-content;
    min-width: 100%;
  }
  .suggest-leaderboard__card {
    flex: 0 0 min(72vw, 168px);
    min-width: 140px;
  }
}

.how-steps--four {
  grid-template-columns: repeat(4, 1fr);
}

/* Trust why cards */
html.premium-site .trust-section--premium {
  background: #fff;
}

html.premium-site .trust-card--premium {
  padding: 2.25rem 1.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(6, 27, 90, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

html.premium-site .trust-card--premium:hover {
  transform: translateY(-10px);
  border-color: rgba(249, 176, 0, 0.5);
  box-shadow: 0 28px 64px rgba(6, 27, 90, 0.14);
}

html.premium-site .trust-card--premium:hover .trust-icon-badge {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 16px 40px rgba(249, 176, 0, 0.3);
}

html.premium-site .trust-section .trust-card h3 {
  font-family: var(--font);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
}

.trust-card__tick {
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
}

/* CTA */
.cta-section {
  padding: 5rem 0 6rem;
  background: var(--bg);
}

.cta-box {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(249, 176, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(249, 176, 0, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

html.premium-site .cta-box .section-title,
html.premium-site .cta-box h2,
html.premium-site #cta-title {
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 42ch;
  margin: 0 auto 1.75rem;
  font-size: var(--type-body);
}

.cta-box .cta-actions {
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* Footer */
html.premium-site .site-footer--rich {
  background: linear-gradient(180deg, #030a18 0%, #01060f 100%);
  padding: clamp(4.5rem, 9vw, 5.5rem) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(0, 150, 255, 0.08);
}

.footer-premium--rich {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 2.5rem 1.75rem;
  align-items: start;
}

.footer-premium__mission {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 32ch;
}

.footer-social--footer {
  margin-top: 1.5rem;
}

html.premium-site .footer-bottom--rich {
  margin-top: 3rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

html.premium-site .footer-bottom--rich p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-premium {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem 2rem;
  align-items: start;
}

.footer-premium__logo img {
  max-width: 200px;
  height: auto;
  filter: url(#logo-white-outline);
}

.footer-premium__tagline {
  margin: 1rem 0 0.35rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.footer-premium__blurb {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36ch;
}

.footer-premium__contact-line {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.footer-premium__contact-line a {
  color: var(--accent);
  font-weight: 600;
}

.footer-premium__contact-line a:hover {
  color: #ffca42;
}

html.premium-site .footer-nav__title {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--on-accent);
  transform: translateY(-3px);
}

.footer-about-blurb {
  margin: 0.75rem 0 0;
  font-size: var(--type-body);
  opacity: 0.8;
  max-width: 32ch;
  line-height: 1.55;
}

html.premium-site .footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (max-width: 1100px) {
  .footer-premium--rich {
    grid-template-columns: 1fr 1fr;
  }

  .how-steps--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-v2 {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero-v2__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-v2__title {
    max-width: none;
    margin-inline: auto;
  }

  .hero-v2__lead,
  .hero-v2__note {
    margin-inline: auto;
  }

  .hero-v2__actions {
    justify-content: center;
  }

  .hero-v2__visual-stage {
    order: -1;
    margin-inline: auto;
  }

  .hero-v2__visual {
    order: 0;
  }

  .device-frame--hero.device-frame--3d,
  .device-frame--hero.device-frame--float-ui {
    transform: none;
    animation: none;
  }

  .hero-v2__visual--float {
    animation: hero-phone-float 6s ease-in-out infinite;
  }

  .phone-mockup-glass--hero {
    max-width: 300px;
  }

  .app-slider--pro {
    padding: 2rem 1.25rem 1.75rem;
  }

  .app-showcase--premium .container {
    overflow-x: hidden;
  }
}

/* Premium mobile nav — hamburger + dropdown (about.css has no .is-open styles) */
@media (max-width: 900px) {
  html.premium-site .site-nav {
    height: auto;
    min-height: var(--nav-h);
  }

  html.premium-site .nav-inner {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0.35rem;
  }

  html.premium-site .brand-logo {
    height: 38px;
    width: auto;
    max-width: min(128px, 36vw);
  }

  html.premium-site .nav-toggle {
    display: flex;
    order: 3;
  }

  html.premium-site .site-nav:not(.is-scrolled) .nav-toggle span {
    background: #fff;
  }

  html.premium-site .nav-actions {
    order: 2;
    margin-left: auto;
  }

  html.premium-site .nav-cta-desktop {
    display: none !important;
  }

  html.premium-site .nav-inner > nav {
    order: 5;
    flex: 1 1 100%;
    width: 100%;
  }

  html.premium-site .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow: visible;
    gap: 0;
    width: 100%;
    padding: 0.5rem 0 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.35rem;
  }

  html.premium-site .site-nav.is-scrolled .nav-links {
    border-top-color: rgba(6, 27, 90, 0.1);
  }

  html.premium-site .nav-links.is-open {
    display: flex;
  }

  html.premium-site .nav-links li {
    flex-shrink: 1;
    width: 100%;
  }

  html.premium-site .nav-links a {
    display: block;
    padding: 0.7rem 0;
    font-size: 0.95rem;
    white-space: normal;
  }

  html.premium-site .nav-mobile-cta {
    display: list-item;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  html.premium-site .site-nav.is-scrolled .nav-mobile-cta {
    border-top-color: rgba(6, 27, 90, 0.08);
  }

  html.premium-site .nav-mobile-cta .nav-cta {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  html.premium-site .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  html.premium-site {
    --section-pad: clamp(2.75rem, 8vw, 4rem);
    --type-hero: clamp(1.85rem, 8.5vw, 2.65rem);
    --nav-h: 64px;
  }

  html.premium-site .container {
    width: min(1140px, calc(100vw - 1.5rem));
  }

  html.premium-site .brand-logo {
    height: 32px;
    max-width: min(110px, 34vw);
  }

  html.premium-site .footer-premium__logo img {
    max-width: 140px;
  }

  html.premium-site .section-header {
    margin-bottom: 2rem;
  }

  .hero-v2 {
    padding: calc(var(--nav-h) + 2.5rem) 0 3rem;
  }

  .hero-v2__grid {
    gap: 1.75rem;
  }

  .hero-v2__tagline {
    font-size: 1.1rem;
  }

  .hero-v2__lead {
    margin-bottom: 1.75rem;
    font-size: 1rem;
  }

  .hero-v2__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-v2__actions .btn-hero-primary,
  .hero-v2__actions .btn-hero-secondary {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
  }

  .hero-v2__visual-stage {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-inline: 0.25rem;
  }

  .device-frame--hero {
    width: min(280px, 82vw);
  }

  .hero-v2__phone-glow {
    width: min(300px, 90vw);
    height: min(400px, 55vh);
  }

  .claimed-strip {
    margin-top: -1rem;
    padding-bottom: 2rem;
  }

  .claimed-strip__inner {
    padding: 1.15rem 1rem;
  }

  .claimed-strip__title {
    font-size: 1.05rem;
    padding-inline: 0.25rem;
  }

  .how-steps--four {
    grid-template-columns: 1fr;
  }

  .app-slider,
  .app-slider--pro.app-slider--mobile {
    margin-top: 1.5rem;
    padding: 1.25rem 0.65rem 1.35rem;
    border-radius: 20px;
  }

  .app-slider__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
  }

  .app-slider__tab {
    width: 100%;
    font-size: 0.72rem;
    padding: 0.5rem 0.5rem;
    text-align: center;
    line-height: 1.25;
  }

  .app-slider__stage {
    min-height: 0;
    padding: 0.25rem 0 0.5rem;
  }

  .device-frame--slider {
    width: min(248px, 76vw);
  }

  .app-slider__slide {
    transform: translateY(10px) scale(0.96);
    filter: blur(3px);
  }

  .app-slider__slide figcaption {
    font-size: 0.88rem;
    margin-top: 0.75rem;
  }

  .footer-premium--rich {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .footer-premium,
  .footer-premium--rich {
    grid-template-columns: 1fr 1fr;
  }

  .footer-premium__brand {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.premium-site .premium-section.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-v2__visual--float,
  .btn-hero-primary--glow,
  .hero-v2__gradient-anim,
  .hero-v2__grid-pattern--drift,
  .hero-v2__particle,
  .hero-v2__map-layer,
  .hero-v2__phone-glow,
  .device-frame--float-ui,
  .claimed-strip__track {
    animation: none;
  }

  .device-frame--3d,
  .device-frame--float-ui {
    transform: rotateY(-12deg) rotateX(6deg);
  }

  .app-slider__slide {
    transition: opacity 0.2s;
    filter: none;
  }
}
