/* ============================================================
   DigiAddress — Attractive landing polish (loaded last)
   Brand-first hero, Outfit/Figtree type, navy + gold, motion.
   ============================================================ */

html.premium-site {
  --font-display: "Outfit", "Noto Sans Kannada", sans-serif;
  --font-body: "Figtree", "Noto Sans Kannada", sans-serif;
  --accent-2: #38bdf8;
  --grad-gold: linear-gradient(135deg, #ffe08a 0%, #f9b000 52%, #e08a00 100%);
  --grad-navy: linear-gradient(145deg, #020c28 0%, #041445 42%, #0a3580 100%);
  --shadow-pop: 0 18px 40px rgba(2, 12, 40, 0.14), 0 6px 16px rgba(2, 12, 40, 0.08);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  scroll-behavior: smooth;
}

html.premium-site,
html.premium-site body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html.premium-site h1,
html.premium-site h2,
html.premium-site h3,
html.premium-site .section-title,
html.premium-site .hero-v2__brand,
html.premium-site .hero-v2__title,
html.premium-site .nav-cta,
html.premium-site .btn-hero-primary,
html.premium-site .btn-hero-secondary {
  font-family: var(--font-display);
}

html.premium-site ::selection {
  background: rgba(249, 176, 0, 0.35);
  color: #041445;
}

html.premium-site::-webkit-scrollbar { width: 10px; }
html.premium-site::-webkit-scrollbar-track { background: #eef1f7; }
html.premium-site::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0b2f8a, #061b5a);
  border-radius: 999px;
  border: 2px solid #eef1f7;
}

/* ── Nav ── */
html.premium-site .site-nav {
  background: rgba(2, 12, 40, 0.7);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

html.premium-site .brand-logo {
  height: 46px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

html.premium-site .nav-links a {
  position: relative;
  font-weight: 600;
}

html.premium-site .nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.1rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-gold);
  transform: translateX(-50%);
  transition: width 0.25s var(--ease-out);
}

html.premium-site .nav-links a:hover::after { width: 55%; }

html.premium-site .nav-cta,
html.premium-site .nav-cta-desktop {
  background: var(--grad-gold);
  color: #041445 !important;
  box-shadow: 0 6px 20px rgba(249, 176, 0, 0.35);
}

/* ── Hero: full-bleed brand composition ── */
.hero-v2 {
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h, 72px) + 2.5rem) 0 5.5rem;
  background: var(--grad-navy);
  position: relative;
  overflow: hidden;
}

.hero-v2__gradient-anim {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 55% 45% at 12% 20%, rgba(56, 189, 248, 0.18) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 88% 70%, rgba(249, 176, 0, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 35% 30% at 55% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  animation: hero-aurora 16s ease-in-out infinite alternate;
  opacity: 1;
  pointer-events: none;
}

@keyframes hero-aurora {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-2%, 3%, 0) scale(1.07); }
  100% { transform: translate3d(2%, -2%, 0) scale(1.03); }
}

.hero-v2__mesh {
  position: absolute;
  inset: 0;
  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 70% 60% at 40% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 40% 40%, #000 0%, transparent 75%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-v2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  background: var(--surface, #fff);
  clip-path: ellipse(70% 100% at 50% 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-v2__grid {
  position: relative;
  z-index: 3;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-v2__brand {
  margin: 0 0 0.55rem;
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  background: linear-gradient(105deg, #ffffff 10%, #dbeafe 45%, #ffd76a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brand-in 0.9s var(--ease-out) both;
}

@keyframes brand-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.hero-v2__title {
  margin: 0 0 0.85rem;
  max-width: 18ch;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #ffd76a !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  text-shadow: none !important;
  animation: brand-in 0.9s 0.08s var(--ease-out) both;
}

.hero-v2__lead {
  margin: 0 0 1.75rem;
  max-width: 38ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  animation: brand-in 0.9s 0.14s var(--ease-out) both;
}

.hero-v2__actions {
  gap: 0.85rem;
  animation: brand-in 0.9s 0.2s var(--ease-out) both;
}

.btn-hero-primary {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: var(--grad-gold);
  color: #041445;
  font-weight: 700;
  min-height: 54px;
  padding-inline: 1.85rem;
  box-shadow: 0 8px 28px rgba(249, 176, 0, 0.4);
}

.btn-hero-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s var(--ease-out);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 176, 0, 0.5);
}

.btn-hero-primary:hover::after { left: 130%; }

.btn-hero-secondary {
  border-radius: 999px;
  min-height: 54px;
  padding-inline: 1.85rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  color: #fff;
}

.hero-v2__visual-stage {
  position: relative;
  justify-self: center;
}

.hero-v2__phone-glow {
  position: absolute;
  inset: 8% -8%;
  background:
    radial-gradient(circle, rgba(249, 176, 0, 0.32) 0%, rgba(56, 189, 248, 0.12) 42%, transparent 70%);
  animation: glow-pulse 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.08); }
}

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

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(-1.2deg); }
}

.device-frame--hero {
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 10px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* Hide old hero bits if still in DOM elsewhere */
.hero-v2__eyebrow,
.hero-v2__tagline,
.hero-v2__note { display: none !important; }

/* ── Sections ── */
html.premium-site .section-label {
  background: linear-gradient(90deg, rgba(249, 176, 0, 0.18), rgba(11, 47, 138, 0.08));
  border: 1px solid rgba(249, 176, 0, 0.35);
  color: #061b5a;
  font-family: var(--font-display);
}

html.premium-site .section-title {
  letter-spacing: -0.035em;
}

html.premium-site .section-header::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 4px;
  margin: 1rem auto 0;
  background: var(--grad-gold);
}

.how-section--premium,
.trust-section--premium {
  background:
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(249, 176, 0, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 100%, rgba(11, 47, 138, 0.05) 0%, transparent 55%),
    var(--surface-2, #f8f9fc);
}

/* Screenshot cards */
.app-screen-card {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #f7f9ff 100%);
  border-radius: 24px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.app-screen-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.app-screen-card:hover::before { opacity: 1; }

.app-screen-card__name {
  font-family: var(--font-display);
  font-weight: 700;
}

/* How steps */
.how-step {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fbfcff);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.how-step:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 176, 0, 0.4);
  box-shadow: var(--shadow-pop);
}

.how-step-num {
  background: var(--grad-gold) !important;
  color: #041445 !important;
  box-shadow: 0 6px 16px rgba(249, 176, 0, 0.4) !important;
}

.how-step h3 { font-family: var(--font-display); }

/* Live feature panels — override flat modern/simple backgrounds */
html.premium-site .live-showcase {
  padding: 5.5rem 0 5rem;
  background:
    radial-gradient(ellipse 55% 50% at 8% 12%, rgba(34, 197, 94, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 92% 28%, rgba(249, 176, 0, 0.16) 0%, transparent 52%),
    radial-gradient(ellipse 45% 40% at 70% 88%, rgba(56, 189, 248, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #eef4ff 0%, #f7fafc 42%, #ffffff 100%) !important;
}

html.premium-site .live-showcase__header .section-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  color: #041445;
}

html.premium-site .live-showcase__header .section-lead {
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  color: #475569;
  max-width: 46ch;
  margin-inline: auto;
}

html.premium-site .live-showcase__panels {
  gap: 1.75rem;
}

html.premium-site .live-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem 2.25rem;
  align-items: center;
  padding: 2.35rem 2.5rem;
  border-radius: 28px;
  border: 1px solid rgba(4, 20, 69, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 40px rgba(2, 12, 40, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

html.premium-site .live-panel::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 55%;
  height: 90%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.55;
  filter: blur(2px);
}

html.premium-site .live-panel--green {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(34, 197, 94, 0.16) 0%, transparent 58%),
    linear-gradient(165deg, #ffffff 0%, #f3fdf6 100%) !important;
}

html.premium-site .live-panel--green::after {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12), transparent 70%);
}

html.premium-site .live-panel--gold {
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(249, 176, 0, 0.2) 0%, transparent 58%),
    linear-gradient(165deg, #ffffff 0%, #fff8e8 100%) !important;
}

html.premium-site .live-panel--gold::after {
  inset: -40% -15% auto auto;
  background: radial-gradient(circle, rgba(249, 176, 0, 0.14), transparent 70%);
}

html.premium-site .live-panel--blue {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(56, 189, 248, 0.18) 0%, transparent 58%),
    linear-gradient(165deg, #ffffff 0%, #eef8ff 100%) !important;
}

html.premium-site .live-panel--blue::after {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.14), transparent 70%);
}

html.premium-site .live-panel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-pop);
}

html.premium-site .live-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.95rem;
  border: 1px solid transparent;
}

html.premium-site .live-panel__badge--green {
  color: #14532d;
  background: rgba(34, 197, 94, 0.16);
  border-color: rgba(34, 197, 94, 0.28);
}

html.premium-site .live-panel__badge--gold {
  color: #92400e;
  background: rgba(249, 176, 0, 0.2);
  border-color: rgba(249, 176, 0, 0.4);
}

html.premium-site .live-panel__badge--blue {
  color: #0b2f8a;
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.35);
}

html.premium-site .live-panel__title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  color: #041445;
  margin: 0 0 0.85rem;
  line-height: 1.2;
}

html.premium-site .live-panel__intro {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 1.2rem;
}

html.premium-site .live-panel__list {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

html.premium-site .live-panel__list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.55rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #1e293b;
  border-bottom: 1px solid rgba(4, 20, 69, 0.05);
}

html.premium-site .live-panel__list li:last-child { border-bottom: 0; }

html.premium-site .live-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 0 0 3px rgba(249, 176, 0, 0.18);
}

html.premium-site .live-panel__list strong {
  color: #041445;
  font-weight: 700;
}

html.premium-site .live-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

html.premium-site .live-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.1);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.22);
}

html.premium-site .live-tag--gold {
  background: rgba(249, 176, 0, 0.14);
  color: #92400e;
  border-color: rgba(249, 176, 0, 0.35);
}

html.premium-site .live-tag--blue {
  background: rgba(56, 189, 248, 0.12);
  color: #0b2f8a;
  border-color: rgba(56, 189, 248, 0.3);
}

html.premium-site .live-panel__visual {
  min-height: 240px;
  border-radius: 22px;
  padding: 1.5rem;
  position: relative;
  isolation: isolate;
}

html.premium-site .live-panel__visual--green {
  background:
    radial-gradient(circle at 50% 45%, rgba(34, 197, 94, 0.22) 0%, transparent 55%),
    linear-gradient(160deg, rgba(34, 197, 94, 0.14), rgba(34, 197, 94, 0.04));
}

html.premium-site .live-panel__visual--gold {
  background:
    radial-gradient(circle at 50% 45%, rgba(249, 176, 0, 0.28) 0%, transparent 55%),
    linear-gradient(160deg, rgba(249, 176, 0, 0.18), rgba(249, 176, 0, 0.05));
}

html.premium-site .live-panel__visual--blue {
  background:
    radial-gradient(circle at 50% 45%, rgba(56, 189, 248, 0.26) 0%, transparent 55%),
    linear-gradient(160deg, rgba(56, 189, 248, 0.16), rgba(11, 47, 138, 0.06));
}

html.premium-site .live-visual-card {
  position: relative;
  text-align: center;
  padding: 1.75rem 1.5rem 1.5rem;
  max-width: 280px;
  width: 100%;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: var(--shadow-pop);
  transition: transform 0.4s var(--ease-out);
}

html.premium-site .live-panel:hover .live-visual-card {
  transform: translateY(-6px) scale(1.04);
}

html.premium-site .live-visual-card .live-feature-icon,
html.premium-site .live-visual-card img {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  display: block;
}

html.premium-site .live-visual-card__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #041445;
  letter-spacing: -0.01em;
}

html.premium-site .live-code-sample {
  display: block;
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, monospace;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #041445;
  margin: 0 auto 0.9rem;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(135deg, #fff7e0, #ffe08a);
  border-radius: 14px;
  border: 1px dashed rgba(180, 83, 9, 0.45);
  box-shadow: 0 8px 20px rgba(249, 176, 0, 0.2);
}

html.premium-site .live-visual-pulse {
  width: 14px;
  height: 14px;
  top: 1.1rem;
  right: 1.1rem;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: live-attractive-pulse 2s ease-out infinite;
}

@keyframes live-attractive-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

html.premium-site .live-showcase__footnote {
  margin-top: 2.75rem;
  padding: 1rem 1.35rem;
  max-width: 56ch;
  border-radius: 16px;
  background: rgba(4, 20, 69, 0.04);
  border: 1px solid rgba(4, 20, 69, 0.08);
  font-size: 0.95rem;
  color: #475569;
}

html.premium-site .live-showcase__footnote strong {
  color: #041445;
}

@media (max-width: 900px) {
  html.premium-site .live-panel,
  html.premium-site .live-panel--reverse {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.35rem;
  }

  html.premium-site .live-panel__visual {
    min-height: 200px;
    order: -1;
  }

  html.premium-site .live-panel--reverse .live-panel__visual {
    order: -1;
  }
}

/* Highlights strip — cohesive metric band */
html.premium-site .highlights-strip {
  padding: 1.25rem 0 3.5rem;
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(249, 176, 0, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #f4f7ff 0%, #ffffff 100%) !important;
}

html.premium-site .highlights-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0.35rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, #020c28 0%, #041445 45%, #0a3580 100%);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}

html.premium-site .highlight-pill {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}

html.premium-site .highlight-pill:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

html.premium-site .highlight-pill::before {
  content: none;
}

html.premium-site .highlight-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

html.premium-site .highlight-pill__icon {
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

html.premium-site .highlight-pill__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html.premium-site .highlight-pill__label {
  display: block;
  margin-top: 0.15rem;
  max-width: 16ch;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 700px) {
  html.premium-site .highlights-strip__grid {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    padding: 0.4rem;
  }

  html.premium-site .highlight-pill {
    padding: 1.35rem 1.1rem;
    border-radius: 20px;
  }

  html.premium-site .highlight-pill:not(:last-child)::after {
    display: none;
  }

  html.premium-site .highlight-pill:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  html.premium-site .highlight-pill__label {
    max-width: none;
  }
}

/* Trust */
html.premium-site .trust-card--premium {
  background: linear-gradient(180deg, #fff, #fbfcff);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

html.premium-site .trust-card--premium:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-pop);
}

.trust-grid--six .trust-card--premium:nth-child(1) .trust-icon-badge { background: #fff4d6; }
.trust-grid--six .trust-card--premium:nth-child(2) .trust-icon-badge { background: #e0f2fe; }
.trust-grid--six .trust-card--premium:nth-child(3) .trust-icon-badge { background: #ede9fe; }
.trust-grid--six .trust-card--premium:nth-child(4) .trust-icon-badge { background: #dcfce7; }
.trust-grid--six .trust-card--premium:nth-child(5) .trust-icon-badge { background: #ffe4e6; }
.trust-grid--six .trust-card--premium:nth-child(6) .trust-icon-badge { background: #fef9c3; }

html.premium-site .trust-card--premium:hover .trust-icon-badge {
  transform: scale(1.1) rotate(-4deg);
}

/* Leaderboard */
.suggest-leaderboard {
  background: linear-gradient(180deg, #fff, #f8faff);
  border-radius: 24px;
  box-shadow: var(--shadow-pop);
}

/* CTA */
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 70% 90% at 90% -10%, rgba(249, 176, 0, 0.24) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 5% 110%, rgba(56, 189, 248, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #041445 0%, #061b5a 50%, #0b2f8a 100%);
  box-shadow: var(--shadow-pop);
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  right: -70px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(249, 176, 0, 0.28) 0%, transparent 70%);
  animation: glow-pulse 6s ease-in-out infinite;
  pointer-events: none;
}

.cta-section .section-title {
  color: #fff !important;
  font-family: var(--font-display);
}

/* Footer */
.site-footer--rich {
  position: relative;
  background: linear-gradient(180deg, #041445 0%, #020c28 100%);
}

.site-footer--rich::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 80vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 176, 0, 0.55), transparent);
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: #f9b000;
}

/* Reveal */
.reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}

.reveal {
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger:not(.is-visible) .stagger-item {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-stagger.is-visible .stagger-item {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal-stagger.is-visible .stagger-item:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible .stagger-item:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible .stagger-item:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible .stagger-item:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible .stagger-item:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible .stagger-item:nth-child(6) { transition-delay: 0.40s; }

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

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

  .hero-v2__title { max-width: none; }

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

  .hero-v2__visual-stage {
    max-width: 250px;
    margin-inline: auto;
    margin-top: 1.5rem;
  }

  .hero-v2::before { height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html.premium-site { scroll-behavior: auto; }

  .hero-v2__gradient-anim,
  .hero-v2__visual--float,
  .hero-v2__phone-glow,
  .hero-v2__brand,
  .hero-v2__title,
  .hero-v2__lead,
  .hero-v2__actions,
  .cta-box::after {
    animation: none !important;
  }

  .reveal:not(.is-visible),
  .reveal-stagger:not(.is-visible) .stagger-item {
    opacity: 1;
    transform: none;
  }
}
