:root {
  --bg: #07101f;
  --bg2: #0b1730;
  --panel: rgba(15, 25, 43, 0.58);
  --panel-strong: rgba(8, 14, 28, 0.92);
  --line: rgba(148, 163, 184, 0.16);
  --text: #88AFFB;
  --muted: #afbdd8;
  --primary: #7c3aed;
  --primary2: #2563eb;
  --accent: #38bdf8;
  --success: #22c55e;
  --shadow: 0 24px 60px rgba(2, 8, 23, .32);
  --radius: 24px;
  --max: 1180px;
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  line-height: 1.65
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(56, 189, 248, .18), transparent 28%), radial-gradient(circle at 86% 16%, rgba(124, 58, 237, .22), transparent 28%), radial-gradient(circle at 50% 78%, rgba(37, 99, 235, .18), transparent 32%), linear-gradient(180deg, #07101f 0%, #0b1730 100%)
}
a {
  color: #FFFFFF;
  text-decoration: none
}
a:hover {
  color: #88AFFB
}
img {
  max-width: 100%;
  display: block
}
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto
}
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(4, 10, 20, .66);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line)
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem
}
.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 800;
  color: #fff
}
.brand img {
  width: 78px;
  height: 78px
}
.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: .76rem
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap
}
.nav-links a {
  font-weight: 650;
  color: var(--muted)
}
.btn, .nav-cta, .menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .88rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, .18);
  min-height: 48px;
  font-weight: 750;
  color: #fff;
  background: rgba(255, 255, 255, .04)
}
.btn-primary, .nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 12px 34px rgba(37, 99, 235, .35)
}
.btn-secondary {
  background: rgba(255, 255, 255, .03)
}
.btn-ghost {
  background: transparent
}
.menu-toggle {
  display: none
}
main, header, section, footer {
  position: relative;
  z-index: 1
}
.hero {
  padding: 5.7rem 0 4rem
}
.hero-grid, .two-col {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 2rem;
  align-items: center
}
.eyebrow, .pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, .3);
  background:
    radial-gradient(circle at 12% 12%, rgba(56, 189, 248, .18), transparent 28%), radial-gradient(circle at 86% 16%, rgba(124, 58, 237, .22), transparent 28%), radial-gradient(circle at 50% 78%, rgba(37, 99, 235, .18), transparent 32%), linear-gradient(180deg, #07101f 0%, #0b1730 100%);
  color: #deedff;
  font-size: .82rem;
  letter-spacing: .03em;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
}
h1, h2, h3, h4 {
  line-height: 1.12;
  margin: 0 0 1rem
}
h1 {
  font-size: clamp(2.5rem, 5.8vw, 4.9rem);
  letter-spacing: -.035em
}
h2 {
  font-size: clamp(1.95rem, 3.6vw, 3rem)
}
h3 {
  font-size: 1.34rem
}
p.lead, .hero-copy {
  font-size: 1.11rem;
  color: #d6e1f8;
  max-width: 64ch
}
.hero-actions, .button-row, .chip-row {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap
}
.hero-actions, .button-row {
  margin: 1.5rem 0 1rem
}
.card, .panel, .feature-card, .post-card, .price-card, .quote, .kpi, .showcase-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow)
}
.panel-dark {
  background: var(--panel-strong)
}
.hero-visual, .stack, .visual-stack {
  display: grid;
  gap: 1rem
}
.device-card {
  position: relative;
  background: linear-gradient(180deg, rgba(34, 108, 166, 1.00), rgba(8, 13, 24, .92));
  border-radius: 28px;
  padding: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden
}
.device-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% 35%;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 58, 237, .35), transparent 55%);
  pointer-events: none
}
.device-card1 {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
    vertical-align:top;
}
.device-card1::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% 35%;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 58, 237, .35), transparent 55%);
  pointer-events: none
}
.device-card1 img {
  border-radius: 28px;
}
.hero-stats, .feature-grid, .metrics-grid, .post-grid, .blog-grid, .price-grid, .logo-grid {
  display: grid;
  gap: 1rem
}
.hero-stats {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.7rem
}
.feature-grid, .metrics-grid, .post-grid {
  grid-template-columns: repeat(3, 1fr)
}
.blog-grid {
  grid-template-columns: repeat(2, 1fr)
}
.price-grid {
  grid-template-columns: repeat(3, 1fr)
}
.kpi strong, .stat strong, .metric strong {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: .25rem
}
.kpi, .stat, .metric {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03)
}
.chip {
  padding: .55rem .82rem;
  border-radius: 10px;
  border: 1px solid rgba(124, 58, 237, .34);
  background: rgba(34, 108, 166, 1.00);
  color: #e1d7ff;
  font-weight: 650;
  font-size: .92rem
}
.section {
  padding: 2.7rem 0
}
.section-tight {
  padding: 2.2rem 0
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.3rem
}
.muted {
  color: var(--muted)
}
.showcase-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1rem;
  align-items: center
}
.showcase-copy p, .showcase-copy li {
  color: #d5e2f9
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem
}
.icon {
  font-size: 1.4rem;
  margin-bottom: .5rem
}
.price-card.featured {
  outline: 2px solid rgba(56, 189, 248, .32);
  background: linear-gradient(180deg, rgba(18, 30, 58, .94), rgba(8, 14, 28, .96))
}
.breadcrumbs {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 1rem
}
.breadcrumbs a {
  color: var(--muted)
}
.page-hero {
  padding: 4.8rem 0 2.2rem
}
.page-hero p {
  max-width: 72ch
}
.cta-band {
  background: linear-gradient(135deg, rgba(124, 58, 237, .22), rgba(56, 189, 248, .16));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}
.table {
  width: 100%;
  border-collapse: collapse
}
.table th, .table td {
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top
}
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line)
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 1rem
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem
}
.legal-note {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 1rem
}
.post-content {
  max-width: 850px
}
.post-content h2 {
  margin-top: 2rem
}
.post-content .panel {
  margin: 1.2rem 0
}
.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .7rem
}
.list-check li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  margin-right: .6rem
}
.logo-grid {
  grid-template-columns: repeat(4, 1fr)
}
.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  color: #cddaf2;
  font-weight: 700
}
@media (max-width: 1000px) {
  .hero-grid, .two-col, .footer-grid, .feature-grid, .metrics-grid, .post-grid, .price-grid, .hero-stats, .blog-grid, .showcase-card, .icon-grid, .logo-grid {
    grid-template-columns: 1fr
  }
}
@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex
  }
  .nav {
    flex-wrap: wrap;
    padding: .7rem 0
  }
  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 1rem
  }
  .nav-open .nav-links {
    display: flex
  }
  .hero {
    padding-top: 4.4rem
  }
  .section {
    padding: 3.5rem 0
  }
  h1 {
    font-size: clamp(2.25rem, 10vw, 3.6rem)
  }
}
.cookie-modal-open {
  overflow: hidden
}
.footer-link-button, .cookie-link-button {
  appearance: none;
  background: none;
  border: 0;
  color: #dce8ff;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left
}
.footer-link-button:hover, .cookie-link-button:hover {
  text-decoration: underline;
  color: #fff
}
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 1rem
}
.cookie-banner__inner {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
  background: rgba(7, 16, 31, .96);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem
}
.cookie-banner__text h2 {
  font-size: 1.2rem;
  margin-bottom: .4rem
}
.cookie-banner__text p {
  margin: .2rem 0;
  color: #d6e1f8
}
.cookie-banner__small {
  font-size: .94rem
}
.cookie-banner__actions, .cookie-modal__footer {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .82rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, .18);
  min-height: 46px;
  font-weight: 750;
  color: #fff;
  background: rgba(255, 255, 255, .04);
  cursor: pointer
}
.cookie-btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2))
}
.cookie-modal[hidden], .cookie-banner[hidden] {
  display: none !important
}
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130
}
.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, .7);
  backdrop-filter: blur(4px)
}
.cookie-modal__panel {
  position: relative;
  max-width: 760px;
  margin: 6vh auto;
  background: rgba(7, 16, 31, .98);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden
}
.cookie-modal__header, .cookie-modal__footer {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line)
}
.cookie-modal__footer {
  border-top: 1px solid var(--line);
  border-bottom: 0
}
.cookie-modal__body {
  padding: 1.2rem
}
.cookie-modal__close {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer
}
.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line)
}
.cookie-option h3 {
  margin: 0 0 .35rem
}
.cookie-option p, .cookie-modal__note {
  color: #d6e1f8
}
.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 56px;
  height: 32px;
  flex: 0 0 auto
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0
}
.cookie-switch__slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, .3);
  transition: .2s
}
.cookie-switch__slider::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: .2s
}
.cookie-switch input:checked + .cookie-switch__slider {
  background: linear-gradient(135deg, var(--primary), var(--primary2))
}
.cookie-switch input:checked + .cookie-switch__slider::before {
  transform: translateX(24px)
}
@media (max-width:760px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch
  }
  .cookie-modal__panel {
    margin: 0;
    min-height: 100vh;
    border-radius: 0
  }
  .cookie-banner {
    padding: .75rem
  }
}
.hero-enhanced {
  position: relative;
  overflow: clip
}
.hero-copy-col {
  position: relative;
  z-index: 2
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1.1rem 0 0
}
.proof-pill {
  display: inline-flex;
  align-items: center;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(148, 163, 184, .18);
  backdrop-filter: blur(10px);
  color: #dce8ff;
  font-size: .9rem;
  font-weight: 650
}
.eyebrow-dot {
  display: inline-block;
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  box-shadow: 0 0 0 6px rgba(56, 189, 248, .12);
  margin-right: .7rem;
  vertical-align: middle
}
.hero-bg-orb, .hero-grid-lines, .hero-noise, .hero-ring, .hero-float-card, .device-shine {
  pointer-events: none
}
.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: .72;
  will-change: transform
}
.hero-bg-orb-1 {
  width: 20rem;
  height: 20rem;
  left: -4rem;
  top: 1rem;
  background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, .24), rgba(56, 189, 248, .06) 48%, transparent 72%);
  animation: orbDriftA 11s ease-in-out infinite
}
.hero-bg-orb-2 {
  width: 16rem;
  height: 16rem;
  right: 2rem;
  top: 5rem;
  background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, .28), rgba(124, 58, 237, .08) 46%, transparent 74%);
  animation: orbDriftB 14s ease-in-out infinite
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent 80%);
  opacity: .22
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: radial-gradient(rgba(255, 255, 255, .6) .7px, transparent .9px);
  background-size: 18px 18px;
  mix-blend-mode: soft-light
}
.hero-visual {
  position: relative;
  min-height: 100%
}
.hero-ring {
  position: absolute;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 999px
}
.hero-ring-a {
  width: 20rem;
  height: 20rem;
  right: 8%;
  top: 4%;
  box-shadow: 0 0 120px rgba(56, 189, 248, .08) inset
}
.hero-ring-b {
  width: 13rem;
  height: 13rem;
  left: 6%;
  bottom: 14%;
  box-shadow: 0 0 90px rgba(124, 58, 237, .12) inset
}
.hero-float-card {
  position: absolute;
  right: -1rem;
  top: 18%;
  display: grid;
  gap: .2rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(12, 22, 42, .7);
  border: 1px solid rgba(148, 163, 184, .18);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  z-index: 3;
  max-width: 180px
}
.hero-float-card strong {
  font-size: 1.55rem;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}
.hero-float-card span {
  font-size: .9rem;
  color: #dce8ff
}
.hero-phone-card {
  position: relative;
  transform-origin: center
}
.device-card {
  position: relative;
  overflow: hidden
}
.device-shine {
  position: absolute;
  inset: -30% auto auto -20%;
  width: 52%;
  height: 170%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
  opacity: .65
}
.hero-secondary-row {
  position: relative;
  z-index: 2
}
.trust-strip {
  padding-top: 0;
  position: relative;
  z-index: 2
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(12, 20, 38, .88), rgba(7, 14, 28, .9));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px)
}
.trust-copy strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: .35rem
}
.trust-copy span {
  color: var(--muted)
}
.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem
}
.trust-metric {
  padding: .85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(148, 163, 184, .12)
}
.trust-metric strong {
  display: block;
  font-size: .98rem;
  margin-bottom: .18rem
}
.trust-metric span {
  font-size: .88rem;
  color: var(--muted)
}
.parallax-layer {
  will-change: transform;
  transform: translate3d(0, 0, 0)
}
@keyframes orbDriftA {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1)
  }
  25% {
    transform: translate3d(16px, -12px, 0) scale(1.04)
  }
  50% {
    transform: translate3d(6px, -26px, 0) scale(.98)
  }
  75% {
    transform: translate3d(-14px, -10px, 0) scale(1.03)
  }
}
@keyframes orbDriftB {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1)
  }
  25% {
    transform: translate3d(-14px, 10px, 0) scale(1.05)
  }
  50% {
    transform: translate3d(-6px, -18px, 0) scale(.97)
  }
  75% {
    transform: translate3d(12px, -8px, 0) scale(1.02)
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-orb-1, .hero-bg-orb-2 {
    animation: none
  }
  .parallax-layer {
    transform: none !important
  }
}
@media (max-width:1000px) {
  .trust-strip-inner, .trust-metrics {
    grid-template-columns: 1fr
  }
  .hero-float-card {
    right: .5rem;
    top: 10%
  }
  .hero-ring-a {
    right: 0
  }
  .hero-bg-orb-1 {
    width: 15rem;
    height: 15rem;
    left: -3rem;
    top: 2rem
  }
  .hero-bg-orb-2 {
    width: 12rem;
    height: 12rem;
    right: -1rem;
    top: 7rem
  }
}
@media (max-width:760px) {
  .hero-float-card {
    position: relative;
    right: auto;
    top: auto;
    margin: 0 0 1rem auto
  }
  .hero-grid-lines {
    background-size: 28px 28px
  }
  .proof-pill {
    font-size: .85rem
  }
  .hero-bg-orb-1 {
    width: 11rem;
    height: 11rem;
    left: -2rem;
    top: 3rem;
    opacity: .55
  }
  .hero-bg-orb-2 {
    width: 9rem;
    height: 9rem;
    right: -1rem;
    top: 8rem;
    opacity: .5
  }
}
/* Enhanced standout motion and eye candy */
.hero {
  overflow: clip
}
.hero-spotlight {
  position: absolute;
  inset: -12% -10% auto auto;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .14) 0%, rgba(96, 165, 250, .10) 22%, rgba(14, 165, 233, .07) 34%, transparent 62%);
  filter: blur(18px);
  opacity: .8;
  mix-blend-mode: screen;
  animation: spotlightFloat 11s ease-in-out infinite
}
.hero-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, .05) 48%, transparent 100%);
  background-size: 100% 9px;
  opacity: .06;
  mix-blend-mode: soft-light;
  pointer-events: none
}
.hero-bg-orb-3 {
  position: absolute;
  width: 9rem;
  height: 9rem;
  left: 44%;
  bottom: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .2), rgba(251, 146, 60, .18) 28%, rgba(251, 146, 60, .06) 54%, transparent 72%);
  filter: blur(10px);
  opacity: .55;
  animation: orbDriftC 15s ease-in-out infinite
}
.hero-marquee {
  margin-top: 1rem;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .14);
  background: rgba(8, 15, 30, .45);
  border-radius: 999px;
  backdrop-filter: blur(10px)
}
.hero-marquee-track {
  display: flex;
  gap: 1.75rem;
  white-space: nowrap;
  padding: .7rem 1rem;
  min-width: max-content;
  animation: marqueeDrift 24s linear infinite
}
.hero-marquee-track span {
  color: #cdddf7;
  font-size: .86rem;
  letter-spacing: .02em;
  position: relative
}
.hero-marquee-track span::before {
  content: "";
  display: inline-block;
  width: .4rem;
  height: .4rem;
  margin-right: .7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #38bdf8);
  box-shadow: 0 0 18px rgba(56, 189, 248, .55)
}
.hero-dot-cluster {
  position: absolute;
  right: 18%;
  top: 8%;
  width: 9rem;
  height: 9rem;
  opacity: .55;
  background-image: radial-gradient(circle, rgba(191, 219, 254, .55) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle at center, #000 35%, transparent 75%)
}
.hero-curve {
  position: absolute;
  border: 1px solid rgba(125, 211, 252, .16);
  border-radius: 999px;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, .12))
}
.hero-curve-a {
  width: 28rem;
  height: 12rem;
  right: -2rem;
  bottom: 1rem;
  transform: rotate(-12deg)
}
.hero-curve-b {
  width: 18rem;
  height: 7rem;
  left: 6%;
  top: 12%;
  transform: rotate(18deg)
}
.hero-mini-badge {
  position: absolute;
  padding: .65rem .85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, .82);
  border: 1px solid rgba(148, 163, 184, .16);
  box-shadow: 0 16px 45px rgba(2, 8, 23, .28);
  color: #e9f1ff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  backdrop-filter: blur(12px)
}
.hero-mini-badge-a {
  left: -.5rem;
  top: 30%
}
.hero-mini-badge-b {
  right: 10%;
  bottom: 8%
}
.standout-band {
  position: relative;
  z-index: 2;
  padding-top: .5rem
}
.standout-band-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
  align-items: stretch
}
.standout-card, .standout-chip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 23, 42, .86), rgba(8, 15, 30, .92));
  border: 1px solid rgba(148, 163, 184, .14);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px)
}
.standout-card {
  padding: 1.4rem 1.5rem 1.45rem
}
.standout-card::before, .standout-chip::before {
  content: "";
  position: absolute;
  inset: auto -15% -40% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, .22), transparent 68%)
}
.standout-kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(148, 163, 184, .12);
  font-size: .78rem;
  color: #cfe0ff;
  margin-bottom: .8rem
}
.standout-card strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: .55rem
}
.standout-card p {
  margin: 0;
  color: var(--muted)
}
.standout-stack {
  display: grid;
  gap: 1rem
}
.standout-chip {
  padding: 1.05rem 1.1rem;
  min-height: 7.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}
.standout-chip span {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #9fb8e8;
  margin-bottom: .35rem
}
.standout-chip strong {
  font-size: 1.02rem;
  line-height: 1.3
}
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform
}
@keyframes marqueeDrift {
  from {
    transform: translateX(0)
  }
  to {
    transform: translateX(-50%)
  }
}
@keyframes orbDriftC {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1)
  }
  25% {
    transform: translate3d(12px, -10px, 0) scale(1.06)
  }
  50% {
    transform: translate3d(-10px, -18px, 0) scale(.96)
  }
  75% {
    transform: translate3d(8px, 6px, 0) scale(1.03)
  }
}
@keyframes spotlightFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1)
  }
  50% {
    transform: translate3d(-26px, 20px, 0) scale(1.06)
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-spotlight, .hero-bg-orb-3, .hero-marquee-track {
    animation: none
  }
}
@media (max-width:1000px) {
  .standout-band-inner {
    grid-template-columns: 1fr
  }
  .hero-mini-badge-b {
    right: 4%;
    bottom: 4%
  }
  .hero-curve-a {
    width: 22rem
  }
  .hero-curve-b {
    left: 0
  }
  .hero-spotlight {
    width: 28rem;
    height: 28rem
  }
}
@media (max-width:760px) {
  .hero-mini-badge {
    display: none
  }
  .hero-marquee {
    border-radius: 22px
  }
  .hero-marquee-track {
    gap: 1rem;
    padding: .65rem .9rem
  }
  .hero-bg-orb-3 {
    width: 6.5rem;
    height: 6.5rem;
    left: 60%;
    bottom: 16%
  }
  .hero-dot-cluster {
    width: 6rem;
    height: 6rem;
    right: 4%;
    top: 2%
  }
  .standout-card, .standout-chip {
    border-radius: 22px
  }
}
/* Layout repair pass */
.hero-grid {
  align-items: start
}
.hero-copy-col {
  padding-right: .5rem
}
.hero-visual {
  align-content: start;
  min-width: 0
}
.hero-phone-card {
  max-width: 23rem;
  margin-left: auto
}
.hero-secondary-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
  min-width: 0
}
.hero-secondary-row .device-card, .hero-secondary-row .stack {
  min-width: 0
}
.hero-secondary-row .panel {
  min-height: 0
}
.hero-float-card {
  right: .25rem;
  top: 14%
}
.hero-spotlight {
  width: 34rem;
  height: 34rem;
  right: -6rem;
  top: -8rem;
  opacity: .62
}
.hero-curve-a {
  width: 22rem;
  height: 10rem;
  right: -1rem;
  bottom: 0
}
.hero-curve-b {
  width: 14rem;
  height: 6rem;
  left: 2%;
  top: 8%
}
.hero-dot-cluster {
  right: 8%;
  top: 4%;
  width: 7rem;
  height: 7rem
}
.trust-strip {
  margin-top: .75rem
}
@media (max-width:1000px) {
  .hero-phone-card {
    max-width: none;
    margin-left: 0
  }
  .hero-secondary-row {
    grid-template-columns: 1fr
  }
  .hero-copy-col {
    padding-right: 0
  }
  .hero-float-card {
    position: relative;
    right: auto;
    top: auto;
    margin: 0 0 .75rem auto
  }
}
@media (max-width:760px) {
  .hero-secondary-row {
    gap: .85rem
  }
  .hero-spotlight {
    width: 22rem;
    height: 22rem;
    right: -7rem;
    top: -5rem
  }
  .trust-strip-inner {
    padding: 1rem
  }
}
/* Hero safe layout fix */
.hero-safe {
  isolation: isolate
}
.hero-grid-safe {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: 2rem
}
.hero-visual-safe {
  position: relative;
  min-height: auto;
  display: block;
  min-width: 0
}
.hero-safe-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  min-width: 0
}
.hero-safe-panels {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: start;
  min-width: 0
}
.hero-safe-copy, .hero-scratch-card {
  min-width: 0
}
.hero-phone-card {
  max-width: 24rem;
  width: 100%;
  margin-left: auto;
  margin-right: 0
}
.hero-scratch-card img {
  max-height: 420px;
  object-fit: contain;
  width: 100%
}
.hero-phone-card img {
  max-height: 560px;
  object-fit: contain;
  width: 100%
}
.hero-float-card {
  right: .25rem;
  top: 8rem
}
.hero-mini-badge-a {
  left: -.35rem;
  top: 22%
}
.hero-mini-badge-b {
  right: 4%;
  bottom: 10%
}
.hero-ring-a {
  right: 4%;
  top: 1%
}
.hero-ring-b {
  left: 2%;
  bottom: 8%
}
.hero-curve-a {
  right: -1rem;
  bottom: 1rem
}
.hero-curve-b {
  left: 1%;
  top: 6%
}
@media (max-width:1100px) {
  .hero-grid-safe {
    grid-template-columns: 1fr
  }
  .hero-phone-card {
    max-width: 22rem;
    margin-left: 0
  }
  .hero-float-card {
    top: 1rem;
    right: 0
  }
  .hero-visual-safe {
    padding-top: 1rem
  }
}
@media (max-width:760px) {
  .hero-safe-panels {
    grid-template-columns: 1fr
  }
  .hero-phone-card {
    max-width: none
  }
  .hero-float-card {
    position: relative;
    margin: 0 0 .75rem auto
  }
  .hero-copy-col, .hero-visual-safe {
    overflow: hidden
  }
  .hero {
    padding-top: 4.8rem
  }
}
/* Hero title next-level gradient */
.hero h1 {
  line-height: 1.02;
  letter-spacing: -.03em;
  text-wrap: balance
}
.hero-title-gradient {
  display: inline-block;
  background: linear-gradient(90deg, #a78bfa 0%, #FFFFFF 24%, #f0abfc 50%, #60a5fa 76%, #a78bfa 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 10px 30px rgba(56, 189, 248, .18));
  animation: heroGradientShift 8s linear infinite;
  position: relative;
  padding-bottom: 5px
}
.hero-title-gradient::after {
  content: "";
  display: block;
  height: 3px;
  margin-top: .22em;
  width: 38%;
  min-width: 140px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(167, 139, 250, .0), rgba(187, 232, 252, 0.95), rgba(240, 171, 252, .0));
  box-shadow: 0 0 24px rgba(56, 189, 248, .28)
}
.hero-title-tail {
  color: #eef6ff
}
@keyframes heroGradientShift {
  0% {
    background-position: 0% 50%
  }
  100% {
    background-position: 220% 50%
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title-gradient {
    animation: none
  }
}
@media (max-width:760px) {
  .hero-title-gradient::after {
    width: 46%;
    min-width: 110px
  }
}
/* Hero image tidy pass */
.hero-visual-safe {
  padding-left: .5rem
}
.hero-safe-stack {
  gap: 1.15rem;
  max-width: 38rem;
  margin-left: auto
}
.hero-phone-card, .hero-scratch-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, .92), rgba(8, 15, 30, .96));
  border: 1px solid rgba(148, 163, 184, .16);
  box-shadow: 0 22px 60px rgba(2, 8, 23, .34);
  overflow: hidden
}
.hero-phone-card {
  max-width: 21.5rem;
  border-radius: 30px
}
.hero-phone-card img {
  display: block;
  max-height: 500px;
  width: 100%;
  object-fit: contain;
  object-position: center top;
  padding: 1rem 1rem .35rem
}
.hero-safe-panels {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 1.05rem;
  align-items: stretch
}
.hero-scratch-card {
  align-self: stretch;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%
}
.hero-scratch-card img {
  display: block;
  max-height: 305px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem
}
.hero-safe-copy {
  gap: 1rem
}
.hero-safe-copy .panel {
  min-height: 0;
  padding: 1.05rem 1.1rem
}
.hero-safe-copy .panel h3 {
  font-size: 1rem;
  margin-bottom: .45rem
}
.hero-safe-copy .panel p {
  font-size: .94rem;
  line-height: 1.55
}
.hero-safe-copy .panel-dark {
  background: linear-gradient(180deg, rgba(18, 27, 48, .9), rgba(12, 18, 34, .96));
  border-color: rgba(96, 165, 250, .16)
}
.hero-float-card {
  top: 6.5rem;
  right: -.4rem;
  max-width: 11rem
}
.hero-mini-badge-a {
  left: -.6rem;
  top: 18%
}
.hero-mini-badge-b {
  right: 1%;
  bottom: 12%
}
.hero-dot-cluster {
  right: 6%;
  top: 6%
}
@media (max-width:1100px) {
  .hero-visual-safe {
    padding-left: 0
  }
  .hero-safe-stack {
    max-width: none;
    margin-left: 0
  }
  .hero-phone-card {
    max-width: 19rem
  }
  .hero-phone-card img {
    max-height: 440px
  }
  .hero-scratch-card img {
    max-height: 270px
  }
}
@media (max-width:760px) {
  .hero-safe-stack {
    gap: .85rem
  }
  .hero-phone-card {
    max-width: 17rem;
    margin: 0 auto
  }
  .hero-phone-card img {
    max-height: 370px;
    padding: .8rem .8rem .2rem
  }
  .hero-safe-panels {
    grid-template-columns: 1fr;
    gap: .85rem
  }
  .hero-scratch-card img {
    max-height: 235px;
    padding: .8rem
  }
  .hero-safe-copy .panel {
    padding: .95rem 1rem
  }
}
/* Stable hero rebuild */
.hero.hero-enhanced.hero-safe {
  padding-bottom: 3.2rem;
}
.hero-grid-safe {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.hero-copy-col {
  max-width: 40rem;
  padding-right: 0;
}
.hero-copy-col .hero-stats {
  margin-top: 1.35rem;
}
.hero-visual-safe {
  position: relative;
  min-width: 0;
  min-height: 40rem;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 43rem);
  display: grid;
  grid-template-columns: minmax(16rem, 20rem) minmax(0, 1fr);
  align-items: end;
  gap: 1.15rem;
}
.hero-side-stack {
  display: grid;
  gap: 1rem;
  align-items: start;
}
.hero-phone-card, .hero-scratch-card, .hero-info-card {
  will-change: transform;
}
.hero-phone-card {
  margin: 0;
  border-radius: 2rem;
  padding: .9rem;
  box-shadow: 0 26px 70px rgba(2, 8, 23, .38);
}
.hero-phone-card img {
  width: 100%;
  max-height: 35rem;
  object-fit: contain;
  object-position: center top;
  padding: .55rem .55rem 0;
}
.hero-scratch-card {
  min-height: 17rem;
  border-radius: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .8rem;
}
.hero-scratch-card img {
  width: 100%;
  max-height: 16rem;
  object-fit: contain;
}
.hero-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.hero-info-card {
  height: 100%;
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.35rem;
}
.hero-info-card h3 {
  font-size: 1rem;
  margin-bottom: .45rem;
}
.hero-info-card p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.55;
}
.hero-float-card {
  top: 2rem;
  right: .25rem;
  max-width: 11.5rem;
}
.hero-mini-badge-a {
  left: 1rem;
  top: 4.75rem;
}
.hero-mini-badge-b {
  right: 2rem;
  bottom: 2rem;
}
.hero-ring-a {
  top: 2rem;
  right: 2rem;
}
.hero-ring-b {
  left: -1rem;
  bottom: 4.5rem;
}
.hero-curve-a {
  right: 3rem;
  bottom: .75rem;
}
.hero-curve-b {
  left: 1rem;
  top: 8rem;
}
.hero-dot-cluster {
  display: none
}
.hero-safe-stack, .hero-safe-panels, .hero-safe-copy {
  all: unset
}
@media (max-width: 1120px) {
  .hero-grid-safe {
    grid-template-columns: 1fr;
  }
  .hero-visual-safe {
    min-height: auto;
    justify-content: flex-start;
    padding-top: .25rem;
  }
  .hero-stage {
    width: 100%;
    max-width: 46rem;
  }
  .hero-phone-card img {
    max-height: 31rem;
  }
}
@media (max-width: 760px) {
  .hero.hero-enhanced.hero-safe {
    padding-top: 4.9rem;
    padding-bottom: 2.4rem;
  }
  .hero-visual-safe {
    overflow: visible;
  }
  .hero-stage {
    grid-template-columns: 1fr;
    gap: .9rem;
  }
  .hero-phone-card {
    max-width: 18.2rem;
    margin: 0 auto;
  }
  .hero-phone-card img {
    max-height: 24rem;
  }
  .hero-scratch-card {
    min-height: auto;
  }
  .hero-scratch-card img {
    max-height: 12rem;
  }
  .hero-info-grid {
    grid-template-columns: 1fr;
  }
  .hero-float-card, .hero-mini-badge {
    display: none;
  }
  .hero-ring-b, .hero-curve-b {
    display: none;
  }
}
/* Top-right hero hard fix */
.hero-stage, .hero-side-stack, .hero-info-grid {
  all: unset
}
.hero-visual-safe {
  overflow: visible
}
.hero-safe-stack {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 36rem;
  width: 100%;
  margin-left: auto
}
.hero-safe-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 1rem;
  align-items: stretch;
  width: 100%
}
.hero-safe-copy {
  display: grid;
  gap: 1rem;
  align-content: stretch
}
.hero-safe-copy .panel, .hero-scratch-card {
  height: 100%
}
.hero-scratch-card {
  display: flex;
  align-items: center;
  justify-content: center
}
.hero-info-card {
  overflow-wrap: anywhere
}
.hero-float-card {
  z-index: 3
}
@media (max-width:1100px) {
  .hero-safe-stack {
    max-width: none;
    margin-left: 0
  }
  .hero-safe-panels {
    grid-template-columns: 1fr 1fr
  }
}
@media (max-width:760px) {
  .hero-safe-panels {
    grid-template-columns: 1fr
  }
}
/* Luxe hero rebuild */
.hero-luxe {
  position: relative;
  overflow: clip;
  padding: 6.2rem 0 4.5rem;
  isolation: isolate
}
.hero-grid-luxe {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: 2.75rem
}
.hero-copy-luxe {
  padding-right: 1rem
}
.hero-kicker {
  margin-bottom: 1rem
}
.hero-proof-luxe {
  margin-top: 1.25rem
}
.hero-metrics-luxe {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1.6rem
}
.hero-metric-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(12, 20, 38, .72), rgba(8, 15, 30, .92));
  border: 1px solid rgba(148, 163, 184, .14);
  box-shadow: 0 18px 40px rgba(2, 8, 23, .22)
}
.hero-metric-card strong {
  display: block;
  margin-bottom: .45rem;
  font-size: .98rem;
  color: #f8fbff
}
.hero-metric-card span {
  display: block;
  font-size: .9rem;
  line-height: 1.55;
  color: #cbd9f1
}
.hero-visual-luxe {
  position: relative;
  min-width: 0
}
.hero-visual-stage {
  position: relative;
  min-height: 36rem;
  border-radius: 34px;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(8, 15, 30, .52), rgba(8, 15, 30, .16));
  border: 1px solid rgba(148, 163, 184, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04)
}
.hero-stage-glow {
  position: absolute;
  inset: auto 8% 10% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, .18), rgba(56, 189, 248, 0) 68%);
  filter: blur(8px);
  pointer-events: none
}
.hero-device-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(51%, 18rem);
  padding: .6rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(18, 28, 50, .92), rgba(8, 15, 30, .96));
  border: 1px solid rgba(148, 163, 184, .14);
  box-shadow: 0 32px 70px rgba(2, 8, 23, .38);
  overflow: hidden;
  z-index: 2
}
.hero-device-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 31rem;
  object-fit: contain;
  object-position: center top;
  padding: .6rem .7rem .2rem
}
.hero-device-caption {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  padding: .2rem .35rem .5rem
}
.hero-side-stack {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  gap: 1rem;
  width: min(62%, 22rem);
  z-index: 2
}
.hero-glass-card {
  padding: 1.05rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(15, 23, 42, .82), rgba(9, 16, 30, .95));
  border: 1px solid rgba(148, 163, 184, .16);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(2, 8, 23, .28);
  overflow: hidden
}
.hero-card-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .65rem;
  margin-bottom: .7rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, .1);
  border: 1px solid rgba(56, 189, 248, .16);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #bfe9ff
}
.hero-glass-card h3 {
  font-size: 1.18rem;
  margin-bottom: .45rem
}
.hero-glass-card p {
  font-size: .95rem;
  line-height: 1.6;
  color: #d5e3f9;
  margin-bottom: .9rem
}
.hero-card-thumb {
  display: grid;
  place-items: center;
  min-height: 12rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  border: 1px solid rgba(148, 163, 184, .12)
}
.hero-card-thumb img {
  display: block;
  max-width: 100%;
  max-height: 11rem;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: .75rem
}
.hero-glass-secondary {
  gap: .85rem;
  display: grid
}
.hero-stat-chip {
  padding: .95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(148, 163, 184, .1)
}
.hero-stat-chip strong {
  display: block;
  font-size: .95rem;
  margin-bottom: .32rem;
  color: #f8fbff
}
.hero-stat-chip span {
  display: block;
  font-size: .88rem;
  line-height: 1.5;
  color: #cbd9f1
}
.hero-float-card-luxe {
  right: auto;
  left: 40%;
  bottom: 1rem;
  top: auto;
  max-width: 13rem;
  z-index: 3
}
.hero-luxe .hero-ring-a {
  right: 4%;
  top: 6%;
  width: 19rem;
  height: 19rem
}
.hero-luxe .hero-ring-b {
  left: 4%;
  bottom: 8%;
  width: 12rem;
  height: 12rem
}
.hero-luxe .hero-curve-a {
  right: 6%;
  bottom: 4%;
  width: 18rem;
  height: 8rem
}
.hero-luxe .hero-curve-b {
  left: 8%;
  top: 14%;
  width: 12rem;
  height: 5rem
}
.hero-luxe .hero-mini-badge-a {
  left: 46%;
  top: 8%
}
.hero-luxe .hero-mini-badge-b {
  right: 10%;
  bottom: 4%
}
.hero-luxe .hero-bg-orb-1 {
  width: 15rem;
  height: 15rem;
  left: -2rem;
  top: 5rem
}
.hero-luxe .hero-bg-orb-2 {
  width: 13rem;
  height: 13rem;
  right: 1rem;
  top: 3rem
}
.hero-luxe .hero-bg-orb-3 {
  left: 58%;
  bottom: 16%;
  width: 7rem;
  height: 7rem
}
.hero-luxe .hero-spotlight {
  width: 32rem;
  height: 32rem;
  right: -8rem;
  top: -5rem;
  opacity: .58
}
@media (max-width:1100px) {
  .hero-grid-luxe {
    grid-template-columns: 1fr;
    gap: 2rem
  }
  .hero-copy-luxe {
    padding-right: 0
  }
  .hero-visual-stage {
    min-height: 32rem
  }
  .hero-metrics-luxe {
    grid-template-columns: 1fr
  }
  .hero-device-wrap {
    width: min(48%, 17rem)
  }
  .hero-side-stack {
    width: min(58%, 21rem)
  }
}
@media (max-width:760px) {
  .hero-luxe {
    padding: 5rem 0 3.8rem
  }
  .hero-grid-luxe {
    gap: 1.6rem
  }
  .hero-visual-stage {
    min-height: auto;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none
  }
  .hero-device-wrap, .hero-side-stack, .hero-float-card-luxe {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none
  }
  .hero-device-wrap {
    margin: 0 auto 1rem;
    max-width: 18rem
  }
  .hero-side-stack {
    gap: .85rem
  }
  .hero-card-thumb {
    min-height: 10rem
  }
  .hero-luxe .hero-mini-badge, .hero-luxe .hero-ring, .hero-luxe .hero-curve {
    display: none
  }
  .hero-luxe .hero-bg-orb-1 {
    width: 9rem;
    height: 9rem;
    left: -2rem;
    top: 2rem
  }
  .hero-luxe .hero-bg-orb-2 {
    width: 8rem;
    height: 8rem;
    right: -1rem;
    top: 6rem
  }
  .hero-luxe .hero-bg-orb-3 {
    width: 5rem;
    height: 5rem;
    left: 70%;
    bottom: 30%
  }
  .hero-float-card-luxe {
    margin: .25rem 0 0 auto;
    max-width: 12rem
  }
}
/* Dense SaaS hero rebuild */
.hero-luxe {
  padding: 5.6rem 0 3.8rem
}
.hero-grid-luxe {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: start;
  gap: 1.4rem
}
.hero-copy-luxe {
  padding-right: .25rem;
  max-width: 37rem
}
.hero-copy-luxe .hero-copy {
  max-width: 58ch;
  margin-bottom: 0
}
.hero-proof-luxe {
  margin: 1rem 0 0
}
.hero-metrics-luxe {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1.15rem
}
.hero-metric-card {
  padding: .9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(148, 163, 184, .14)
}
.hero-metric-card strong {
  display: block;
  margin-bottom: .25rem;
  font-size: .98rem
}
.hero-metric-card span {
  display: block;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45
}
.hero-visual-luxe {
  position: relative;
  min-width: 0
}
.hero-visual-stage {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(8, 15, 30, .52), rgba(8, 15, 30, .16));
  border: 1px solid rgba(148, 163, 184, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04)
}
.hero-stage-main, .hero-stage-side {
  position: relative;
  z-index: 2;
  min-width: 0
}
.hero-device-wrap {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  max-width: none;
  padding: .65rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(18, 28, 50, .92), rgba(8, 15, 30, .96));
  border: 1px solid rgba(148, 163, 184, .14);
  box-shadow: 0 28px 60px rgba(2, 8, 23, .34);
  overflow: hidden;
  z-index: 2
}
.hero-device-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 35rem;
  object-fit: contain;
  object-position: center top;
  padding: .45rem .45rem 0
}
.hero-device-caption {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  padding: .2rem .2rem .1rem
}
.hero-side-stack {
  position: relative;
  right: auto;
  top: auto;
  display: grid;
  gap: 1rem;
  width: 100%;
  z-index: 2
}
.hero-card-thumb {
  margin-top: .85rem;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
  padding: .5rem;
  border: 1px solid rgba(148, 163, 184, .12)
}
.hero-card-thumb img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 15rem;
  object-fit: contain
}
.hero-glass-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, .92), rgba(8, 15, 30, .95));
  border: 1px solid rgba(148, 163, 184, .14);
  box-shadow: 0 22px 48px rgba(2, 8, 23, .26)
}
.hero-glass-card h3 {
  margin-bottom: .45rem;
  font-size: 1.05rem
}
.hero-glass-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55
}
.hero-stat-chip {
  padding: .85rem .9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(148, 163, 184, .1)
}
.hero-stat-chip + .hero-stat-chip {
  margin-top: .7rem
}
.hero-stat-chip strong {
  display: block;
  font-size: .95rem;
  margin-bottom: .18rem
}
.hero-stat-chip span {
  display: block;
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.45
}
.hero-float-card-luxe {
  position: absolute;
  left: 58%;
  bottom: -.5rem;
  max-width: 11rem;
  padding: .8rem .9rem;
  border-radius: 18px;
  background: rgba(10, 18, 34, .9);
  border: 1px solid rgba(148, 163, 184, .16);
  box-shadow: 0 18px 40px rgba(2, 8, 23, .28);
  z-index: 3
}
.hero-float-card-luxe strong {
  display: block;
  font-size: .88rem;
  margin-bottom: .2rem
}
.hero-float-card-luxe span {
  display: block;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.35
}
.hero-luxe .hero-mini-badge-a {
  left: -.35rem;
  top: 1rem
}
.hero-luxe .hero-mini-badge-b {
  right: .35rem;
  bottom: .75rem
}
.hero-luxe .hero-ring-a {
  right: -1rem;
  top: -1rem;
  width: 16rem;
  height: 16rem
}
.hero-luxe .hero-ring-b {
  left: -1rem;
  bottom: 3rem;
  width: 10rem;
  height: 10rem
}
.hero-luxe .hero-curve-a {
  right: -1rem;
  bottom: 2rem;
  width: 14rem;
  height: 6rem
}
.hero-luxe .hero-curve-b {
  left: 1rem;
  top: 4rem;
  width: 10rem;
  height: 4rem
}
.hero-luxe .hero-bg-orb-1 {
  width: 11rem;
  height: 11rem;
  left: -2rem;
  top: 3rem
}
.hero-luxe .hero-bg-orb-2 {
  width: 9rem;
  height: 9rem;
  right: -1rem;
  top: 4rem
}
.hero-luxe .hero-bg-orb-3 {
  left: 54%;
  bottom: 12%;
  width: 5rem;
  height: 5rem
}
.hero-luxe .hero-spotlight {
  width: 26rem;
  height: 26rem;
  right: -5rem;
  top: -5rem;
  opacity: .48
}
@media (max-width:1100px) {
  .hero-grid-luxe {
    grid-template-columns: 1fr;
    gap: 1.3rem
  }
  .hero-copy-luxe {
    max-width: none;
    padding-right: 0
  }
  .hero-visual-stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr)
  }
  .hero-device-wrap img {
    max-height: 31rem
  }
  .hero-metrics-luxe {
    grid-template-columns: 1fr
  }
}
@media (max-width:760px) {
  .hero-luxe {
    padding: 4.9rem 0 3.4rem
  }
  .hero-grid-luxe {
    gap: 1rem
  }
  .hero-visual-stage {
    grid-template-columns: 1fr;
    padding: .7rem;
    gap: .8rem
  }
  .hero-device-wrap {
    max-width: 18.2rem;
    margin: 0 auto
  }
  .hero-device-wrap img {
    max-height: 27rem
  }
  .hero-float-card-luxe {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin-top: .1rem
  }
  .hero-side-stack {
    gap: .8rem
  }
}
/* Stable hero patch v3 */
.hero-luxe {
  padding: 5.2rem 0 3.8rem
}
.hero-grid-luxe {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: start;
  gap: 1.5rem
}
.hero-copy-luxe {
  max-width: 38rem;
  padding-right: .25rem
}
.hero-copy-luxe h1 {
  margin-bottom: 1rem
}
.hero-title-gradient, .hero-title-tail {
  display: inline;
  position: static
}
.hero-title-gradient::after {
  display: none
}
.hero-proof-luxe {
  margin-top: 1rem
}
.hero-metrics-luxe {
  grid-template-columns: 1fr;
  gap: .75rem;
  margin-top: 1.15rem
}
.hero-metric-card {
  padding: .95rem 1rem;
  border-radius: 18px
}
.hero-visual-luxe {
  position: relative;
  min-width: 0
}
.hero-visual-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 1rem;
  align-items: start;
  min-height: 0;
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8, 15, 30, .55), rgba(8, 15, 30, .22));
  border: 1px solid rgba(148, 163, 184, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04)
}
.hero-stage-main, .hero-stage-side {
  position: relative;
  z-index: 2;
  min-width: 0
}
.hero-device-wrap {
  position: relative;
  width: 100%;
  padding: .65rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 28, 50, .94), rgba(8, 15, 30, .98));
  border: 1px solid rgba(148, 163, 184, .14);
  box-shadow: 0 24px 54px rgba(2, 8, 23, .30);
  overflow: hidden
}
.hero-device-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 35rem;
  object-fit: contain;
  object-position: center top;
  padding: .35rem .35rem 0
}
.hero-device-caption {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  padding: .35rem .2rem 0
}
.hero-side-stack {
  position: relative;
  display: grid;
  gap: 1rem;
  width: 100%
}
.hero-glass-card {
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 23, 42, .92), rgba(8, 15, 30, .96));
  border: 1px solid rgba(148, 163, 184, .14);
  box-shadow: 0 18px 42px rgba(2, 8, 23, .24)
}
.hero-glass-card h3 {
  font-size: 1.04rem;
  line-height: 1.2;
  margin: 0 0 .45rem
}
.hero-glass-card p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.52
}
.hero-card-thumb {
  margin-top: .85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(148, 163, 184, .10);
  padding: .45rem;
  display: grid;
  place-items: center
}
.hero-card-thumb img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 14rem;
  object-fit: contain
}
.hero-glass-secondary {
  display: grid;
  gap: .7rem
}
.hero-stat-chip {
  padding: .8rem .9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(148, 163, 184, .10)
}
.hero-stat-chip strong {
  display: block;
  margin-bottom: .18rem
}
.hero-stat-chip span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.42
}
.hero-float-card-luxe {
  position: relative;
  left: auto;
  bottom: auto;
  max-width: none;
  margin-top: .9rem;
  padding: .85rem .95rem;
  border-radius: 18px;
  background: rgba(10, 18, 34, .9);
  border: 1px solid rgba(148, 163, 184, .16);
  box-shadow: 0 16px 36px rgba(2, 8, 23, .24)
}
.hero-float-card-luxe strong {
  display: block;
  margin-bottom: .2rem;
  font-size: .9rem
}
.hero-float-card-luxe span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.35
}
.hero-luxe .hero-mini-badge-a {
  left: -.2rem;
  top: .6rem
}
.hero-luxe .hero-mini-badge-b {
  right: .2rem;
  bottom: .6rem
}
.hero-luxe .hero-ring-a {
  right: -.5rem;
  top: -.5rem;
  width: 13rem;
  height: 13rem
}
.hero-luxe .hero-ring-b {
  left: -.5rem;
  bottom: 2rem;
  width: 8rem;
  height: 8rem
}
.hero-luxe .hero-curve-a {
  right: -.5rem;
  bottom: 1rem;
  width: 11rem;
  height: 4.5rem
}
.hero-luxe .hero-curve-b {
  left: .5rem;
  top: 3rem;
  width: 7.5rem;
  height: 3rem
}
.hero-luxe .hero-bg-orb-1 {
  width: 8rem;
  height: 8rem;
  left: -1.5rem;
  top: 3rem
}
.hero-luxe .hero-bg-orb-2 {
  width: 7rem;
  height: 7rem;
  right: -1rem;
  top: 4rem
}
.hero-luxe .hero-bg-orb-3 {
  width: 4.5rem;
  height: 4.5rem;
  left: 56%;
  bottom: 10%
}
.hero-luxe .hero-spotlight {
  width: 22rem;
  height: 22rem;
  right: -5rem;
  top: -4rem;
  opacity: .42
}
@media (max-width:1100px) {
  .hero-grid-luxe {
    grid-template-columns: 1fr;
    gap: 1.25rem
  }
  .hero-copy-luxe {
    max-width: none;
    padding-right: 0
  }
  .hero-visual-stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr)
  }
}
@media (max-width:760px) {
  .hero-luxe {
    padding: 4.8rem 0 3.2rem
  }
  .hero-grid-luxe {
    gap: 1rem
  }
  .hero-visual-stage {
    grid-template-columns: 1fr;
    padding: .75rem;
    gap: .85rem
  }
  .hero-device-wrap {
    max-width: 18rem;
    margin: 0 auto
  }
  .hero-device-wrap img {
    max-height: 26rem
  }
  .hero-mini-badge, .hero-ring, .hero-curve {
    display: none
  }
}
/* Final hero normalization fix */
.hero-luxe {
  padding: 5.6rem 0 3.6rem;
}
.hero-grid-luxe {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 2rem;
}
.hero-copy-luxe, .hero-visual-luxe, .hero-visual-stage, .hero-stage-main, .hero-stage-side, .hero-side-stack, .hero-glass-card, .hero-card-thumb {
  min-width: 0;
}
.hero-copy-luxe {
  max-width: 40rem;
  padding-right: 0;
}
.hero-copy-luxe h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
}
.hero-title-gradient, .hero-title-tail {
  display: block;
}
.hero-title-gradient::after {
  width: 9rem;
  min-width: 0;
  margin-top: 0.35rem;
}
.hero-copy-luxe .hero-copy {
  max-width: 60ch;
}
.hero-metrics-luxe {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.hero-metric-card {
  height: 100%;
}
.hero-visual-luxe {
  position: relative;
}
.hero-visual-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15.5rem, 18.5rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: end;
  min-height: 0;
  padding: 1rem;
  border-radius: 2rem;
}
.hero-stage-glow, .hero-ring, .hero-curve, .hero-mini-badge, .hero-float-card-luxe {
  display: none !important;
}
.hero-stage-main, .hero-stage-side {
  position: relative;
  z-index: 2;
}
.hero-device-wrap {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: 100%;
  padding: 0.65rem;
  border-radius: 2rem;
}
.hero-device-wrap img {
  display: block;
  width: 100%;
  max-height: 31rem;
  object-fit: contain;
  padding: 0.4rem 0.4rem 0;
}
.hero-device-caption {
  padding: 0.35rem 0.2rem 0.1rem;
}
.hero-side-stack {
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
  display: grid;
  gap: 1rem;
}
.hero-glass-card {
  position: relative;
  padding: 1rem;
  border-radius: 1.5rem;
}
.hero-glass-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}
.hero-glass-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0.8rem;
}
.hero-card-thumb {
  min-height: 0;
  padding: 0.55rem;
}
.hero-card-thumb img {
  display: block;
  width: 100%;
  max-height: 12.5rem;
  object-fit: contain;
}
.hero-glass-secondary {
  display: grid;
  gap: 0.8rem;
}
.hero-stat-chip {
  padding: 0.9rem 0.95rem;
}
@media (max-width: 1100px) {
  .hero-grid-luxe {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hero-copy-luxe {
    max-width: none;
  }
  .hero-visual-stage {
    grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
  }
}
@media (max-width: 760px) {
  .hero-luxe {
    padding: 4.9rem 0 3rem;
  }
  .hero-copy-luxe h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1.1;
  }
  .hero-grid-luxe {
    gap: 1.25rem;
  }
  .hero-visual-stage {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .hero-device-wrap {
    max-width: 18rem;
    margin: 0 auto;
  }
  .hero-device-wrap img {
    max-height: 23rem;
  }
  .hero-metrics-luxe {
    grid-template-columns: 1fr;
  }
}
/* Final clean hero rebuild */
.hero-clean {
  position: relative;
  padding: 5.5rem 0 3.5rem;
  overflow: hidden
}
.hero-clean-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 1.75rem;
  align-items: start
}
.hero-clean-copy, .hero-clean-visual, .hero-clean-side, .hero-clean-panel {
  min-width: 0
}
.hero-clean-copy {
  max-width: 39rem
}
.hero-clean h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -.04em
}
.hero-clean .hero-title-gradient, .hero-clean .hero-title-tail {
  display: block
}
.hero-clean .hero-title-tail {
  margin-top: .22rem;
  color: #e5eefc;
  background: none;
  -webkit-text-fill-color: initial
}
.hero-clean .hero-copy {
  max-width: 60ch
}
.hero-metrics-clean {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.15rem
}
.hero-clean-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(15.5rem, .78fr);
  gap: 1rem;
  align-items: start
}
.hero-clean-main {
  position: relative;
  padding: .7rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(18, 28, 50, .94), rgba(8, 15, 30, .98));
  border: 1px solid rgba(148, 163, 184, .14);
  box-shadow: 0 24px 54px rgba(2, 8, 23, .30);
  overflow: hidden
}
.hero-clean-main img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 38rem;
  object-fit: contain;
  object-position: center top;
  padding: .2rem .2rem 0
}
.hero-clean-side {
  display: grid;
  gap: 1rem
}
.hero-clean-panel {
  padding: 1rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, .92), rgba(8, 15, 30, .96));
  border: 1px solid rgba(148, 163, 184, .14);
  box-shadow: 0 18px 42px rgba(2, 8, 23, .24)
}
.hero-clean-panel h3 {
  font-size: 1.04rem;
  line-height: 1.2;
  margin: 0 0 .4rem
}
.hero-clean-panel p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.5
}
.hero-clean-panel-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 13rem;
  object-fit: contain;
  margin-top: .75rem;
  padding: .35rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(148, 163, 184, .10)
}
.hero-clean-panel-stats {
  display: grid;
  gap: .75rem
}
.hero-clean .hero-spotlight {
  width: 24rem;
  height: 24rem;
  right: -6rem;
  top: -4rem;
  opacity: .34
}
.hero-clean .hero-bg-orb-1 {
  width: 7rem;
  height: 7rem;
  left: -2rem;
  top: 5rem;
  opacity: .5
}
.hero-clean .hero-bg-orb-2 {
  width: 8rem;
  height: 8rem;
  right: -2rem;
  bottom: 3rem;
  opacity: .4
}
.hero-clean .hero-grid-lines {
  opacity: .18
}
.hero-clean .hero-proof {
  margin-top: 1rem
}
.hero-clean .hero-actions {
  margin-top: 1.2rem
}
.hero-clean .hero-metric-card {
  height: 100%
}
.hero-clean .hero-card-label {
  margin-bottom: .35rem
}
@media (max-width:1100px) {
  .hero-clean-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem
  }
  .hero-clean-copy {
    max-width: none
  }
  .hero-clean-visual {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, .7fr)
  }
}
@media (max-width:760px) {
  .hero-clean {
    padding: 4.8rem 0 3rem
  }
  .hero-clean-grid {
    gap: 1.1rem
  }
  .hero-clean h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    line-height: 1.08
  }
  .hero-clean-visual {
    grid-template-columns: 1fr;
    gap: .9rem
  }
  .hero-clean-main {
    max-width: 20rem;
    margin: 0 auto
  }
  .hero-clean-main img {
    max-height: 27rem
  }
  .hero-metrics-clean {
    grid-template-columns: 1fr
  }
}
/* final hero stabilisation */
.hero-final {
  position: relative;
  padding: 3.2rem 0 3.4rem;
  overflow: hidden
}
.hero-final-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 1.5rem;
  align-items: start
}
.hero-final-copy, .hero-final-visual, .hero-final-subgrid, .hero-final-panel {
  min-width: 0
}
.hero-final-copy {
  max-width: 38rem;
  padding-top: .35rem
}
.hero-final h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.55rem, 4.8vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -.04em
}
.hero-final .hero-title-gradient, .hero-final .hero-title-tail {
  display: block
}
.hero-final .hero-title-tail {
  margin-top: .18rem;
  color: #e8f1ff;
  background: none;
  -webkit-text-fill-color: initial
}
.hero-final .hero-copy {
  max-width: 58ch
}
.hero-final .hero-actions {
  margin-top: 1.1rem
}
.hero-final .hero-proof {
  margin-top: .95rem
}
.hero-final .hero-metrics-clean {
  margin-top: 1rem
}
.hero-final-visual {
  display: grid;
  gap: .95rem;
  align-content: start
}
.hero-final-main {
  position: relative;
  padding: .8rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(18, 28, 50, .15), rgba(8, 15, 30, .28));
  border: 1px solid rgba(148, 163, 184, .09);
  box-shadow: 0 24px 54px rgba(2, 8, 23, .30);
  overflow: hidden;
  max-width: 100%;
  margin-left: auto;
  margin-bottom: 20px;
}
.hero-final-main img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 42rem;
  object-fit: contain;
  object-position: center top;
  padding: .15rem 0 0
}
.hero-final-subgrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, .82fr);
  gap: .95rem;
  align-items: stretch
}
.hero-final-panel {
  padding: 1rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, .92), rgba(8, 15, 30, .96));
  border: 1px solid rgba(148, 163, 184, .14);
  box-shadow: 0 18px 42px rgba(2, 8, 23, .24)
}
.hero-final-panel h3 {
  font-size: 1.03rem;
  line-height: 1.2;
  margin: 0 0 .35rem
}
.hero-final-panel p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5
}
.hero-final-panel-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 11.5rem;
  object-fit: contain;
  margin-top: .75rem;
  padding: .25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(148, 163, 184, .10)
}
.hero-final-panel-stats {
  display: grid;
  gap: .75rem
}
.hero-final .hero-spotlight {
  width: 24rem;
  height: 24rem;
  right: -6rem;
  top: -4rem;
  opacity: .32
}
.hero-final .hero-bg-orb-1 {
  width: 6.5rem;
  height: 6.5rem;
  left: -1.5rem;
  top: 5rem;
  opacity: .38
}
.hero-final .hero-bg-orb-2 {
  width: 7rem;
  height: 7rem;
  right: -1.5rem;
  bottom: 4rem;
  opacity: .34
}
@media (max-width:1100px) {
  .hero-final-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem
  }
  .hero-final-copy {
    max-width: none
  }
  .hero-final-main {
    max-width: 32rem;
    margin: 0 auto
  }
}
@media (max-width:760px) {
  .hero-final {
    padding: 4.7rem 0 3rem
  }
  .hero-final h1 {
    font-size: clamp(2.15rem, 9.6vw, 3.4rem);
    line-height: 1.07
  }
  .hero-final-subgrid {
    grid-template-columns: 1fr;
    gap: .85rem
  }
  .hero-final-main {
    max-width: 21rem
  }
  .hero-final-main img {
    max-height: 28rem
  }
}
/* Base image polish */
.device-card img, .hero-final-panel-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  transform: translateZ(0);
  transition:
    transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
  box-shadow:
    0 14px 40px rgba(15, 23, 42, 0.28), 0 2px 10px rgba(15, 23, 42, 0.16);
  filter: saturate(1.02) contrast(1.02);
}
/* Lift on hover */
.device-card:hover img, .hero-final-panel-image:hover img {
  transform: translateY(-6px) scale(1.018);
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
  box-shadow:
    0 24px 60px rgba(59, 130, 246, 0.06), 0 18px 45px rgba(124, 58, 237, 0.08), 0 6px 18px rgba(15, 23, 42, 0.12);
}
/* Subtle animated glow ring around image cards */
.device-card, .hero-final-panel-image {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}
.device-card::before, .hero-final-panel-image::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.25), rgba(124, 58, 237, 0.4));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.65;
  pointer-events: none;
}
/* Moving shine sweep */
.device-card::after, .hero-final-panel-image::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -40%;
  width: 38%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(14deg) translateX(0);
  pointer-events: none;
  opacity: 0;
}
.device-card:hover::after, .hero-final-panel-image:hover::after {
  opacity: 1;
  animation: imageShine 0.95s ease;
}
@keyframes imageShine {
  from {
    transform: rotate(1deg) translateX(0);
  }
  to {
    transform: rotate(1deg) translateX(320%);
  }
}
/* Floating motion for hero images */
.hero-final-main img, .hero-final-panel-image img {
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-final-panel-image img {
  animation-duration: 7.5s;
}
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* Keep hover and float working together */
.hero-final-main:hover img, .hero-final-panel-image:hover img {
  animation-play-state: paused;
}
/* Optional: stronger premium treatment on hero only */
.hero-final-main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(8px);
}
h2, h3, h4 {
  color: rgba(245, 237, 237, 1.00) !important;
}