#overview.hero-spotlight__partners {
      position: relative;
      z-index: 6;
      flex-shrink: 0;
      padding: 0;
      min-height: 0;
      display: block;
      text-align: initial;
      width: 100%;
    }

.hero-spotlight__main-stack {
      position: relative;
      z-index: 6;
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 0;
      width: 100%;
    }

.partners-marquee {
      overflow: hidden;
      height: 52px;
      display: flex;
      align-items: center;
      width: 100%;
      border-radius: 0;
      border: none;
      border-bottom: 1px solid var(--hero-border);
      background: rgba(255, 255, 255, 0.09);
    }

.partners-marquee__track {
      display: flex;
      width: max-content;
      align-items: center;
      animation-name: partners-marquee-scroll;
      animation-duration: 22s;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
      animation-fill-mode: none;
      will-change: transform;
    }

.partners-marquee:hover .partners-marquee__track,
    .partners-marquee:focus-within .partners-marquee__track,
    .partners-marquee.partners-marquee--paused .partners-marquee__track {
      animation-play-state: paused;
    }

.partners-marquee__row {
      display: flex;
      flex-shrink: 0;
      align-items: center;
      gap: clamp(3rem, 8vw, 5.5rem);
      padding: 0 clamp(2.5rem, 6vw, 4.5rem);
      box-sizing: border-box;
    }

.partners-marquee__row--flags {
      gap: clamp(1.25rem, 4vw, 2.25rem);
      padding: 0 clamp(1.5rem, 4vw, 2.5rem);
    }

.partners-marquee__flag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-radius: 0;
      overflow: hidden;
      box-shadow: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

.partners-marquee__flag:hover {
      opacity: 0.95;
      transform: scale(1.06);
    }

.partners-marquee__flag img {
      height: 30px;
      width: auto;
      aspect-ratio: 4 / 3;
      max-width: none;
      object-fit: cover;
      display: block;
    }

.partners-marquee__link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      text-decoration: none;
      color: inherit;
      border-radius: 6px;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

.partners-marquee__link:hover {
      opacity: 0.92;
      transform: scale(1.04);
    }

.partners-marquee__link:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 3px;
    }

.partners-marquee__row img,
    .partners-marquee__link img {
      height: 28px;
      width: auto;
      max-width: 140px;
      object-fit: contain;
      opacity: 1;
      transition: opacity 0.2s ease;
    }

.partners-marquee__row--flags .partners-marquee__flag img {
      height: 30px;
      max-width: 44px;
    }

@media (prefers-reduced-motion: reduce) {
      .partners-marquee__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        transform: none;
      }
      .partners-marquee__track .partners-marquee__row[aria-hidden="true"] {
        display: none;
      }
      .partners-marquee__row--flags {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.5rem;
        max-width: 100%;
        flex-shrink: 1;
      }
      .partners-marquee {
        height: auto;
        min-height: 52px;
        padding: 0.35rem 0.5rem;
      }
      .partners-marquee__link:hover,
      .partners-marquee__flag:hover {
        transform: none;
      }
    }

section.hero-spotlight {
      max-width: none;
      width: 100%;
      margin: calc(-1 * var(--header-offset)) 0 0;
      padding: var(--header-offset) 0 0;
      scroll-margin-top: var(--header-offset);
      position: relative;
      /* Above #rise-stack so a fixed product preview cannot paint over the hero when scrolling back up. */
      z-index: 2;
      isolation: isolate;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      overflow: hidden;
      background: transparent;
      border-bottom: none;
    }

.hero-spotlight__bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-color: var(--bg-page);
      /* Mesh fog drift (calmer than the point blobs) */
      --hero-breathe-cycle: 8s;
      /* 17 glow blobs: one inhale wave across the set  smaller = snappier / more alive */
      --glow-point-wave-dur: 4s;
    }

/* Dark homepage: full-bleed background video (no loop — ends on last frame). Light mode: hidden. */
.hero-spotlight__hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.45s ease;
    }

.hero-spotlight__hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

.hero-spotlight__hero-video-scrim {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(
        180deg,
        rgba(4, 8, 16, 0.35) 0%,
        rgba(4, 8, 16, 0.5) 42%,
        rgba(4, 8, 16, 0.82) 100%
      );
      /* Opacity toggled on dark home with #intro[data-hero-post-video] (see block below). */
      transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    }

html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"]) .hero-spotlight__hero-video-wrap {
      opacity: 1;
      z-index: 1;
    }

html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"]) .hero-glow-blobs,
    html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"]) .hero-mesh,
    html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"]) .hero-mesh-grain,
    html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"]) .hero-spotlight__aurora,
    html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"]) .hero-spotlight__warp {
      visibility: hidden !important;
      opacity: 0 !important;
    }

html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"]) .hero-spotlight__sweep {
      opacity: 0.08;
      animation: none;
    }

html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"]) .hero-spotlight__grid {
      opacity: 0.1;
      animation: none;
      transform: translate(24px, 18px);
    }

html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"]) .hero-spotlight__vignette {
      display: block !important;
      opacity: 1;
      z-index: 3;
    }

html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"]) #global-three-bg {
      display: none !important;
    }

@media (prefers-reduced-motion: reduce) {
      .hero-spotlight__hero-video-wrap {
        display: none !important;
      }
    }

/* Dark homepage: title, CTAs, and meta row stay idle until the hero video ends (hero-home-video.js sets data-hero-post-video on #intro). */
@media (prefers-reduced-motion: no-preference) {
      html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"])
        #intro:not([data-hero-post-video])
        .hero-spotlight__main-stack {
        pointer-events: none;
      }

      html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"])
        #intro:not([data-hero-post-video])
        .hero-spotlight__title-line {
        animation: none !important;
        opacity: 0;
        filter: blur(12px);
        transform: translateY(28px) scale(0.96);
      }

      html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"])
        #intro:not([data-hero-post-video])
        .hero-spotlight__tag,
      html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"])
        #intro:not([data-hero-post-video])
        .hero-spotlight__cta,
      html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"])
        #intro:not([data-hero-post-video])
        .hero-product-tile,
      html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"])
        #intro:not([data-hero-post-video])
        .hero-spotlight__meta-row {
        animation: none !important;
        opacity: 0;
        transform: translateY(18px);
      }

      html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"])
        #intro:not([data-hero-post-video])
        .hero-spotlight__meta-row {
        transform: translateY(14px);
      }

      /* Grad scrim + edge vignette stay transparent until the hero video ends (same unlock as tiles / meta). */
      html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"])
        #intro
        .hero-spotlight__vignette {
        transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1);
      }

      html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"])
        #intro:not([data-hero-post-video])
        .hero-spotlight__hero-video-scrim,
      html[data-theme="dark"][data-route="home"]:not([data-rise-scope="dashboard"])
        #intro:not([data-hero-post-video])
        .hero-spotlight__vignette {
        opacity: 0;
      }
    }

.hero-glow-blobs {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
      isolation: isolate;
      opacity: 0.9;
    }

.hero-glow-blobs__cluster {
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(96vw, 880px);
      height: min(76vh, 680px);
      pointer-events: none;
      /* Static frame  only individual .glow-blob elements breathe (no whole-cluster pulse) */
      transform: translate(-50%, calc(-50% - 2.8vh));
      /* Sequential: one blob peaks, then the next  --glow-stagger 1 + 17 steps */
      --glow-wave-dur: var(--glow-point-wave-dur);
      --glow-stagger: 1;
      --glow-wave-steps: 17;
    }

.hero-glow-blobs__cluster .glow-blob {
      position: absolute;
      border-radius: 50%;
      opacity: 1;
      filter: blur(11px);
      mix-blend-mode: soft-light;
      will-change: transform;
      animation-duration: var(--glow-wave-dur);
      animation-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
      animation-iteration-count: infinite;
      animation-delay: calc(
        -1 * var(--glow-wave-dur) * floor(calc(var(--glow-i) / var(--glow-stagger))) / var(--glow-wave-steps)
      );
    }

.hero-glow-blobs__cluster .glow-blob-1 {
      width: 210px;
      height: 252px;
      background: hsl(var(--glow-blue) / 0.68);
      left: calc(50% - 168px);
      top: calc(50% - 212px);
      border-radius: 60% 40% 55% 45%;
      z-index: 1;
      animation-name: glow-breathe-1;
    }

.hero-glow-blobs__cluster .glow-blob-3 {
      width: 218px;
      height: 258px;
      background: hsl(var(--glow-blue) / 0.63);
      left: calc(50% - 148px);
      top: calc(50% + 8px);
      border-radius: 50% 50% 40% 60%;
      z-index: 1;
      animation-name: glow-breathe-3;
    }

.hero-glow-blobs__cluster .glow-blob-2 {
      width: 188px;
      height: 208px;
      background: hsl(var(--glow-cyan) / 0.65);
      left: calc(50% + 38px);
      top: calc(50% - 182px);
      border-radius: 45% 55% 50% 50%;
      z-index: 2;
      animation-name: glow-breathe-2;
    }

.hero-glow-blobs__cluster .glow-blob-6 {
      width: 182px;
      height: 200px;
      background: hsl(var(--glow-cyan) / 0.6);
      left: calc(50% + 62px);
      top: calc(50% - 8px);
      border-radius: 55% 45% 50% 50%;
      z-index: 2;
      animation-name: glow-breathe-6;
    }

.hero-glow-blobs__cluster .glow-blob-4 {
      width: 178px;
      height: 198px;
      background: hsl(var(--glow-pink) / 0.63);
      left: calc(50% - 32px);
      top: calc(50% - 108px);
      border-radius: 50% 40% 60% 50%;
      z-index: 3;
      animation-name: glow-breathe-4;
    }

.hero-glow-blobs__cluster .glow-blob-5 {
      width: 184px;
      height: 206px;
      background: hsl(var(--glow-pink) / 0.53);
      left: calc(50% - 92px);
      top: calc(50% + 72px);
      border-radius: 42% 58% 48% 52%;
      z-index: 3;
      animation-name: glow-breathe-5;
    }

.hero-glow-blobs__cluster .glow-blob-7 {
      width: 165px;
      height: 198px;
      background: hsl(var(--glow-blue) / 0.6);
      left: calc(50% + 2px);
      top: calc(50% - 38px);
      border-radius: 52% 48% 44% 56%;
      z-index: 1;
      animation-name: glow-breathe-7;
    }

.hero-glow-blobs__cluster .glow-blob-8 {
      width: 172px;
      height: 205px;
      background: hsl(var(--glow-blue) / 0.55);
      left: calc(50% - 72px);
      top: calc(50% + 118px);
      border-radius: 48% 52% 58% 42%;
      z-index: 1;
      animation-name: glow-breathe-8;
    }

.hero-glow-blobs__cluster .glow-blob-9 {
      width: 158px;
      height: 178px;
      background: hsl(var(--glow-cyan) / 0.58);
      left: calc(50% - 132px);
      top: calc(50% - 148px);
      border-radius: 44% 56% 50% 50%;
      z-index: 2;
      animation-name: glow-breathe-9;
    }

.hero-glow-blobs__cluster .glow-blob-11 {
      width: 168px;
      height: 192px;
      background: hsl(var(--glow-cyan) / 0.56);
      left: calc(50% + 12px);
      top: calc(50% + 118px);
      border-radius: 56% 44% 48% 52%;
      z-index: 2;
      animation-name: glow-breathe-11;
    }

.hero-glow-blobs__cluster .glow-blob-10 {
      width: 152px;
      height: 176px;
      background: hsl(var(--glow-pink) / 0.6);
      left: calc(50% + 108px);
      top: calc(50% + 88px);
      border-radius: 46% 54% 52% 48%;
      z-index: 3;
      animation-name: glow-breathe-10;
    }

.hero-glow-blobs__cluster .glow-blob-12 {
      width: 160px;
      height: 184px;
      background: hsl(var(--glow-pink) / 0.55);
      left: calc(50% + 118px);
      top: calc(50% - 102px);
      border-radius: 54% 46% 44% 56%;
      z-index: 3;
      animation-name: glow-breathe-12;
    }

.hero-glow-blobs__cluster .glow-blob-13 {
      width: 178px;
      height: 210px;
      background: hsl(var(--glow-blue) / 0.63);
      left: calc(50% - 258px);
      top: calc(50% - 88px);
      border-radius: 58% 42% 50% 50%;
      z-index: 1;
      animation-name: glow-breathe-13;
    }

.hero-glow-blobs__cluster .glow-blob-14 {
      width: 162px;
      height: 188px;
      background: hsl(var(--glow-cyan) / 0.6);
      left: calc(50% - 242px);
      top: calc(50% + 52px);
      border-radius: 48% 52% 46% 54%;
      z-index: 2;
      animation-name: glow-breathe-14;
    }

.hero-glow-blobs__cluster .glow-blob-15 {
      width: 168px;
      height: 198px;
      background: hsl(var(--glow-blue) / 0.58);
      left: calc(50% - 298px);
      top: calc(50% - 158px);
      border-radius: 55% 45% 48% 52%;
      z-index: 1;
      animation-name: glow-breathe-15;
    }

.hero-glow-blobs__cluster .glow-blob-16 {
      width: 154px;
      height: 178px;
      background: hsl(var(--glow-cyan) / 0.55);
      left: calc(50% - 288px);
      top: calc(50% - 8px);
      border-radius: 50% 50% 44% 56%;
      z-index: 2;
      animation-name: glow-breathe-16;
    }

.hero-glow-blobs__cluster .glow-blob-17 {
      width: 148px;
      height: 172px;
      background: hsl(var(--glow-pink) / 0.53);
      left: calc(50% - 272px);
      top: calc(50% + 118px);
      border-radius: 44% 56% 52% 48%;
      z-index: 3;
      animation-name: glow-breathe-17;
    }

.hero-mesh {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
      /* Was 0.48  sits on top of glow blobs; same blob fog idea  doubled strength */
      opacity: 0.33;
    }

.hero-mesh-grain {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      opacity: 0.09;
      mix-blend-mode: overlay;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='ng'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23ng)'/%3E%3C/svg%3E");
    }

.hero-mesh__blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      /* normal blend = reliable on parent gradient; was screen + isolation = invisible */
      mix-blend-mode: normal;
      will-change: transform, opacity;
    }

.hero-mesh__blob--cyan {
      width: min(92vmin, 820px);
      height: min(92vmin, 820px);
      left: 40%;
      top: 36%;
      transform: translate(-50%, -50%);
      background: radial-gradient(
        circle at 45% 42%,
        rgba(125, 211, 252, 0.75) 0%,
        rgba(56, 189, 248, 0.5) 35%,
        rgba(14, 165, 233, 0.22) 58%,
        transparent 74%
      );
      animation: mesh-breathe-cyan var(--hero-breathe-cycle) ease-in-out infinite alternate;
      animation-delay: 0s;
    }

.hero-mesh__blob--pink {
      width: min(58vmin, 520px);
      height: min(58vmin, 520px);
      left: 52%;
      top: 44%;
      transform: translate(-50%, -50%);
      background: radial-gradient(
        circle at 50% 48%,
        rgba(251, 182, 206, 0.55) 0%,
        rgba(216, 180, 254, 0.42) 38%,
        rgba(167, 139, 250, 0.28) 58%,
        transparent 76%
      );
      animation: mesh-breathe-pink var(--hero-breathe-cycle) ease-in-out infinite alternate;
      animation-delay: calc(var(--hero-breathe-cycle) * -1 / 3);
    }

.hero-mesh__blob--teal {
      width: min(48vmin, 440px);
      height: min(48vmin, 440px);
      left: 64%;
      top: 46%;
      transform: translate(-50%, -50%);
      background: radial-gradient(
        circle at 40% 55%,
        rgba(45, 212, 191, 0.5) 0%,
        rgba(34, 211, 238, 0.28) 45%,
        transparent 72%
      );
      animation: mesh-breathe-teal var(--hero-breathe-cycle) ease-in-out infinite alternate;
      animation-delay: calc(var(--hero-breathe-cycle) * -2 / 3);
    }

.hero-spotlight__aurora {
      display: none !important;
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

.hero-spotlight__aurora::before,
    .hero-spotlight__aurora::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(72px);
      mix-blend-mode: screen;
      animation: aurora-drift 22s ease-in-out infinite alternate;
    }

.hero-spotlight__aurora::before {
      width: min(88vw, 760px);
      height: min(88vw, 760px);
      left: 50%;
      top: 40%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, var(--aurora-a) 0%, var(--aurora-c) 45%, transparent 68%);
      opacity: 0.75;
    }

.hero-spotlight__aurora::after {
      width: min(65vw, 520px);
      height: min(65vw, 520px);
      left: 56%;
      top: 48%;
      background: radial-gradient(circle, var(--aurora-b) 0%, transparent 62%);
      animation-delay: -8s;
      opacity: 0.55;
    }

.hero-spotlight__warp {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      pointer-events: none;
      opacity: 0.32;
    }

.hero-spotlight__vignette {
      position: absolute;
      inset: 0;
      background: var(--vignette);
      z-index: 4;
    }

.hero-spotlight__sweep {
      position: absolute;
      inset: -40% -60%;
      z-index: 2;
      background: linear-gradient(
        105deg,
        transparent 38%,
        rgba(255, 255, 255, 0.03) 48%,
        rgba(56, 189, 248, 0.05) 50%,
        rgba(255, 255, 255, 0.025) 52%,
        transparent 62%
      );
      animation: spotlight-sweep 7s cubic-bezier(0.45, 0, 0.55, 1) infinite;
      mix-blend-mode: overlay;
      opacity: 0.28;
    }

.hero-spotlight__grid {
      position: absolute;
      inset: 0;
      z-index: 3;
      opacity: 0.18;
      background-image:
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
        linear-gradient(var(--grid-line) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(ellipse 55% 50% at 50% 45%, black 20%, transparent 72%);
      animation: spotlight-grid-drift 22s linear infinite;
    }

.hero-spotlight__inner {
      position: relative;
      text-align: center;
      max-width: min(96vw, 64rem);
      padding: 2rem 1.5rem 2.25rem;
    }

.hero-spotlight__title {
      margin: 0 0 1rem;
      font-weight: 800;
      font-size: clamp(2.45rem, 10vw, 4.35rem);
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--text);
    }

.hero-spotlight__title-line {
      display: block;
      opacity: 0;
      filter: blur(12px);
      transform: translateY(28px) scale(0.96);
      animation: spotlight-reveal-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

.hero-spotlight__title-line:nth-child(1) { animation-delay: 0.2s; }

.hero-spotlight__title-line:nth-child(2) { animation-delay: 0.4s; }

.hero-spotlight__title-world-cup-nowrap {
      white-space: nowrap;
    }

.hero-spotlight__title-world-cup {
      font-size: 1.28em;
      font-weight: 850;
      letter-spacing: -0.03em;
      color: #fb923c;
      -webkit-text-fill-color: #fb923c;
    }

html[data-theme="light"] .hero-spotlight__title-world-cup {
      color: #c2410c;
      -webkit-text-fill-color: #c2410c;
    }

.hero-spotlight__title-line--lede {
      margin-top: 0.48rem;
      font-size: clamp(1.35rem, 4.8vw, 2.45rem);
      font-weight: 750;
      letter-spacing: -0.02em;
      line-height: 1.15;
      color: var(--text);
      -webkit-text-fill-color: var(--text);
    }

@media (min-width: 480px) {
      .hero-spotlight__title-lede-nowrap {
        white-space: nowrap;
      }
    }

.hero-spotlight__tag {
      font-size: 1.02rem;
      font-weight: 450;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 2rem;
      max-width: 36rem;
      margin-left: auto;
      margin-right: auto;
      opacity: 0;
      animation: spotlight-reveal-up 0.95s cubic-bezier(0.2, 0.85, 0.2, 1) 0.65s forwards;
    }

.hero-spotlight__cta-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 1rem 1.25rem;
      margin-top: 1.25rem;
      max-width: min(96vw, 64rem);
      margin-left: auto;
      margin-right: auto;
    }

.hero-spotlight__cta {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.95rem 1.65rem;
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--cta-fg);
      cursor: pointer;
      overflow: hidden;
      border-radius: 12px;
      border: 1px solid var(--hero-border);
      background: var(--cta-bg);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
      opacity: 0;
      transform: translateY(18px);
      animation: spotlight-cta-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.95s forwards;
      transition: transform 0.25s ease, border-color 0.25s;
    }

.hero-spotlight__cta:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.45);
    }

.hero-spotlight__cta--secondary {
      animation-delay: 1.08s;
    }

.hero-spotlight__cta--hero-pair {
      text-transform: none;
      letter-spacing: 0.02em;
      font-size: clamp(1.1rem, 3.2vw, 1.55rem);
      font-weight: 720;
      padding: 1.2rem clamp(1.75rem, 4vw, 2.85rem);
      min-height: 3.35rem;
      border-radius: 14px;
      box-sizing: border-box;
    }

.hero-spotlight__cta svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

.hero-spotlight__product-grid {
      max-width: 38rem;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
    }

.hero-spotlight__product-grid-list {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.48rem 0.52rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

@media (max-width: 820px) {
      .hero-spotlight__product-grid-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

.hero-spotlight__product-grid-list > li {
      margin: 0;
      padding: 0;
      display: flex;
      min-height: 0;
    }

.hero-spotlight__product-grid-list__suite {
      grid-column: auto;
    }

.hero-spotlight__product-grid-list > li:nth-child(1) .hero-product-tile { animation-delay: 0.95s; }

.hero-spotlight__product-grid-list > li:nth-child(2) .hero-product-tile { animation-delay: 1.02s; }

.hero-spotlight__product-grid-list > li:nth-child(3) .hero-product-tile { animation-delay: 1.09s; }

.hero-spotlight__product-grid-list > li:nth-child(4) .hero-product-tile { animation-delay: 1.16s; }

.hero-spotlight__product-grid-list > li:nth-child(5) .hero-product-tile { animation-delay: 1.23s; }

.hero-spotlight__meta-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 0.62rem 0.95rem;
      margin-top: 1.35rem;
      opacity: 0;
      transform: translateY(14px);
      animation: spotlight-cta-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.28s forwards;
    }

.hero-spotlight__meta-row a {
      display: inline-flex;
      align-items: center;
      gap: 0.48rem;
      padding: 0.68rem 1.15rem;
      font-size: clamp(0.72rem, 1.2vw, 0.82rem);
      font-weight: 720;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--cta-fg);
      cursor: pointer;
      border-radius: 12px;
      border: 1px solid var(--hero-border);
      background: var(--cta-bg);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
      transition: color 0.2s, border-color 0.2s, transform 0.25s ease, box-shadow 0.2s;
    }

.hero-spotlight__meta-row a:hover {
      color: var(--cta-fg);
      border-color: rgba(255, 255, 255, 0.45);
      transform: translateY(-2px);
    }

.hero-spotlight__meta-row a svg {
      width: 1.05rem;
      height: 1.05rem;
      flex-shrink: 0;
      opacity: 0.85;
    }

.hero-spotlight__meta-row a.hero-spotlight__meta-row-link--icon-only {
      gap: 0;
      padding: 0.68rem 0.88rem;
      min-width: 2.95rem;
      justify-content: center;
      letter-spacing: 0;
      text-transform: none;
    }

@media (prefers-reduced-motion: reduce) {
      .hero-spotlight__title-line,
      .hero-spotlight__tag,
      .hero-spotlight__cta,
      .hero-product-tile,
      .hero-spotlight__meta-row {
        animation: none !important;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
      }
      .hero-glow-blobs {
        opacity: 1 !important;
      }
      .hero-glow-blobs__cluster {
        animation: none !important;
        transform: translate(-50%, calc(-50% - 2.8vh)) scale(1) !important;
      }
      .hero-glow-blobs__cluster .glow-blob {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
      }
      .hero-spotlight__aurora::before,
      .hero-spotlight__aurora::after {
        animation: none !important;
      }
      .hero-mesh__blob {
        animation: none !important;
      }
    }
