:root {
   --bg-primary: #000000;
   --bg-secondary: #0a0a0d;
   --bg-card: #0e0e11;
   --bg-card-hover: #16161a;
   --text-primary: #ffffff;
   --text-secondary: #9a9fa8;
   --text-muted: #565b64;
   --border: rgba(255, 255, 255, 0.09);
   --border-light: rgba(255, 255, 255, 0.06);
   --border-strong: rgba(255, 255, 255, 0.22);
   --accent: #ffffff;
   --accent-dim: rgba(255, 255, 255, 0.1);
   --accent-rgb: 255, 255, 255;
   --c-cyan: #22d3ee;
   --c-green: #34d399;
   --c-orange: #fbbf24;
   --c-purple: #a78bfa;
   --radius: 14px;
   --radius-sm: 8px;
   --radius-lg: 20px;
   --radius-pill: 999px;
   --clip-size: 12px; 
   --grid-color: rgba(255, 255, 255, 0.03);
   --grid-size: 40px;
   --font-sans: "Inter", -apple-system, "Segoe UI", sans-serif;
   --font-mono: "JetBrains Mono", ui-monospace, monospace;
   --transition: all 0.2s ease;
   --transition-slow: all 0.4s ease;
}
*,
::after,
::before {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
html {
   scroll-behavior: smooth;
}
body {
   font-family: var(--font-sans);
   background: var(--bg-primary);
   color: var(--text-primary);
   line-height: 1.7;
   overflow-x: hidden;
   font-size: 16px;
   -webkit-font-smoothing: antialiased;
}
img {
   max-width: 100%;
   display: block;
}
a {
   color: inherit;
}
::selection {
   background: rgba(255, 255, 255, 0.9);
   color: #000;
}
:focus-visible {
   outline: 2px solid rgba(255, 255, 255, 0.6);
   outline-offset: 2px;
}
.sr-only {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0 0 0 0);
   white-space: nowrap;
   border: 0;
}
.sprite {
   display: none;
}
.container {
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 clamp(32px, 5vw, 72px);
}
.grad-text {
   background: linear-gradient(180deg, #ffffff 30%, #7a7a80 100%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   color: transparent;
}
.icon {
   width: 1.15em;
   height: 1.15em;
   flex-shrink: 0;
   stroke: currentColor;
   fill: none;
   stroke-width: 2;
   stroke-linecap: round;
   stroke-linejoin: round;
   vertical-align: -0.18em;
}
.reveal {
   opacity: 0;
   transform: translateY(24px);
   transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
   opacity: 1;
   transform: none;
}
.loader-spin {
   display: inline-block;
   width: 28px;
   height: 28px;
   border-radius: 50%;
   border: 3px solid rgba(255, 255, 255, 0.12);
   border-top-color: var(--text-primary);
   animation: spin 0.8s linear infinite;
}
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 9px;
   font-family: var(--font-sans);
   font-size: 0.95rem;
   font-weight: 600;
   line-height: 1;
   text-decoration: none;
   white-space: nowrap;
   cursor: pointer;
   border: 1px solid transparent;
   transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease,
      border-color 0.2s ease, color 0.2s ease;
}
.btn-pill {
   padding: 14px 26px;
   border-radius: var(--radius-pill);
}
.btn-white {
   background: #ffffff;
   color: #000000;
}
.btn-white:hover {
   transform: translateY(-2px);
   box-shadow: 0 12px 32px -10px rgba(255, 255, 255, 0.4);
}
.btn-dark {
   background: var(--bg-card);
   color: var(--text-primary);
   border-color: var(--border);
}
.btn-dark:hover {
   transform: translateY(-2px);
   background: var(--bg-card-hover);
   border-color: var(--border-strong);
}
.btn-square {
   width: 46px;
   height: 46px;
   border-radius: var(--radius-pill);
   background: var(--bg-card);
   color: var(--text-primary);
   border-color: var(--border);
   font-size: 1.1rem;
}
.btn-square:hover {
   transform: translateY(-2px);
   border-color: var(--border-strong);
   background: var(--bg-card-hover);
}
.btn-square .icon {
   width: 1.25em;
   height: 1.25em;
}
.btn-ghost {
   background: none;
   color: var(--text-secondary);
   padding: 10px 4px;
   border-radius: 0;
   background-image: linear-gradient(currentColor, currentColor);
   background-repeat: no-repeat;
   background-size: 0% 1px;
   background-position: 0 100%;
   transition: color 0.2s ease, background-size 0.3s ease;
}
.btn-ghost:hover {
   color: var(--text-primary);
   background-size: 100% 1px;
}
.btn-shine {
   position: relative;
   overflow: hidden;
}
.btn-shine::after {
   content: "";
   position: absolute;
   inset: 0;
   transform: translateX(-130%) skewX(-20deg);
   background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent
   );
   transition: transform 0.7s ease;
   pointer-events: none;
}
.btn-white.btn-shine::after {
   background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 0, 0, 0.1),
      transparent
   );
}
.btn-shine:hover::after {
   transform: translateX(130%) skewX(-20deg);
}
.btn .icon-go {
   transition: transform 0.25s ease;
}
.btn:hover .icon-go {
   transform: translateX(4px);
}
.site-nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 100;
   background: transparent;
   border-bottom: 1px solid transparent;
   transition: background 0.3s ease, border-color 0.3s ease,
      backdrop-filter 0.3s ease;
}
.site-nav.scrolled {
   background: rgba(0, 0, 0, 0.8);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   border-bottom-color: var(--border-light);
}
.nav-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   height: 68px;
}
.nav-brand {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   font-size: 0.98rem;
   letter-spacing: 0.2px;
   text-decoration: none;
   color: var(--text-primary);
}
.nav-brand img {
   width: 26px;
   height: 26px;
   object-fit: contain;
}
.site-nav .nav-links {
   display: flex;
   align-items: center;
   gap: 30px;
}
.site-nav .nav-links a {
   font-size: 0.9rem;
   font-weight: 500;
   color: var(--text-secondary);
   text-decoration: none;
   transition: var(--transition);
}
.site-nav .nav-links a:hover {
   color: var(--text-primary);
}
.nav-actions {
   display: flex;
   align-items: center;
   gap: 12px;
}
.nav-toggle {
   display: none;
   width: 42px;
   height: 42px;
   align-items: center;
   justify-content: center;
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: var(--radius-sm);
   color: var(--text-primary);
   font-size: 1.05rem;
   cursor: pointer;
   transition: var(--transition);
}
.nav-toggle:hover {
   border-color: var(--border-strong);
}
.lp-dl-toggle {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 11px 20px;
   border-radius: var(--radius-pill);
   background: #ffffff;
   color: #000000;
   border: none;
   text-decoration: none;
   font-family: var(--font-sans);
   font-size: 0.9rem;
   font-weight: 700;
   cursor: pointer;
   transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.lp-dl-toggle:hover {
   transform: translateY(-1px);
   box-shadow: 0 10px 26px -10px rgba(255, 255, 255, 0.45);
}
.section {
   padding: 110px 0;
   position: relative;
}
.section-head {
   text-align: center;
   max-width: 640px;
   margin: 0 auto 56px;
}
.section-head h2 {
   font-size: clamp(2rem, 4.4vw, 3rem);
   font-weight: 800;
   letter-spacing: -0.02em;
   line-height: 1.15;
   margin-bottom: 18px;
}
.section-head p {
   color: var(--text-secondary);
   font-size: 1.02rem;
}
.features {
   overflow: hidden;
}
.features-backdrop {
   position: absolute;
   inset: 0;
   background: url("assets/features-outworld.png") center 38% / cover no-repeat;
   z-index: 0;
   pointer-events: none;
}
.features-backdrop::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(
      to bottom,
      #000 0%,
      rgba(0, 0, 0, 0.72) 22%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.72) 78%,
      #000 100%
   );
}
.features > .container {
   position: relative;
   z-index: 1;
}
.hero {
   position: relative;
   padding: 180px 0 90px;
   min-height: 92vh;
   display: flex;
   align-items: center;
   overflow: hidden;
}
.hero::before {
   content: "";
   position: absolute;
   top: -30%;
   left: 50%;
   transform: translateX(-50%);
   width: 1200px;
   height: 700px;
   background: radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.04),
      transparent 65%
   );
   pointer-events: none;
   z-index: 1;
}
.hero-backdrop {
   position: absolute;
   inset: 0;
   background: url("assets/hero-radiant-dire.jpg") center 32% / cover no-repeat;
   z-index: 0;
   pointer-events: none;
}
.hero-backdrop::after {
   content: "";
   position: absolute;
   inset: 0;
   background:
      linear-gradient(to right, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.48) 45%, rgba(0, 0, 0, 0.2) 75%),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 55%, #000 100%);
}
.hero-grid {
   position: relative;
   z-index: 1;
   display: grid;
   grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
   align-items: center;
   gap: 48px;
   width: 100%;
}
.hero-badges {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-bottom: 28px;
}
.badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 7px 15px;
   font-family: var(--font-mono);
   font-size: 0.72rem;
   font-weight: 500;
   letter-spacing: 0.4px;
   color: var(--text-primary);
   text-decoration: none;
   border-radius: var(--radius-pill);
   border: 1px solid var(--border);
   background: rgba(255, 255, 255, 0.03);
   transition: var(--transition);
}
.badge:hover {
   border-color: var(--border-strong);
}
@property --badge-angle {
   syntax: "<angle>";
   inherits: false;
   initial-value: 0deg;
}
.badge-glow {
   border: 1px solid transparent;
   background: linear-gradient(#050507, #050507) padding-box,
      conic-gradient(
            from var(--badge-angle),
            #f472b6,
            #a78bfa,
            #38bdf8,
            #34d399,
            #f472b6
         )
         border-box;
   animation: badgeSpin 3.5s linear infinite;
}
@keyframes badgeSpin {
   to {
      --badge-angle: 360deg;
   }
}
.badge-dot {
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: var(--c-green);
   box-shadow: 0 0 8px var(--c-green);
}
.hero-title {
   font-size: clamp(2.9rem, 6.4vw, 4.8rem);
   font-weight: 800;
   line-height: 1.02;
   letter-spacing: -0.025em;
   text-transform: uppercase;
   margin-bottom: 26px;
   text-shadow: 0 2px 24px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
}
.hero-title .text-dim {
   color: #a8a8b0;
}
.hero-sub {
   color: var(--text-secondary);
   font-size: 1.08rem;
   max-width: 480px;
   margin-bottom: 34px;
}
.hero-actions {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 12px;
   margin-bottom: 52px;
}
.hero-socials {
   display: inline-flex;
   align-items: center;
   gap: 12px;
}
.hero-stats {
   display: flex;
   align-items: stretch;
   gap: 0;
   list-style: none;
}
.hero-stats li {
   display: flex;
   flex-direction: column;
   gap: 2px;
   padding: 0 30px;
   border-left: 1px solid var(--border-light);
}
.hero-stats li:first-child {
   padding-left: 0;
   border-left: none;
}
.hero-stats strong {
   font-family: var(--font-mono);
   font-size: 1.55rem;
   font-weight: 800;
   line-height: 1.2;
}
.hero-stats span {
   font-family: var(--font-mono);
   font-size: 0.62rem;
   font-weight: 600;
   letter-spacing: 2.5px;
   text-transform: uppercase;
   color: var(--text-muted);
}
.hero-visual {
   position: relative;
   perspective: 1400px;
   min-width: 0;
}
@property --carousel-angle {
   syntax: "<angle>";
   inherits: false;
   initial-value: 0deg;
}
.hero-carousel {
   position: relative;
   display: flex;
   flex-direction: column;
   width: 134%;
   max-width: none;
   aspect-ratio: 40 / 21;
   border-radius: var(--radius);
   border: 1px solid transparent;
   background: linear-gradient(#0a0a0c, #0a0a0c) padding-box,
      conic-gradient(
            from var(--carousel-angle),
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0.04) 22%,
            rgba(255, 255, 255, 0.04) 50%,
            rgba(255, 255, 255, 0.5) 72%,
            rgba(255, 255, 255, 0.04) 94%,
            rgba(255, 255, 255, 0.5) 100%
         )
         border-box;
   animation: heroCarouselSpin 7s linear infinite;
   overflow: hidden;
   transform: rotateY(-10deg) rotateX(3deg) scale(1.02);
   transform-origin: left center;
   box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
   -webkit-mask-image: linear-gradient(
      to bottom,
      #000 74%,
      rgba(0, 0, 0, 0.55) 100%
   );
   mask-image: linear-gradient(to bottom, #000 74%, rgba(0, 0, 0, 0.55) 100%);
}
@keyframes heroCarouselSpin {
   to {
      --carousel-angle: 360deg;
   }
}
.hero-window-bar {
   flex: 0 0 auto;
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 10px 14px;
   background: rgba(255, 255, 255, 0.045);
   border-bottom: 1px solid var(--border-light);
}
.hero-window-title {
   margin-left: 8px;
   font-family: var(--font-mono);
   font-size: 0.66rem;
   font-weight: 600;
   letter-spacing: 0.3px;
   color: var(--text-secondary);
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}
.hero-carousel-viewport {
   position: relative;
   flex: 1;
   overflow: hidden;
}
.hero-carousel-track {
   position: absolute;
   inset: 0;
   transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
   will-change: transform;
}
.hero-slide {
   position: absolute;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
}
.hero-slide:nth-child(1) {
   top: 0;
}
.hero-slide:nth-child(2) {
   top: 100%;
}
.hero-slide:nth-child(3) {
   top: 200%;
}
.hero-carousel-dots {
   position: absolute;
   right: 12px;
   top: 50%;
   transform: translateY(-50%);
   display: flex;
   flex-direction: column;
   gap: 6px;
   z-index: 2;
}
.hero-carousel-dots button {
   width: 8px;
   height: 8px;
   padding: 0;
   border: none;
   border-radius: var(--radius-pill);
   background: rgba(255, 255, 255, 0.28);
   cursor: pointer;
   transition: var(--transition);
}
.hero-carousel-dots button:hover {
   background: rgba(255, 255, 255, 0.55);
}
.hero-carousel-dots button.is-active {
   height: 22px;
   background: #ffffff;
}
.feature-tabs {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 14px;
   max-width: 880px;
   margin: 0 auto 26px;
}
.feature-tab {
   display: flex;
   align-items: center;
   text-align: left;
   gap: 14px;
   padding: 16px 18px;
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   color: var(--text-secondary);
   font-family: var(--font-sans);
   cursor: pointer;
   transition: var(--transition);
}
.feature-tab:hover {
   border-color: var(--border-strong);
   color: var(--text-primary);
}
.feature-tab.is-active {
   background: var(--bg-card-hover);
   border-color: var(--border-strong);
   color: var(--text-primary);
}
.feature-tab .tab-ic {
   width: 40px;
   height: 40px;
   flex-shrink: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: var(--radius-sm);
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid var(--border-light);
   font-size: 1.05rem;
}
.feature-tab strong {
   display: block;
   font-size: 0.92rem;
   font-weight: 700;
   line-height: 1.3;
}
.feature-tab span {
   display: block;
   font-size: 0.74rem;
   line-height: 1.4;
   color: var(--text-muted);
}
.feature-tab.is-active span,
.feature-tab:hover span {
   color: var(--text-secondary);
}
.preview-frame {
   max-width: 980px;
   margin: 0 auto;
   background: #0a0a0c;
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   overflow: hidden;
   box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}
.preview-bar {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 13px 16px;
   border-bottom: 1px solid var(--border-light);
   background: rgba(255, 255, 255, 0.02);
}
.win-dot {
   width: 11px;
   height: 11px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.14);
}
.win-dot--r {
   background: #ff5f57;
}
.win-dot--y {
   background: #febc2e;
}
.win-dot--g {
   background: #28c840;
}
.preview-label {
   margin-left: 10px;
   font-family: var(--font-mono);
   font-size: 0.62rem;
   font-weight: 600;
   letter-spacing: 3px;
   color: var(--text-muted);
   display: inline-flex;
   align-items: center;
   gap: 8px;
}
.preview-label::before {
   content: "";
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--c-purple);
   box-shadow: 0 0 8px var(--c-purple);
}
.preview-dots {
   margin-left: auto;
   display: flex;
   gap: 6px;
}
.preview-dots button {
   width: 8px;
   height: 8px;
   padding: 0;
   border-radius: var(--radius-pill);
   border: none;
   background: rgba(255, 255, 255, 0.18);
   cursor: pointer;
   transition: var(--transition);
}
.preview-dots button.is-active {
   width: 22px;
   background: var(--c-purple);
}
.preview-body {
   position: relative;
   aspect-ratio: 16 / 9.4;
   background: #000;
}
.preview-img {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: top center;
   opacity: 0;
   transition: opacity 0.35s ease;
}
.preview-img.is-active {
   opacity: 1;
}
.modspack-grid {
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   gap: 14px;
   margin-bottom: 36px;
}
.mp-tile {
   position: relative;
   aspect-ratio: 3 / 4;
   border-radius: var(--radius);
   overflow: hidden;
   border: 1px solid var(--border);
   background: var(--bg-card);
   transition: var(--transition);
}
.mp-tile:hover {
   border-color: var(--border-strong);
   transform: translateY(-4px);
}
.mp-tile img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
}
.mp-tile:hover img {
   transform: scale(1.07);
}
.mp-tile::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 55%);
   pointer-events: none;
}
.mp-tile .mp-name {
   position: absolute;
   left: 0;
   right: 0;
   bottom: 10px;
   z-index: 2;
   text-align: center;
   font-family: var(--font-mono);
   font-size: 0.66rem;
   font-weight: 700;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: #fff;
   text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
   padding: 0 6px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}
.mp-more {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 8px;
   text-decoration: none;
   color: var(--text-secondary);
   font-family: var(--font-mono);
   font-size: 0.8rem;
   font-weight: 700;
   letter-spacing: 1px;
   cursor: pointer;
}
.mp-more:hover {
   color: var(--text-primary);
}
.mp-more .icon {
   width: 1.6em;
   height: 1.6em;
}
.mp-more::after {
   display: none;
}
.modspack-actions {
   display: flex;
   justify-content: center;
   gap: 12px;
}
.trust-grid {
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
   align-items: center;
   gap: 72px;
}
.trust-copy h2 {
   font-size: clamp(2rem, 4vw, 2.8rem);
   font-weight: 800;
   letter-spacing: -0.02em;
   line-height: 1.15;
   margin-bottom: 18px;
}
.trust-copy > p {
   color: var(--text-secondary);
   margin-bottom: 34px;
   max-width: 440px;
}
.trust-list {
   list-style: none;
   display: grid;
   gap: 26px;
}
.trust-list li {
   display: grid;
   grid-template-columns: 46px 1fr;
   gap: 16px;
   align-items: start;
}
.trust-ic {
   width: 46px;
   height: 46px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: var(--radius-sm);
   background: var(--bg-card);
   border: 1px solid var(--border);
   font-size: 1.1rem;
}
.trust-list strong {
   display: block;
   font-size: 1rem;
   font-weight: 700;
   margin-bottom: 2px;
}
.trust-list span {
   color: var(--text-secondary);
   font-size: 0.9rem;
   line-height: 1.55;
}
.terminal {
   position: relative;
   background: #0a0a0c;
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.terminal-bar {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 13px 16px;
   border-bottom: 1px solid var(--border-light);
}
.terminal-tab {
   margin-left: 10px;
   font-family: var(--font-mono);
   font-size: 0.7rem;
   color: var(--text-secondary);
   display: inline-flex;
   align-items: center;
   gap: 8px;
}
.terminal-live {
   margin-left: auto;
   font-family: var(--font-mono);
   font-size: 0.62rem;
   letter-spacing: 1.5px;
   color: var(--c-green);
   display: inline-flex;
   align-items: center;
   gap: 6px;
}
.terminal-live::before {
   content: "";
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--c-green);
   box-shadow: 0 0 8px var(--c-green);
}
.terminal-body {
   padding: 22px 20px 26px;
   font-family: var(--font-mono);
   font-size: 0.78rem;
   line-height: 2;
   color: var(--text-secondary);
   overflow-x: auto;
   white-space: pre;
}
.terminal-body .t-cmd {
   color: var(--text-primary);
   font-weight: 700;
}
.terminal-body .t-ok {
   color: var(--c-green);
}
.t-caret {
   display: inline-block;
   width: 9px;
   height: 1.05em;
   margin-left: 2px;
   background: var(--text-primary);
   vertical-align: -0.15em;
   animation: caretBlink 1s steps(2) infinite;
}
@keyframes caretBlink {
   50% {
      opacity: 0;
   }
}
.terminal-badge {
   position: absolute;
   top: -15px;
   right: 22px;
   display: inline-flex;
   align-items: center;
   gap: 7px;
   padding: 7px 14px;
   border-radius: var(--radius-pill);
   background: #101014;
   border: 1px solid var(--border-strong);
   font-family: var(--font-mono);
   font-size: 0.62rem;
   font-weight: 700;
   letter-spacing: 2px;
   color: var(--text-primary);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.terminal-badge .icon {
   color: var(--c-green);
}
.faq-list {
   max-width: 760px;
   margin: 0 auto 36px;
   display: grid;
   gap: 12px;
}
.faq-item {
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   overflow: hidden;
   transition: var(--transition);
}
.faq-item:hover {
   border-color: var(--border-strong);
}
.faq-item summary {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 20px 24px;
   font-weight: 700;
   font-size: 0.98rem;
   cursor: pointer;
   list-style: none;
}
.faq-item summary::-webkit-details-marker {
   display: none;
}
.faq-item summary .icon {
   color: var(--text-muted);
   transition: transform 0.3s ease;
}
.faq-item[open] summary .icon {
   transform: rotate(180deg);
}
.faq-body {
   padding: 0 24px 22px;
   color: var(--text-secondary);
   font-size: 0.92rem;
   line-height: 1.7;
}
.faq-body a {
   color: var(--text-primary);
   text-decoration: underline;
   text-underline-offset: 3px;
   text-decoration-color: rgba(255, 255, 255, 0.3);
}
.faq-actions {
   display: flex;
   justify-content: center;
}
.cta {
   text-align: center;
}
.cta h2 {
   font-size: clamp(2.2rem, 5vw, 3.4rem);
   font-weight: 800;
   letter-spacing: -0.02em;
   line-height: 1.12;
   margin-bottom: 16px;
}
.cta > .container > p {
   color: var(--text-secondary);
   max-width: 520px;
   margin: 0 auto 38px;
}
.cta-buttons {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 14px;
   margin-bottom: 46px;
}
.dl-size {
   font-family: var(--font-mono);
   font-size: 0.72rem;
   font-weight: 500;
   opacity: 0.6;
}
.spec-cards {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 14px;
}
.spec-card {
   min-width: 200px;
   padding: 18px 26px;
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   display: flex;
   flex-direction: column;
   gap: 2px;
}
.spec-card span {
   font-family: var(--font-mono);
   font-size: 0.62rem;
   font-weight: 600;
   letter-spacing: 2.5px;
   text-transform: uppercase;
   color: var(--text-muted);
}
.spec-card strong {
   font-size: 1.02rem;
   font-weight: 700;
}
.dl-hero {
   position: relative;
   min-height: 88vh;
   display: flex;
   align-items: center;
   padding: 180px 0 80px;
   overflow: hidden;
   text-align: center;
}
.dl-hero::before {
   content: "";
   position: absolute;
   top: -30%;
   left: 50%;
   transform: translateX(-50%);
   width: 1200px;
   height: 700px;
   background: radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.06),
      transparent 65%
   );
   pointer-events: none;
}
.dl-hero-inner {
   position: relative;
   max-width: 880px;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   align-items: center;
}
.dl-title {
   font-size: clamp(1.8rem, 8vw, 4.6rem);
   font-weight: 800;
   line-height: 1.05;
   letter-spacing: -0.02em;
   margin: 28px 0 18px;
}
.dl-title .text-dim {
   color: #a8a8b0;
}
.dl-sub {
   color: var(--text-secondary);
   font-size: 1.08rem;
   max-width: 480px;
   margin: 0 0 34px;
}
.dl-cta-row {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 14px;
   width: 100%;
}
.dl-cta {
   padding: 17px 34px;
   font-size: 1.02rem;
}
.dl-note {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   margin-top: 16px;
   font-size: 0.82rem;
   color: var(--text-secondary);
}
.dl-note .icon {
   width: 1em;
   height: 1em;
   color: var(--c-green);
}
.dl-meta {
   margin-top: 30px;
   font-family: var(--font-mono);
   font-size: 0.78rem;
   color: var(--text-muted);
}
.site-footer {
   border-top: 1px solid var(--border-light);
   padding: 72px 0 0;
   background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}
.footer-grid {
   display: grid;
   grid-template-columns: 1.6fr 1fr 1fr 1fr;
   gap: 48px;
   padding-bottom: 56px;
}
.footer-brand .nav-brand {
   margin-bottom: 16px;
}
.footer-brand p {
   color: var(--text-secondary);
   font-size: 0.9rem;
   max-width: 300px;
   margin-bottom: 22px;
}
.footer-socials {
   display: flex;
   gap: 10px;
}
.footer-socials .btn-square {
   width: 42px;
   height: 42px;
   border-radius: var(--radius-sm);
}
.footer-col h4 {
   font-family: var(--font-mono);
   font-size: 0.66rem;
   font-weight: 700;
   letter-spacing: 2.5px;
   text-transform: uppercase;
   color: var(--text-muted);
   margin-bottom: 18px;
}
.footer-col a {
   display: flex;
   align-items: center;
   gap: 9px;
   color: var(--text-secondary);
   text-decoration: none;
   font-size: 0.9rem;
   padding: 6px 0;
   transition: var(--transition);
}
.footer-col a:hover {
   color: var(--text-primary);
}
.footer-col a .icon {
   width: 1em;
   height: 1em;
   color: var(--text-muted);
}
.footer-bottom {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   padding-top: 26px;
   padding-bottom: 26px;
   border-top: 1px solid var(--border-light);
   font-family: var(--font-mono);
   font-size: 0.7rem;
   color: var(--text-muted);
}
.navbar {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 100;
   background: rgba(0, 0, 0, 0.82);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   border-bottom: 1px solid var(--border-light);
   transition: background 0.3s ease;
}
.nav-container {
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 32px;
   height: 66px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
}
.logo {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   font-size: 0.98rem;
   color: var(--text-primary);
   text-decoration: none;
}
.lp-logo-mark {
   width: 24px;
   height: 24px;
}
.navbar .nav-links {
   display: flex;
   align-items: center;
   gap: 28px;
   list-style: none;
}
.navbar .nav-links a {
   font-size: 0.88rem;
   font-weight: 500;
   color: var(--text-secondary);
   text-decoration: none;
   transition: var(--transition);
}
.navbar .nav-links a:hover {
   color: var(--text-primary);
}
.section-header {
   text-align: center;
   margin-bottom: 44px;
}
.section-header h2 {
   font-size: clamp(1.9rem, 4vw, 2.6rem);
   font-weight: 800;
   letter-spacing: -0.02em;
   background: linear-gradient(180deg, #ffffff 30%, #7a7a80 100%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   margin-bottom: 10px;
}
.section-tag {
   display: inline-block;
   font-family: var(--font-mono);
   font-size: 0.66rem;
   font-weight: 700;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: var(--text-muted);
   margin-bottom: 12px;
}
.section-subtitle {
   color: var(--text-secondary);
   font-size: 0.98rem;
   max-width: 560px;
   margin: 0 auto;
}
.btn-primary {
   background: #ffffff;
   color: #000000;
   padding: 13px 24px;
   border-radius: var(--radius-pill);
}
.btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 12px 32px -10px rgba(255, 255, 255, 0.4);
   color: #000000;
}
.btn-secondary {
   background: var(--bg-card);
   color: var(--text-primary);
   border: 1px solid var(--border);
   padding: 13px 24px;
   border-radius: var(--radius-pill);
}
.btn-secondary:hover {
   transform: translateY(-2px);
   background: var(--bg-card-hover);
   border-color: var(--border-strong);
}
.animated-bg {
   position: fixed;
   inset: 0;
   z-index: -1;
   overflow: hidden;
   background: var(--bg-primary);
}
.animated-bg::before {
   content: "";
   position: absolute;
   inset: -4%;
   background-image: url("assets/hero-bg.png");
   background-size: cover;
   background-position: center;
}
.animated-bg::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.78);
}
.gradient-orb {
   display: none;
}
.footer {
   position: relative;
   z-index: 10;
   background: #000;
   border-top: 1px solid var(--border-light);
   padding: 56px 0 32px;
}
.copyright {
   color: var(--text-muted);
   font-size: 0.78rem;
}
html.embed {
   background: #0b0b0e;
}
html.embed .site-nav,
html.embed .navbar,
html.embed .site-footer,
html.embed .footer,
html.embed .back-to-top {
   display: none !important;
}
html.embed .animated-bg {
   display: none;
}
html.embed .updates-section,
html.embed .whatsnew-section {
   padding-top: 28px !important;
}
.lp-modal {
   position: fixed;
   inset: 0;
   z-index: 200;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 3vh 3vw;
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
   transition: opacity 0.25s ease, visibility 0.25s;
}
.lp-modal.open {
   opacity: 1;
   visibility: visible;
   pointer-events: auto;
}
.lp-modal__backdrop {
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.72);
   backdrop-filter: blur(6px);
   -webkit-backdrop-filter: blur(6px);
}
.lp-modal__dialog {
   position: relative;
   display: flex;
   flex-direction: column;
   width: min(1080px, 100%);
   height: min(880px, 94vh);
   background: #0b0b0e;
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
   transform: translateY(14px) scale(0.985);
   transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-modal.open .lp-modal__dialog {
   transform: none;
}
.lp-modal__bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 12px 14px;
   flex-shrink: 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
   background: rgba(255, 255, 255, 0.02);
}
.lp-modal__title {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-size: 12px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--text-primary);
}
.lp-modal__title .icon {
   width: 13px;
   height: 13px;
   color: var(--text-primary);
}
.lp-modal__actions {
   display: flex;
   align-items: center;
   gap: 8px;
}
.lp-modal__btn {
   width: 34px;
   height: 34px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 13px;
   color: var(--text-secondary);
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 9px;
   cursor: pointer;
   text-decoration: none;
   transition: var(--transition);
}
.lp-modal__btn:hover {
   color: var(--text-primary);
   background: rgba(255, 255, 255, 0.09);
   border-color: rgba(255, 255, 255, 0.2);
}
.lp-modal__body {
   position: relative;
   flex: 1;
   min-height: 0;
}
.lp-modal__frame {
   width: 100%;
   height: 100%;
   border: 0;
   display: block;
   background: #0b0b0e;
}
.lp-modal__loader {
   position: absolute;
   inset: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   background: #0b0b0e;
}
.lp-modal__spin {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   border: 3px solid rgba(255, 255, 255, 0.12);
   border-top-color: var(--text-primary);
   animation: spin 0.8s linear infinite;
}
@keyframes spin {
   to {
      transform: rotate(360deg);
   }
}
body.modal-open {
   overflow: hidden;
}
@media (max-width: 1024px) {
   .hero {
      padding-top: 150px;
      min-height: 0;
   }
   .hero-backdrop {
      background-position: center 25%;
   }
   .hero-backdrop::after {
      background:
         linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 40%, #000 100%);
   }
   .hero-grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 56px;
   }
   .hero-copy,
   .hero-visual {
      min-width: 0;
   }
   .hero-visual {
      perspective: none;
   }
   .hero-carousel {
      width: 100%;
      max-width: 100%;
      transform: none;
   }
   .trust-grid {
      grid-template-columns: 1fr;
      gap: 56px;
   }
   .modspack-grid {
      grid-template-columns: repeat(4, 1fr);
   }
   .footer-grid {
      grid-template-columns: 1fr 1fr;
   }
}
@media (max-width: 768px) {
   .section {
      padding: 76px 0;
   }
   .dl-hero {
      min-height: auto;
      padding: 132px 0 64px;
   }
   .dl-cta-row {
      flex-direction: column;
   }
   .nav-inner {
      gap: 10px;
   }
   .nav-brand {
      font-size: 0.88rem;
   }
   .nav-actions {
      gap: 8px;
   }
   .lp-dl-toggle {
      padding: 10px 15px;
      font-size: 0.84rem;
   }
   .nav-toggle {
      display: flex;
   }
   .site-nav .nav-links,
   .navbar .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 10px 24px 18px;
      background: rgba(0, 0, 0, 0.94);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-light);
      display: none;
   }
   .site-nav .nav-links.active,
   .navbar .nav-links.active {
      display: flex;
   }
   .site-nav .nav-links a,
   .navbar .nav-links a {
      padding: 13px 0;
      font-size: 0.98rem;
      border-bottom: 1px solid var(--border-light);
   }
   .site-nav .nav-links a:last-child,
   .navbar .nav-links li:last-child a {
      border-bottom: none;
   }
   .hero {
      padding-top: 130px;
   }
   .hero-stats {
      flex-wrap: wrap;
      gap: 18px 0;
   }
   .hero-stats li {
      padding: 0 20px;
   }
   .feature-tabs {
      grid-template-columns: 1fr;
      max-width: 480px;
   }
   .preview-body {
      aspect-ratio: 16 / 10.5;
   }
   .modspack-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
   }
   .spec-cards {
      flex-direction: column;
      align-items: center;
   }
   .spec-card {
      width: min(320px, 100%);
      text-align: center;
   }
   .footer-grid {
      grid-template-columns: 1fr;
      gap: 36px;
   }
   .footer-bottom {
      flex-direction: column;
      text-align: center;
   }
}
@media (max-width: 480px) {
   .nav-brand span {
      display: none;
   }
   .hero-title {
      font-size: 2.4rem;
   }
   .hero-actions .btn-pill {
      flex: 1 1 100%;
   }
   .modspack-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}
@media (max-width: 640px) {
   .lp-modal {
      padding: 0;
   }
   .lp-modal__dialog {
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 0;
   }
}
@media (prefers-reduced-motion: reduce) {
   html {
      scroll-behavior: auto;
   }
   .reveal {
      opacity: 1;
      transform: none;
      transition: none;
   }
   .btn,
   .btn:hover,
   .mp-tile,
   .mp-tile img,
   .btn .icon-go {
      transition: none;
      transform: none;
   }
   .btn-shine::after {
      display: none;
   }
   .hero-carousel {
      transform: none;
      width: 100%;
      animation: none;
   }
   .hero-carousel-track {
      transition: none;
   }
   .badge-glow,
   .t-caret {
      animation: none;
   }
   .lang-switch__caret {
      transition: none;
   }
}
html.i18n-pending body {
   visibility: hidden;
}
.lang-switch {
   position: relative;
   display: inline-flex;
}
.lang-switch__btn {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 7px 10px;
   background: transparent;
   border: 1px solid var(--border);
   border-radius: var(--radius-pill);
   color: var(--text-secondary);
   font-family: inherit;
   font-size: 0.82rem;
   font-weight: 600;
   line-height: 1;
   cursor: pointer;
   transition: var(--transition);
}
.lang-switch__btn:hover {
   color: var(--text-primary);
   border-color: var(--border-strong);
   background: var(--accent-dim);
}
.lang-switch__label {
   letter-spacing: 0.02em;
}
.lang-switch .icon {
   width: 1.05rem;
   height: 1.05rem;
}
.lang-switch__caret {
   width: 0.85rem;
   height: 0.85rem;
   opacity: 0.7;
   transition: transform 0.2s ease;
}
.lang-switch__btn[aria-expanded="true"] .lang-switch__caret {
   transform: rotate(180deg);
}
.lang-switch__menu {
   position: absolute;
   top: calc(100% + 8px);
   right: 0;
   min-width: 190px;
   margin: 0;
   padding: 6px;
   list-style: none;
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: var(--radius-sm);
   box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
   z-index: 200;
}
.lang-switch__menu[hidden] {
   display: none;
}
.lang-switch__option {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 14px;
   padding: 9px 11px;
   border-radius: var(--radius-sm);
   color: var(--text-secondary);
   font-size: 0.88rem;
   cursor: pointer;
   transition: var(--transition);
}
.lang-switch__option:hover,
.lang-switch__option:focus-visible {
   background: var(--accent-dim);
   color: var(--text-primary);
   outline: none;
}
.lang-switch__option.is-active {
   color: var(--text-primary);
   font-weight: 600;
}
.lang-switch__code {
   color: var(--text-muted);
   font-family: var(--font-mono);
   font-size: 0.74rem;
}
.lang-switch__option.is-active .lang-switch__code {
   color: var(--text-secondary);
}
@media (max-width: 480px) {
   .lang-switch__btn {
      padding: 7px 8px;
   }
   .lang-switch__caret {
      display: none;
   }
}
.nav-progress-bar {
   position: absolute;
   bottom: 0;
   left: 0;
   height: 2px;
   width: 100%;
   background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
   transform-origin: 0% 50%;
   transform: scaleX(0);
   transition: transform 0.08s ease-out;
   z-index: 1001;
   pointer-events: none;
   box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}
.spotlight-card {
   position: relative;
   transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
               box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
               border-color 0.3s ease;
}
.spotlight-card::before {
   content: "";
   position: absolute;
   inset: 0;
   border-radius: inherit;
   background: radial-gradient(
      450px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255, 255, 255, 0.07),
      transparent 50%
   );
   opacity: 0;
   transition: opacity 0.35s ease;
   pointer-events: none;
   z-index: 1;
}
.spotlight-card:hover::before {
   opacity: 1;
}
.spotlight-card:hover {
   box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.12);
}
.btn-pill,
.lp-dl-toggle,
.btn-square {
   transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
               box-shadow 0.25s ease,
               background-color 0.25s ease,
               border-color 0.25s ease;
}
.btn-pill:hover,
.lp-dl-toggle:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.btn-pill:active,
.lp-dl-toggle:active {
   transform: translateY(0) scale(0.98);
}
.badge-glow,
.btn-shine {
   position: relative;
   isolation: isolate;
}
.badge-glow::after,
.btn-shine::after {
   content: "";
   position: absolute;
   inset: -1px;
   border-radius: inherit;
   background: conic-gradient(
      from var(--beam-angle, 0deg) at 50% 50%,
      transparent 0%,
      rgba(255, 255, 255, 0.8) 12%,
      transparent 30%
   );
   -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
   -webkit-mask-composite: xor;
   mask-composite: exclude;
   pointer-events: none;
   animation: rotateBeam 4.5s linear infinite;
   z-index: 1;
}
@property --beam-angle {
   syntax: '<angle>';
   initial-value: 0deg;
   inherits: false;
}
@keyframes rotateBeam {
   to {
      --beam-angle: 360deg;
   }
}
.reveal {
   opacity: 0;
   transform: translateY(18px) scale(0.99);
   transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
               transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
   will-change: opacity, transform;
}
.reveal.in {
   opacity: 1;
   transform: translateY(0) scale(1);
   transition-delay: calc(var(--stagger-index, 0) * 75ms);
}
.reveal-up {
   opacity: 0;
   transform: translateY(24px);
   transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
               transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.in {
   opacity: 1;
   transform: translateY(0);
   transition-delay: calc(var(--stagger-index, 0) * 75ms);
}
.reveal-scale {
   opacity: 0;
   transform: scale(0.95);
   transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
               transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.in {
   opacity: 1;
   transform: scale(1);
   transition-delay: calc(var(--stagger-index, 0) * 75ms);
}
.hero-visual {
   transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-carousel {
   transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
               box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-carousel:hover {
   transform: translateY(-4px);
   box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.15);
}
.hero-backdrop {
   animation: gridPulse 14s ease-in-out infinite alternate;
   will-change: transform, opacity;
}
@keyframes gridPulse {
   0% {
      opacity: 0.85;
      transform: scale(1);
   }
   100% {
      opacity: 1;
      transform: scale(1.03);
   }
}
.faq-item {
   transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item:hover {
   transform: translateY(-2px);
}
.faq-item summary .icon {
   transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item[open] summary .icon {
   transform: rotate(180deg);
}
.preview-img {
   transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
               transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.preview-img:not(.is-active) {
   opacity: 0;
   transform: scale(0.97);
   pointer-events: none;
}
.preview-img.is-active {
   opacity: 1;
   transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
   .reveal,
   .reveal-up,
   .reveal-scale {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
   }
   .nav-progress-bar {
      display: none;
   }
   .badge-glow::after,
   .btn-shine::after {
      animation: none;
   }
   .hero-visual,
   .hero-carousel,
   .btn-pill,
   .lp-dl-toggle {
      transform: none !important;
      transition: none !important;
   }
   .hero-backdrop {
      animation: none;
   }
}
