:root {
  --bg: #0e0e0e;
  --bg-2: #161616;
  --ink: #ffffff;
  --ink-dim: #b3b3b3;
  --ink-mute: #6b6b6b;
  --magenta: #ffffff;
  --magenta-2: #d4d4d4;
  --magenta-soft: #525252;
  --silver-1: #ffffff;
  --silver-2: #d4d4d4;
  --silver-3: #737373;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --display: "Onest", system-ui, sans-serif;
  --body: "Onest", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  
  --figma-blue: #ffffff;
  --figma-blue-dim: rgba(255, 255, 255, 0.28);
  --figma-canvas: #1e1e1e;
  --figma-ui: #2c2c2c;
  --figma-ui-2: #383838;
  --figma-handle: #ffffff;
  --figma-cursor: url("assets/figma-cursor-outline.svg") 5 4, default;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: #fff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  cursor: default;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }


::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--figma-ui); }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
  border: 2px solid var(--figma-ui);
}
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.38); }


::selection { background: rgba(255, 255, 255, 0.22); color: #fff; }
::-moz-selection { background: rgba(255, 255, 255, 0.22); color: #fff; }


:focus-visible { outline: 2px solid rgba(255, 255, 255, 0.65); outline-offset: 4px; border-radius: 4px; }
button:focus-visible, a:focus-visible { outline-offset: 6px; }


.bg-grid-scoped {
  position: absolute; inset: -4%;
  z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 8px 8px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 20%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 20%, transparent 85%);
  animation: bg-grid-scroll 12s linear infinite;
  overflow: hidden;
}
@keyframes bg-grid-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(0, 8px, 0); }
}


.intro-cover {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 240; pointer-events: none;
  animation: intro-cover-fade 1.35s cubic-bezier(.42,0,.18,1) forwards;
  will-change: opacity;
}
@keyframes intro-cover-fade {
  0%, 55% { opacity: 1; }
  100%    { opacity: 0; }
}


.intro-bloom {
  position: fixed; left: 50%; top: 50%;
  width: 90px; height: 90px; border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(120,120,120,0.35) 38%, rgba(14,14,14,0.95) 70%, transparent 100%);
  z-index: 250; pointer-events: none;
  animation: intro-bloom 1.05s cubic-bezier(.42,0,.18,1) forwards;
  will-change: transform, opacity;
}
@keyframes intro-bloom {
  0%   { transform: translate(-50%,-50%) scale(0);  opacity: .95; }
  22%  { opacity: 1; }
  65%  { transform: translate(-50%,-50%) scale(22); opacity: .85; }
  100% { transform: translate(-50%,-50%) scale(34); opacity: 0; }
}


.bg-scene {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  background: var(--figma-canvas);
}
.bg-scene::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.35; mix-blend-mode: overlay; pointer-events: none; z-index: 2;
}


.shader-scene {
  position: absolute; inset: 0; overflow: hidden;
}
.so {
  position: absolute; top: 0; left: 0; border-radius: 50%;
  mix-blend-mode: screen; pointer-events: none;
  will-change: transform;
}
.so-1 { width: 900px; height: 900px; background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 65%); filter: blur(50px); }
.so-2 { width: 650px; height: 650px; background: radial-gradient(circle, rgba(200,200,200,0.10), transparent 65%); filter: blur(44px); }
.so-3 { width: 1100px; height: 1100px; background: radial-gradient(circle, rgba(160,160,160,0.08), transparent 65%); filter: blur(55px); }
.so-4 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 65%); filter: blur(38px); }
.so-5 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(180,180,180,0.09), transparent 65%); filter: blur(46px); }

.particle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}
.particle-field span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 0 12px rgba(255,255,255,0.35), 0 0 22px rgba(255,255,255,0.18);
  opacity: 0.3;
  animation: particle-drift 9s ease-in-out infinite;
  animation-delay: var(--delay);
}
.particle-field span:nth-child(3n) { background: var(--silver-2); opacity: 0.35; }
.particle-field span:nth-child(4n) { opacity: 0.18; filter: blur(1px); }
@keyframes particle-drift {
  0%,100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.18; }
  35% { opacity: 0.62; }
  50% { transform: translate3d(var(--drift), calc(var(--drift) * -1), 0) scale(1.6); opacity: 0.38; }
}

.shader-ripple {
  position: fixed; pointer-events: none; z-index: 9999;
  border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.4);
  width: 320px; height: 320px;
  transform: translate(-50%,-50%) scale(0);
  animation: rippleout 1.6s ease-out forwards;
}
@keyframes rippleout {
  0%   { transform: translate(-50%,-50%) scale(0);   opacity: 0.75; }
  70%  { opacity: 0.15; }
  100% { transform: translate(-50%,-50%) scale(1);   opacity: 0; }
}


.hero-mb-wrap {
  position: relative; margin-top: 0; perspective: 1800px;
  max-width: 820px; margin-left: auto; margin-right: auto;
  overflow: visible;
}

.hero-home .hero-mb-wrap,
.hero-home-mac-zone .hero-mb-wrap {
  margin-top: 0;
  overflow: visible;
  padding-left: 44px;
  padding-right: 44px;
  box-sizing: border-box;
  max-width: 100%;
}

.hero-home .hero-mb-wrap {
  margin-top: 0 !important;
}
.hero-mb-dots {
  display: flex; justify-content: center; gap: 10px; margin-top: 28px;
}
.hero-mb-dot {
  width: 7px; height: 7px; border-radius: 50%; padding: 0;
  background: rgba(255,255,255,0.22); border: none; cursor: pointer;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.hero-mb-dot.active {
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
  transform: scale(1.35);
}


.glass {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-radius: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.48),
    inset 0 -1px 0 rgba(0,0,0,0.30),
    inset 1px 0 0 rgba(255,255,255,0.18),
    inset -1px 0 0 rgba(0,0,0,0.18),
    0 30px 80px rgba(0,0,0,0.40),
    0 10px 24px rgba(0,0,0,0.25);
  isolation: isolate;
}
.glass::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.70) 0%,
    rgba(255,255,255,0.10) 30%,
    rgba(255,255,255,0.03) 58%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0.55) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.glass::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 80% 40% at 28% -8%, rgba(255,255,255,0.30) 0%, transparent 55%),
    radial-gradient(ellipse 50% 25% at 100% 105%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
}


.glass .sheen { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; overflow: hidden; z-index: 2; opacity: 0; transition: opacity .4s; }
.glass:hover .sheen { opacity: 1; }
.glass .sheen::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 60%; left: -80%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.18) 45%, rgba(255,255,255,0.32) 50%, rgba(255,255,255,0.18) 55%, transparent 100%);
  filter: blur(2px); transform: skewX(-18deg);
}
.glass:hover .sheen::after { animation: sheen 2.6s ease-in-out infinite; }
@keyframes sheen { 0% { left: -80%; } 60%,100% { left: 140%; } }
.glass:hover { box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(0,0,0,0.35),
    inset 1px 0 0 rgba(255,255,255,0.22),
    inset -1px 0 0 rgba(0,0,0,0.20),
    0 36px 100px rgba(0,0,0,0.55),
    0 14px 32px rgba(255,255,255,0.22); }



.glass > * { position: relative; z-index: 3; }


.macbook-section { position: relative; padding-top: 120px; }
.kana-side {
  position: absolute; right: -12px; top: 80px;
  writing-mode: vertical-rl; font-family: "Noto Sans JP", var(--display);
  font-weight: 900; font-size: 14px; letter-spacing: 0.6em;
  color: rgba(255,255,255,0.06); pointer-events: none; user-select: none;
  text-orientation: mixed;
}
.mb-stage { position: relative; margin-top: 56px; perspective: 1800px; }
.mb-glow {
  position: absolute; left: 50%; top: 40%; width: 80%; height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,255,255,0.45), transparent 65%);
  filter: blur(40px); pointer-events: none;
  animation: mbglow 6s ease-in-out infinite;
}
@keyframes mbglow { 0%,100% { opacity: .6; transform: translate(-50%,-50%) scale(.95); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.05); } }

.mb-float {
  position: relative; width: min(960px, 92%); margin: 0 auto;
  transform-style: preserve-3d;
  animation: mbfloat 7s ease-in-out infinite;
}
@keyframes mbfloat {
  0%,100% { transform: translateY(0) rotateX(8deg) rotateY(-2deg); }
  50%     { transform: translateY(-14px) rotateX(6deg) rotateY(2deg); }
}
.mb-screen-ring {
  position: relative; padding: 14px 14px 22px;
  background: linear-gradient(180deg, #1a1a1f 0%, #0d0d12 100%);
  border-radius: 22px 22px 8px 8px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.6),
    0 30px 80px rgba(0,0,0,0.55),
    0 8px 20px rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.07);
}
.mb-camera {
  position: absolute; left: 50%; top: 6px; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle, #2a2a30, #050507);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 2px rgba(255,255,255,0.4);
}
.mb-screen {
  position: relative; aspect-ratio: 16/10; border-radius: 6px; overflow: hidden;
  background: linear-gradient(135deg, #06060a, #0d0710);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.mb-screen image-slot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  --is-bg: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(0,0,0,0.5));
  --is-border: 1px dashed rgba(255,255,255,0.18);
  --is-radius: 6px;
  --is-text-color: rgba(255,255,255,0.55);
  --is-text-font: var(--display);
}
.mb-scanline {
  position: absolute; inset: 0; pointer-events: none; z-index: 5;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 4px);
  mix-blend-mode: overlay;
}
.mb-screen::after {
  content: ""; position: absolute; left: -40%; top: 0; bottom: 0; width: 30%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.10) 50%, transparent);
  filter: blur(4px); transform: skewX(-20deg);
  animation: mbscreen-shine 5s ease-in-out infinite;
  pointer-events: none; z-index: 6;
}
@keyframes mbscreen-shine { 0%,90% { left: -40%; } 100% { left: 130%; } }
.mb-base {
  position: relative; height: 18px; width: 108%; margin-left: -4%;
  background: linear-gradient(180deg, #2a2a30 0%, #15151a 50%, #08080c 100%);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
}
.mb-notch {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 18%; height: 6px; border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #050507, #15151a);
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.6);
}
.mb-shadow {
  position: absolute; left: 8%; right: 8%; bottom: -42px; height: 60px;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,255,255,0.35), transparent 70%);
  filter: blur(22px); z-index: -1;
  animation: mbshadow 7s ease-in-out infinite;
}
@keyframes mbshadow { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.08); opacity: 1; } }

.mb-cards { position: absolute; inset: 0; pointer-events: none; }
.mb-tag {
  position: absolute; display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px; font-family: var(--display);
  font-weight: 500; font-size: 13px; letter-spacing: -0.005em;
  color: var(--ink-dim);
  animation: tagfloat 6s ease-in-out infinite;
}
.mb-tag-a { left: 4%; top: 14%; animation-delay: -1s; }
.mb-tag-b { right: 6%; top: 28%; animation-delay: -3s; }
.mb-tag-c { left: 8%; bottom: 8%; animation-delay: -2s; }
@keyframes tagfloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

@media (max-width: 760px) {
  .mb-tag { display: none; }
  .kana-side { display: none; }
}

.fan-section { position: relative; padding-top: 96px; padding-bottom: 96px; overflow: hidden; }
.fan-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 220px;
  width: min(1160px, 96vw);
  height: 520px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 50% 25%, rgba(255,255,255,0.18), transparent 58%),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.045), transparent);
  filter: blur(2px);
  pointer-events: none;
}
.fan-stage {
  position: relative; margin-top: 38px; height: 520px;
  perspective: 1700px; perspective-origin: 50% 42%;
}
.fan-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(1120px, 92vw);
  height: 280px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.18), rgba(255,255,255,0.12), rgba(255,255,255,0.18), transparent);
  filter: blur(28px);
  opacity: 0.42;
  animation: fan-energy 2.4s ease-in-out infinite;
  pointer-events: none;
}
.fan-stage.inspecting .fan-track { opacity: 1; transform: none; filter: none; }
.fan-track {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: opacity .35s ease, transform .45s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}
.fan-track::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 44px;
  width: min(920px, 86vw);
  height: 92px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.24), rgba(0,0,0,0) 70%);
  filter: blur(24px);
  pointer-events: none;
}
.fan-card {
  position: absolute; top: 0; left: 50%;
  width: min(820px, 72vw); height: min(462px, 40.5vw);
  transform-origin: center center;
  cursor: zoom-in;
  border: 0;
  padding: 0;
  background: transparent;
  transition: transform 0.42s cubic-bezier(.16,.8,.2,1), opacity 0.42s ease, filter 0.42s ease;
  border-radius: 14px; overflow: hidden;
}
.fan-card:hover,
.fan-card:focus-visible {
  filter: brightness(1.02) saturate(1.04) !important;
}
.fan-card:focus-visible {
  outline: 2px solid rgba(255,255,255,0.75);
  outline-offset: 7px;
}
.fan-card img {
  width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none;
}
.fan-card-inner {
  position: relative; width: 100%; height: 100%;
  border-radius: 14px; overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.55),
    0 4px 18px rgba(255,255,255,0.18);
}
.fan-card-inner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.fan-card-ring {
  position: absolute; inset: 0; border-radius: 14px;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.12);
  pointer-events: none; z-index: 2;
}
.fan-card.active .fan-card-ring {
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.72),
    inset 0 0 34px rgba(255,255,255,0.16),
    0 0 34px rgba(255,255,255,0.24);
}
.fan-card.active {
  cursor: zoom-in;
  animation: active-card-pulse 1.8s ease-in-out infinite;
}
.fan-card-label {
  position: absolute; bottom: 10px; left: 14px; right: 14px; z-index: 3;
  font-family: var(--display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 7px;
  opacity: 0; transition: opacity 0.3s;
}
.fan-card.active .fan-card-label { opacity: 1; }
.fan-card-inner::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 2;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.28), transparent 58%);
  transform: translateX(-55%);
  animation: card-shine 2.2s ease-in-out infinite;
  pointer-events: none;
}
.showroom-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(3,3,6,0.88);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  animation: lightbox-fade .24s cubic-bezier(.16,.84,.44,1) both;
  cursor: zoom-out;
}
.showroom-lightbox-panel {
  position: relative;
  width: min(1500px, 94vw);
  max-height: 88vh;
  display: grid;
  gap: 16px;
  cursor: default;
  animation: lightbox-pop .42s cubic-bezier(.16,.84,.44,1) both;
}
@keyframes lightbox-pop {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.showroom-lightbox-panel img {
  width: 100%;
  max-height: calc(88vh - 76px);
  object-fit: contain;
  border-radius: 16px;
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 34px 120px rgba(0,0,0,0.78),
    0 0 90px rgba(255,255,255,0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.showroom-lightbox-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(5,5,8,0.75);
  border: 1px solid rgba(255,255,255,0.16);
  color: white;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .22s, background .22s, border-color .22s;
}
.showroom-lightbox-close:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
}
.showroom-lightbox-meta {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.showroom-lightbox-meta span { color: var(--magenta); }
@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fan-card-label::after {
  content: "Cliquer pour agrandir";
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}
@keyframes fan-energy {
  0%,100% { transform: translate(-50%, -50%) scaleX(.86); opacity: .22; }
  50% { transform: translate(-50%, -50%) scaleX(1.08); opacity: .52; }
}
@keyframes active-card-pulse {
  0%,100% { box-shadow: 0 0 0 rgba(255,255,255,0); }
  50% { box-shadow: 0 0 42px rgba(255,255,255,0.22); }
}
@keyframes card-shine {
  0%, 38% { transform: translateX(-70%) rotate(8deg); opacity: 0; }
  52% { opacity: .75; }
  78%, 100% { transform: translateX(70%) rotate(8deg); opacity: 0; }
}
.fan-dots {
  display: flex; justify-content: center; gap: 10px; margin-top: 18px;
}
.fan-dot {
  width: 7px; height: 7px; border-radius: 50%; padding: 0;
  background: rgba(255,255,255,0.22); border: none; cursor: pointer;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.fan-dot.active {
  background: var(--magenta);
  box-shadow: 0 0 12px rgba(255,255,255,0.7);
  transform: scale(1.35);
}
.fan-info {
  text-align: center; margin-top: -22px;
  font-family: var(--display); font-size: 13px; font-weight: 500;
  color: var(--ink-dim); letter-spacing: 0.04em;
  min-height: 22px;
}
.fan-info .fan-count {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  margin-right: 22px;
  padding: 7px 14px;
  border-radius: 0;
  border: none;
  background: none;
}
.fan-info .fan-count::before, .fan-info .fan-count::after {
  content: ""; position: absolute;
  width: 9px; height: 9px;
}
.fan-info .fan-count::before {
  top: 0; left: 0;
  border-top: 1.5px solid rgba(255,255,255,0.85);
  border-left: 1.5px solid rgba(255,255,255,0.85);
}
.fan-info .fan-count::after {
  bottom: 0; right: 0;
  border-bottom: 1.5px solid rgba(255,255,255,0.85);
  border-right: 1.5px solid rgba(255,255,255,0.85);
}
.fan-info .fan-info-tag {
  color: var(--magenta); font-weight: 700; margin-right: 8px;
}
.fan-strip {
  width: min(720px, 90vw);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.fan-thumb {
  position: relative;
  height: 58px;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  opacity: 0.62;
  cursor: zoom-in;
  transition: opacity .25s, transform .25s, border-color .25s, box-shadow .25s;
}
.fan-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) brightness(.8);
  transition: filter .25s, transform .35s;
}
.fan-thumb span {
  position: absolute;
  left: 8px;
  bottom: 6px;
  z-index: 2;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.fan-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
  pointer-events: none;
}
.fan-thumb:hover,
.fan-thumb:focus-visible,
.fan-thumb.active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.58);
  box-shadow: 0 12px 30px rgba(255,255,255,0.18);
}
.fan-thumb:hover img,
.fan-thumb:focus-visible img,
.fan-thumb.active img {
  filter: saturate(1.1) brightness(1);
  transform: scale(1.05);
}
.fan-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.fan-nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .25s, color .25s, box-shadow .25s;
}
.fan-nav:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(255,255,255,0.22);
}
.fan-count {
  min-width: 76px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.22em;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 760px) {
  .fan-section { padding-top: 76px; padding-bottom: 76px; }
  .fan-section::before { top: 210px; height: 300px; }
  .fan-stage { height: 320px; margin-top: 34px; perspective: 900px; }
  .fan-stage.inspecting .fan-track { opacity: 1; transform: none; filter: none; }
  .showroom-lightbox { padding: 14px; }
  .showroom-lightbox-panel { width: 96vw; }
  .showroom-lightbox-meta {
    border-radius: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
  .fan-track::after { bottom: 44px; width: 78vw; height: 54px; }
  .fan-card { width: min(300px, 78vw); height: min(169px, 44vw); }
  .fan-card-label {
    bottom: 8px;
    left: 10px;
    right: 10px;
    font-size: 9px;
    gap: 5px;
  }
  .fan-info {
    margin-top: -34px;
    font-size: 11px;
    line-height: 1.5;
    padding: 0 24px;
  }
  .fan-info .fan-info-tag {
    display: block;
    margin-right: 0;
    margin-bottom: 2px;
  }
  .fan-strip {
    width: min(340px, 92vw);
    gap: 6px;
    margin-top: 16px;
  }
  .fan-thumb {
    height: 42px;
    border-radius: 8px;
  }
}


.pro-cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none; z-index: 1000;
  mix-blend-mode: difference;
  will-change: transform;
}
.pro-cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.32);
  border-radius: 50%;
  pointer-events: none; z-index: 999;
  transition: width .25s cubic-bezier(.2,.8,.2,1),
              height .25s cubic-bezier(.2,.8,.2,1),
              border-color .25s,
              background .25s;
  will-change: transform;
}
.pro-cursor-ring.on {
  width: 48px; height: 48px;
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
}
@media (max-width: 760px) {
  .pro-cursor-dot, .pro-cursor-ring { display: none; }
}


.scope-legacy-dead {
  position: fixed; left: 0; top: 0; pointer-events: none; z-index: 1000;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  transition: width 0.35s cubic-bezier(.2,.8,.2,1), height 0.35s cubic-bezier(.2,.8,.2,1);
  mix-blend-mode: difference;
}
.scope.locked { width: 88px; height: 88px; mix-blend-mode: normal; }
.scope-glow {
  position: fixed; left: 0; top: 0; pointer-events: none; z-index: 999;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.20), rgba(255,255,255,0) 60%);
  transform: translate(-50%, -50%);
  filter: blur(8px);
}
.scope-line {
  position: fixed; pointer-events: none; z-index: 998;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), rgba(255,255,255,0.55), rgba(255,255,255,0.25), transparent);
  opacity: 0; transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}
.scope-line.active { opacity: 1; }
.scope-line.h { left: 0; right: 0; height: 1px; }
.scope-line.v { top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.25), rgba(255,255,255,0.55), rgba(255,255,255,0.25), transparent); }


.shell {
  position: relative; z-index: 2;
  animation: site-reveal .95s cubic-bezier(.16,.84,.44,1) 1.05s both;
}
@keyframes site-reveal {
  0%  { opacity: 0; transform: translateY(36px) scale(.97); }
  60% { opacity: .9; transform: translateY(6px) scale(.998); }
  100%{ opacity: 1; transform: translateY(0) scale(1); }
}
.container { width: min(1280px, 92vw); margin: 0 auto; }


.nav-wrap {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: center; pointer-events: none;
}
.nav-wrap {
  animation: nav-drop-in .9s cubic-bezier(.2,.8,.2,1) .18s both;
}
.nav {
  pointer-events: auto;
  display: flex; align-items: center; gap: 4px;
  padding: 7px 7px 7px 18px;
  border-radius: 999px;
  overflow: hidden;
}
.nav::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255,255,255,.16) 48%, transparent 62%);
  transform: translateX(-130%);
  pointer-events: none;
}
.nav::after {
  animation: nav-sheen 1.4s ease .85s both;
}
.nav .brand { display: flex; align-items: center; gap: 10px; padding-right: 16px; border-right: 1px solid var(--line); position: relative; }
.brand-mark {
  width: 26px; height: 26px; object-fit: contain; display: block;
  filter: none;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.nav .brand:hover .brand-mark { transform: rotate(45deg) scale(1.05); filter: none; }
.brand-word { font-family: var(--display); font-weight: 800; font-size: 14px; letter-spacing: -0.02em; color: var(--ink); display: inline-flex; align-items: baseline; gap: 4px; }
.brand-word-soft { font-weight: 400; color: var(--ink-mute); letter-spacing: -0.005em; }
.nav-link {
  font-size: 13px; padding: 9px 14px; border-radius: 999px;
  color: var(--ink-dim); transition: color .25s, background .25s;
  font-weight: 500;
}
.nav-link:hover { color: var(--ink); background: rgba(255,255,255,0.06); }
.nav-cta {
  margin-left: 4px; padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.005em;
  background: linear-gradient(180deg, #d4d4d4, #1a1a1a 80%);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(0,0,0,0.25),
    0 8px 22px rgba(255,255,255,0.4);
  transition: transform .25s, box-shadow .25s;
}
.nav-cta:hover { transform: translateY(-1px); }
@keyframes nav-drop-in {
  from { opacity: 0; transform: translateY(-14px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes nav-sheen {
  to { transform: translateX(130%); }
}

.sfx-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sfx-toggle.muted {
  color: var(--ink-mute);
  opacity: 0.72;
}
.sfx-bars {
  display: inline-flex;
  align-items: end;
  gap: 3px;
  height: 14px;
}
.sfx-bars i {
  width: 3px;
  border-radius: 2px;
  background: var(--magenta);
  box-shadow: 0 0 10px rgba(255,255,255,0.7);
  animation: sfx-meter .72s ease-in-out infinite alternate;
}
.sfx-bars i:nth-child(1) { height: 7px; animation-delay: -.18s; }
.sfx-bars i:nth-child(2) { height: 12px; animation-delay: -.34s; }
.sfx-bars i:nth-child(3) { height: 9px; }
.sfx-toggle.muted .sfx-bars i {
  background: rgba(255,255,255,0.28);
  box-shadow: none;
  animation: none;
}
@keyframes sfx-meter {
  from { transform: scaleY(.45); opacity: .55; }
  to { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 760px) {
  .nav-wrap {
    top: 10px;
    left: 0;
    right: 0;
    padding: 0 10px;
  }

  .nav {
    width: 100%;
    max-width: 430px;
    justify-content: space-between;
    padding: 7px;
    gap: 6px;
  }

  .nav .brand {
    min-width: 0;
    flex: 1;
    padding: 0 10px 0 6px;
  }

  .brand-word {
    font-size: 13px;
  }

  .nav-link {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
    padding: 10px 13px;
    white-space: nowrap;
  }
}


.hero-floats {
  position: absolute; inset: 0; pointer-events: none; z-index: 4;
}

.hf {
  position: absolute;
  padding: 14px 16px;
  border-radius: 18px;
  min-width: 170px;
  max-width: 220px;
  pointer-events: none;
}

.hf-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-dim);
  pointer-events: none;
}


.hf-tl { top: 22%; left: 6%;  animation: hfloat1 6s ease-in-out infinite; }
.hf-tr { top: 18%; right: 5%; animation: hfloat2 7s ease-in-out infinite; }
.hf-ml { top: 48%; left: 4%;  animation: hfloat3 5.5s ease-in-out infinite; }
.hf-mr { top: 44%; right: 4%; animation: hfloat1 8s ease-in-out -1s infinite; }
.hf-bl { bottom: 22%; left: 7%; animation: hfloat2 6.5s ease-in-out -2s infinite; }
.hf-br { bottom: 20%; right: 6%; animation: hfloat3 7s ease-in-out -3s infinite; }

@keyframes hfloat1 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-12px) rotate(1deg)} }
@keyframes hfloat2 { 0%,100%{transform:translateY(0) rotate(1deg)}  50%{transform:translateY(-10px) rotate(-1deg)} }
@keyframes hfloat3 { 0%,100%{transform:translateY(0)}               50%{transform:translateY(-8px)} }

.hf-pill {
  font-family: var(--display); font-size: 10px; font-weight: 500;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(0,0,0,0.4); border: 1px solid var(--line-strong);
  color: var(--ink-dim); letter-spacing: -0.005em;
  backdrop-filter: blur(8px);
}
.hf-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.hf-name { font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.04em; line-height: 1; }
.hf-sub  { font-family: var(--display); font-size: 11px; color: var(--ink-mute); margin-top: 3px; }
.hf-check { font-size: 12px; font-weight: 700; color: #e5e5e5; }
.hf-live  { display: flex; align-items: center; }
.hf-stars { font-size: 14px; color: #a3a3a3; letter-spacing: 2px; margin-bottom: 6px; }
.hf-quote { font-size: 12px; color: var(--ink-dim); line-height: 1.4; font-style: italic; margin-bottom: 10px; }
.hf-who   { display: flex; align-items: center; gap: 8px; }
.hf-av    { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, #fff, #525252);
  font-family: var(--display); font-weight: 800; font-size: 11px; display: grid; place-items: center; flex-shrink: 0; }

@media (max-width: 900px) { .hero-floats, .figma-hero-layer { display: none; } }



.figma-sel {
  position: relative;
  display: inline-block;
  pointer-events: none;
}
.figma-sel-frame {
  position: relative;
  width: var(--fs-w, auto);
  height: var(--fs-h, auto);
  min-width: 48px;
  min-height: 32px;
  border: 1.5px solid var(--figma-blue);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.figma-sel-frame:not(:has(*)) {
  background: rgba(255, 255, 255, 0.03);
}
.figma-sel-handle {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--figma-handle);
  border: 1.5px solid var(--figma-blue);
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}
.figma-sel-tl { top: -4px; left: -4px; }
.figma-sel-tr { top: -4px; right: -4px; }
.figma-sel-bl { bottom: -4px; left: -4px; }
.figma-sel-br { bottom: -4px; right: -4px; }
.figma-sel-dim {
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  padding: 3px 8px;
  border-radius: 4px;
  background: #ffffff;
  color: #0e0e0e;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.2;
}
.figma-sel-label-only .figma-sel-frame {
  border-style: dashed;
  opacity: 0.55;
}

.figma-sel-inner {
  display: block;
  padding: 10px 12px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-dim);
  letter-spacing: -0.01em;
}
.figma-sel-inner strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}


.hero-title-figma {
  display: flex;
  justify-content: center;
  margin: 26px 0 22px;
}
.hero-title-figma .figma-sel-frame {
  width: auto;
  height: auto;
  padding: 8px 14px 12px;
}
.hero-title-figma .hero-title {
  margin: 0;
  text-align: center;
}


.figma-hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}
.figma-hero-a { top: 20%; left: 5%; }
.figma-hero-b { top: 16%; right: 4%; }
.figma-hero-c { top: 42%; left: 3%; }
.figma-hero-d { top: 38%; right: 3%; }
.figma-hero-e { bottom: 28%; left: 8%; }
.figma-hero-f { bottom: 24%; right: 7%; }


.figma-cursor-deco {
  position: absolute;
  width: 28px;
  height: 28px;
  background-image: url("assets/figma-cursor-peer.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}
.figma-cursor-deco-1 { top: 22%; left: 18%; }
.figma-cursor-deco-2 { top: 48%; right: 14%; opacity: 0.85; }
.figma-cursor-deco-3 { bottom: 38%; left: 12%; opacity: 0.75; }
.figma-cursor-deco-4 { top: 32%; left: 42%; opacity: 0.55; }
.figma-cursor-deco-5 { bottom: 22%; right: 28%; opacity: 0.65; }


.figma-cursor-follow {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: -2px 0 0 -2px;
  z-index: 9998;
  pointer-events: none;
  background-image: url("assets/figma-cursor-peer.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  will-change: transform;
}


.show-fsc-big .fsc-browser {
  outline: 1.5px solid var(--figma-blue);
  outline-offset: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.show-fsc-big::after {
  content: "842 × 640";
  position: absolute;
  top: 28px;
  left: 36px;
  padding: 3px 8px;
  border-radius: 4px;
  background: #fff;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  color: #0e0e0e;
  letter-spacing: 0.04em;
  z-index: 8;
  pointer-events: none;
}


.hero-mb-wrap::before {
  content: "";
  position: absolute;
  inset: -12px -20px;
  border: 1.5px dashed var(--figma-blue-dim);
  border-radius: 18px;
  pointer-events: none;
  z-index: 0;
}

html.is-chromium .figma-cursor-follow {
  display: none !important;
}


.section-has-figma { position: relative; overflow: hidden; }
.section-figma-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.section-head-figma {
  display: flex;
  justify-content: flex-start;
  margin: 14px 0 18px;
}
.section-head-figma .figma-sel-frame {
  width: auto;
  height: auto;
  padding: 6px 12px 10px;
}
.section-head-figma .section-title,
.section-head-figma .cta-final-title {
  margin: 0;
}
.proc-figma-wrap,
.test-figma-wrap,
.price-figma-wrap,
.stats-figma-wrap,
.fan-stage-figma {
  display: block;
  width: 100%;
}
.proc-figma-wrap .figma-sel-frame,
.test-figma-wrap .figma-sel-frame,
.price-figma-wrap .figma-sel-frame,
.stats-figma-wrap .figma-sel-frame,
.fan-stage-figma .figma-sel-frame {
  width: 100% !important;
  height: 100% !important;
  min-height: 100%;
}
.proc-figma-wrap .proc-step,
.test-figma-wrap .test,
.price-figma-wrap .price-card,
.stats-figma-wrap .stats {
  width: 100%;
  height: 100%;
}
.fan-stage-figma { margin-top: 8px; }
.fan-stage-figma .figma-sel-dim { bottom: -28px; }
.price-figma-pop .figma-sel-dim { display: block; }
.price-figma-wrap:not(.price-figma-pop) .figma-sel-dim { display: none; }
.test-figma-wrap .figma-sel-dim { display: none; }
.test-figma-wrap:first-child .figma-sel-dim,
.tests > .reveal:first-child .test-figma-wrap .figma-sel-dim { display: block; }


.figma-svc-a { top: 18%; right: 4%; }
.figma-svc-b { bottom: 12%; left: 3%; }
.figma-sh-a { top: 22%; right: 2%; }
.figma-sh-b { bottom: 18%; left: 4%; }
.figma-pr-a { top: 8%; right: 6%; }
.figma-pc-a { top: 28%; right: 8%; pointer-events: none; opacity: 0.85; }
.figma-ts-a { top: 14%; left: 2%; }
.figma-fan-a { top: 42%; left: 0; }
.figma-mq-a { top: 28%; left: 8%; }
.figma-mq-b { bottom: 22%; right: 6%; }
.figma-cta-a { top: 22%; left: 4%; }
.figma-cta-b { bottom: 20%; right: 5%; }

@media (max-width: 900px) {
  .section-figma-layer .figma-sel:not(.figma-hero-a):not(.figma-hero-b) { display: none; }
  .section-figma-layer { display: none; }
  .proc-figma-wrap .figma-sel-dim,
  .price-figma-wrap .figma-sel-dim,
  .fan-stage-figma .figma-sel-dim { font-size: 10px; }
}
@media (max-width: 760px) {
  .section-head-figma .figma-sel-dim { display: none; }
  .fan-stage-figma .figma-sel-frame { border: none; }
  .fan-stage-figma .figma-sel-handle,
  .fan-stage-figma .figma-sel-dim { display: none; }
}


.hero { min-height: auto; padding: 150px 0 60px; display: grid; place-items: center; position: relative; }

.hero-home {
  min-height: 100dvh;
  display: block;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 16px; border-radius: 999px;
  font-family: var(--display); font-weight: 500; font-size: 13px; letter-spacing: -0.01em;
  color: var(--ink-dim);
}
.hero-eyebrow .sep,
.figma-sep { color: var(--ink-mute); font-weight: 700; }
.hero-eyebrow .accent { color: var(--ink); font-weight: 600; }
.hero-eyebrow.glass { padding: 8px 14px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 14px rgba(255, 255, 255, 0.5); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.4); }
}


.hero-title {
  font-family: var(--display);
  font-size: clamp(58px, 10vw, 152px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 26px 0 22px;
  text-align: center;
  font-weight: 900;
  padding: 0.06em 0;
}
.hero-title .wide { font-weight: 900; }
.hero-title .cond { font-weight: 900; letter-spacing: -0.05em; }
.hero-title .it { font-weight: 300; letter-spacing: -0.025em; }

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 116px 0 48px;
  }

  .hero-title {
    font-size: clamp(44px, 15vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-top: 20px;
  }

  .hero-eyebrow {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    line-height: 1.35;
  }

  .hero-sub {
    font-size: 15px;
    max-width: 34rem;
  }

  .hero-mb-wrap {
    margin-top: 42px;
  }
}


.chrome {
  background: linear-gradient(180deg,
    #ffffff 0%,
    #fafafd 38%,
    #c4c4cc 50%,
    #f3f3f6 62%,
    #ffffff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.magenta-fill {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  filter: drop-shadow(0 2px 18px rgba(255,255,255,0.22));
}

.outline {
  background:
    linear-gradient(180deg, #ffffff 0%, #c8c8c8 28%, #ffffff 52%, #8a8a8a 72%, #f0f0f0 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 14px rgba(255,255,255,0.28))
    drop-shadow(0 6px 20px rgba(0,0,0,0.45));
}
.outline::after { content: none; }
.it { font-weight: 300; letter-spacing: -0.005em; }
.serif-it { font-weight: 300; letter-spacing: -0.005em; }

.hero-sub {
  text-align: center;
  max-width: 600px; margin: 0 auto;
  font-size: 17px; line-height: 1.55; color: var(--ink-dim);
  font-weight: 400; letter-spacing: -0.005em;
}
.hero-sub .em { font-weight: 600; color: var(--ink); }

.hero-actions { display: flex; gap: 12px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.005em; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  border: none;
  font-family: var(--body);
}
.btn-primary {
  background: linear-gradient(180deg, #ffffff 0%, #e8e8e8 100%);
  color: #0e0e0e;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 12px 32px rgba(0,0,0,0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(0,0,0,0.15),
    0 16px 40px rgba(0,0,0,0.55); }
.btn-ghost.glass { padding: 14px 22px; color: var(--ink); }
.btn-ghost.glass:hover { transform: translateY(-2px); }

.hero-stage {
  position: relative; width: 100%; max-width: 1180px; margin: 70px auto 0;
  aspect-ratio: 16 / 7; min-height: 380px;
}
.hud-card { position: absolute; padding: 20px; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.hud-a { left: 4%; top: 10%; width: 320px; animation: floaty 7s ease-in-out infinite; }
.hud-b { right: 4%; top: 4%; width: 360px; animation: floaty 9s ease-in-out -2s infinite; }
.hud-c { left: 50%; bottom: 0; width: 540px; padding: 22px; animation: floatyC 11s ease-in-out -4s infinite; transform: translateX(-50%); }
.hud-d { left: 8%; bottom: 8%; width: 240px; padding: 16px; animation: floaty 8s ease-in-out -6s infinite; }
.hud-e { right: 6%; bottom: 14%; width: 240px; padding: 16px; animation: floaty 10s ease-in-out -3s infinite; }

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes floatyC {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-14px); }
}

.hud-label { font-family: var(--display); font-weight: 500; font-size: 12px; color: var(--ink-mute); letter-spacing: -0.01em; text-transform: none; }
.hud-val { font-family: var(--display); font-weight: 700; font-size: 32px; letter-spacing: -0.03em; margin-top: 6px; }
.hud-row { display: flex; align-items: center; justify-content: space-between; }
.hud-row + .hud-row { margin-top: 10px; }

.bar { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; position: relative; }
.bar > i { position: absolute; inset: 0; border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, #8a8a8a);
  box-shadow: 0 0 12px rgba(255,255,255,0.25);
  animation: barfill 4s ease-in-out infinite alternate;
}
@keyframes barfill { from { width: 30%; } to { width: 92%; } }

.ammo { display: flex; align-items: center; gap: 8px; }
.ammo-pip { width: 8px; height: 18px; background: rgba(255,255,255,0.14); border-radius: 3px; }
.ammo-pip.on { background: linear-gradient(180deg, #fff, #a3a3a3); box-shadow: 0 0 10px rgba(255,255,255,0.35); }

.ping-rows { display: flex; align-items: end; gap: 6px; height: 38px; }
.ping-rows i { width: 6px; background: linear-gradient(180deg, #fff, #888); border-radius: 2px; }


.section { padding: 130px 0; position: relative; contain: layout style; }
.section-tag {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.35);
}
.section-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(42px, 6.5vw, 88px); line-height: 1.02;
  letter-spacing: -0.04em; margin: 14px 0 18px;
  padding: 0.06em 0;
}
.section-title .it { font-weight: 300; letter-spacing: -0.025em; }
.section-title .cond { font-weight: 900; letter-spacing: -0.05em; }
.section-lead { color: var(--ink-dim); max-width: 580px; font-size: 16px; line-height: 1.6; letter-spacing: -0.005em; }
.section-lead .em { font-weight: 600; color: var(--ink); }


.marquee { position: relative; padding: 50px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.012), transparent);
  overflow: hidden;
}
.marquee-track { position: relative; z-index: 2; }
.marquee::before {
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 8%, transparent 92%, var(--bg) 100%);
  pointer-events: none;
}
.marquee-track { display: flex; gap: 56px; animation: marquee 38s linear infinite; width: max-content; align-items: center; }
.marquee-item { font-family: var(--display); font-weight: 800; font-size: 44px; letter-spacing: -0.045em;
  color: rgba(255,255,255,0.78); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 28px;
}
.marquee-item.it { font-weight: 300; color: var(--magenta); letter-spacing: -0.02em; font-size: 46px; }
.marquee-item .dot { width: 7px; height: 7px; background: var(--magenta); border-radius: 50%; box-shadow: 0 0 12px var(--magenta); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }


.svc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.svc-grid > .reveal { display: block; }
.svc-grid > .reveal > .svc-card-tilt { width: 100%; height: 100%; }
.svc-card-tilt { display: block; }
.svc-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 28px 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .svc-grid > .reveal { grid-column: span 12 !important; }
}

.svc-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.svc-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1;
  margin: 22px 0 14px;
  letter-spacing: -0.035em;
  max-width: 85%;
  position: relative;
  z-index: 4;
}
.svc-title .it { font-weight: 300; font-style: normal; letter-spacing: -0.025em; }
.svc-title .magenta-fill { filter: drop-shadow(0 2px 18px rgba(255,255,255,0.4)); }

.svc-desc {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.55;
  max-width: 88%;
  position: relative;
  z-index: 4;
  flex: 1;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
  position: relative;
  z-index: 4;
  max-width: 75%;
}
.svc-tag {
  font-family: var(--display); font-weight: 500;
  font-size: 11.5px; letter-spacing: -0.005em;
  padding: 5px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-dim);
  background: rgba(255,255,255,0.03);
  white-space: nowrap;
}

.svc-illu {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 150px;
  height: 150px;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}


.show-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; margin-top: 50px; }
.show-grid > .reveal,
.show-grid > .reveal > a { display: block; }
.show-grid > .reveal > .tilt,
.show-grid > .reveal > a > .tilt { width: 100%; height: 100%; }
.show-card { position: relative; overflow: hidden; width: 100%; height: 100%; }

.show-card.glass::before,
.show-card.glass::after { display: none; }
@media (max-width: 900px) {
  .show-grid > .reveal { grid-column: span 12 !important; aspect-ratio: 16 / 10 !important; }
}

@media (max-width: 560px) {
  .show-grid > .reveal {
    aspect-ratio: 1 / 1.12 !important;
  }

  .show-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .show-meta h4 {
    font-size: 20px;
  }
}

.show-meta { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 4; display: flex; align-items: end; justify-content: space-between; gap: 14px; }
.show-meta h4 { font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -0.035em; margin: 0; }
.show-meta h4 .it { font-weight: 300; letter-spacing: -0.02em; }
.show-meta p { font-family: var(--display); font-weight: 500; font-size: 12px; letter-spacing: -0.005em; color: var(--ink-dim); margin: 4px 0 0; }
.show-pill {
  position: relative;
  font-family: var(--mono); font-weight: 700; font-size: 11px;
  padding: 6px 12px 6px 14px;
  background: none; border: none; border-radius: 0;
  letter-spacing: 0.18em; color: var(--ink-dim);
  text-transform: uppercase;
  align-self: flex-end;
}
.show-pill::before, .show-pill::after {
  content: ""; position: absolute;
  width: 7px; height: 7px;
}
.show-pill::before {
  top: 0; left: 0;
  border-top: 1.5px solid rgba(255,255,255,0.25);
  border-left: 1.5px solid rgba(255,255,255,0.25);
}
.show-pill::after {
  bottom: 0; right: 0;
  border-bottom: 1.5px solid rgba(255,255,255,0.25);
  border-right: 1.5px solid rgba(255,255,255,0.25);
}
.show-pill-live {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.show-pill-live::before, .show-pill-live::after {
  border-color: rgba(255,255,255,0.85);
}
.show-pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ffffff; box-shadow: 0 0 10px rgba(255,255,255,0.95);
  animation: pulse 1.6s ease-in-out infinite;
}

.mock { position: absolute; inset: 0; padding: 18px; display: flex; flex-direction: column; gap: 10px; z-index: 4; }


.proc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 50px; }
@media (max-width: 900px) { .proc { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .proc { grid-template-columns: 1fr; } }
.proc-step { padding: 24px; min-height: 220px; }
.proc-step .num {
  font-family: var(--display); font-weight: 900; font-size: 78px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.2px rgba(255,255,255,0.32);
  letter-spacing: -0.05em;
}
.proc-step h5 {
  font-family: var(--display); font-weight: 800; font-size: 22px;
  margin: 6px 0 10px; letter-spacing: -0.035em;
}
.proc-step h5 .it { font-weight: 300; letter-spacing: -0.02em; }
.proc-step p { color: var(--ink-dim); font-size: 13px; line-height: 1.55; margin: 0; }


.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; overflow: hidden; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat { padding: 32px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
@media (max-width: 760px) { .stat:nth-child(2n) { border-right: none; } .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
.stat .v { font-family: var(--display); font-weight: 800; font-size: 64px; line-height: 1; letter-spacing: -0.05em; }
.stat .l { font-family: var(--display); font-weight: 500; font-size: 13px; letter-spacing: -0.01em; color: var(--ink-mute); margin-top: 8px; }


.tests { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 50px; }
@media (max-width: 900px) { .tests { grid-template-columns: 1fr; } }
.test { padding: 28px; }
.test .quote { font-size: 16px; line-height: 1.55; font-weight: 400; letter-spacing: -0.005em; color: var(--ink); }
.test .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.test .av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--magenta), #6a0224); border: 1px solid var(--line-strong);
  font-family: var(--display); font-weight: 800; display: grid; place-items: center; font-size: 14px; }
.test .name { font-size: 13px; }
.test .role { font-family: var(--display); font-weight: 500; font-size: 12px; letter-spacing: -0.005em; color: var(--ink-mute); }


.cta { position: relative; padding: 80px 60px; border-radius: 32px; overflow: hidden; text-align: center; }
.cta::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(255,255,255,0.32), transparent 60%);
  border-radius: inherit;
}
.cta-inner { position: relative; z-index: 3; }
.cta h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(50px, 8vw, 112px); line-height: 0.92;
  letter-spacing: -0.05em; margin: 8px 0 16px;
}
.cta h2 .it { font-weight: 300; letter-spacing: -0.025em; }
.cta p { color: var(--ink-dim); max-width: 540px; margin: 0 auto; font-size: 16px; line-height: 1.55; letter-spacing: -0.005em; }
.cta p .em { font-weight: 600; color: var(--ink); }

.final-section { padding-bottom: 70px; }
.cta-lockon {
  min-height: 520px;
  padding: 76px;
  text-align: left;
  border-radius: 28px;
  isolation: isolate;
  transform-style: preserve-3d;
}
.cta-lockon::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08), transparent 30%, rgba(255,255,255,0.08)),
    radial-gradient(circle at 72% 48%, rgba(255,255,255,0.36), transparent 28%);
  pointer-events: none;
  z-index: 0;
}
.cta-lockon:hover .cta-reticle {
  transform: translate(-50%, -50%) scale(1.08) rotate(22deg);
  opacity: 0.75;
}
.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 68% 48%, black, transparent 72%);
  opacity: 0.42;
  pointer-events: none;
}
.cta-scan {
  position: absolute;
  left: -15%;
  right: -15%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), rgba(255,255,255,0.9), transparent);
  filter: blur(0.2px);
  opacity: 0.85;
  animation: cta-scan 4.8s ease-in-out infinite;
  pointer-events: none;
}
.cta-reticle {
  position: absolute;
  left: 72%;
  top: 48%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%) rotate(0deg);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: inset 0 0 44px rgba(255,255,255,0.08), 0 0 55px rgba(255,255,255,0.14);
  opacity: 0.52;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), opacity .5s;
  animation: cta-rotate 12s linear infinite;
  pointer-events: none;
}
.cta-reticle span {
  position: absolute;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 0 14px rgba(255,255,255,0.85);
}
.cta-reticle span:nth-child(1),
.cta-reticle span:nth-child(2) { left: 50%; width: 1px; height: 72px; transform: translateX(-50%); }
.cta-reticle span:nth-child(1) { top: -18px; }
.cta-reticle span:nth-child(2) { bottom: -18px; }
.cta-reticle span:nth-child(3),
.cta-reticle span:nth-child(4) { top: 50%; width: 72px; height: 1px; transform: translateY(-50%); }
.cta-reticle span:nth-child(3) { left: -18px; }
.cta-reticle span:nth-child(4) { right: -18px; }
.cta-lockon .cta-inner {
  position: relative;
  min-height: 365px;
  padding-right: min(45%, 460px);
}
.cta-lockon .hero-eyebrow {
  margin-bottom: 18px;
}
.cta-lockon .cta-inner > div[style] {
  justify-content: flex-start !important;
}
.cta-lockon .cta-inner > h2,
.cta-lockon .cta-inner > p:not(.cta-lead) {
  display: none;
}
.cta-title {
  max-width: 740px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(52px, 7.2vw, 102px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  margin: 8px 0 18px;
}
.cta-title .it {
  font-weight: 300;
  letter-spacing: -0.03em;
}
.cta-lead {
  color: var(--ink-dim);
  max-width: 560px;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}
.cta-lockon h2 {
  max-width: 720px;
  margin-top: 12px;
}
.cta-lockon p {
  margin-left: 0;
  max-width: 560px;
}
.cta-lockon .hero-actions {
  justify-content: flex-start;
}
.cta-lockon .btn-primary {
  font-size: 0;
}
.cta-lockon .btn-primary::before {
  content: "Lancer le briefing";
  font-size: 14px;
}
.cta-console {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(380px, 38vw);
  min-height: 330px;
  transform: translateY(-50%);
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035)),
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.24), transparent 62%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 26px 80px rgba(0,0,0,0.35);
}
.console-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.68);
}
.console-scope {
  position: relative;
  height: 184px;
  display: grid;
  place-items: center;
  color: var(--magenta);
}
.console-scope .reticle { animation: spin 8s linear infinite; }
.scope-target {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px #fff, 0 0 30px var(--magenta);
  animation: target-pulse 1.7s ease-in-out infinite;
}
.console-rows {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px 12px;
  align-items: center;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-dim);
}
.console-rows i {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--magenta), #fff);
  box-shadow: 0 0 16px rgba(255,255,255,0.5);
  transform-origin: left;
  animation: console-fill 2.6s ease-in-out infinite alternate;
}
.console-rows i:nth-of-type(2) { animation-delay: -.7s; }
.console-rows i:nth-of-type(3) { animation-delay: -1.2s; }
@keyframes cta-scan {
  0%,100% { transform: translateY(70px); opacity: 0; }
  14%,78% { opacity: 0.9; }
  50% { transform: translateY(430px); }
}
@keyframes cta-rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes target-pulse {
  0%,100% { transform: scale(0.75); opacity: .65; }
  50% { transform: scale(1.28); opacity: 1; }
}
@keyframes console-fill {
  from { transform: scaleX(.44); }
  to { transform: scaleX(1); }
}

@media (max-width: 760px) {
  .section {
    padding: 86px 0;
  }

  .section-title {
    font-size: clamp(36px, 13vw, 56px);
    line-height: 0.96;
  }

  .cta {
    padding: 54px 20px;
    border-radius: 24px;
  }

  .cta-lockon {
    min-height: auto;
    padding: 46px 20px 280px;
    text-align: center;
  }

  .cta-lockon .cta-inner {
    min-height: 0;
    padding-right: 0;
  }

  .cta-lockon p {
    margin-left: auto;
  }

  .cta-lockon .cta-inner > div[style] {
    justify-content: center !important;
  }

  .cta-lockon .hero-actions {
    justify-content: center;
  }

  .cta-reticle {
    left: 50%;
    top: auto;
    bottom: -10px;
    width: 260px;
    height: 260px;
  }

  .cta-console {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 24px;
    width: min(320px, 88vw);
    min-height: 220px;
    transform: translateX(-50%);
    padding: 16px;
  }

  .console-scope { height: 108px; }
  .console-scope .reticle { width: 64px; height: 64px; }

  .cta h2 {
    font-size: clamp(42px, 14vw, 64px);
  }
}


footer:not(.site-foot) { padding: 60px 0 40px; border-top: 1px solid var(--line); margin-top: 100px; color: var(--ink-mute); }
footer.site-foot { margin-top: 0; }
.foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
footer.site-foot .foot {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
footer.site-foot .foot-nav a:hover { color: var(--white); }


.reveal {
  opacity: 0;
  transform: translateY(32px) scale(.97);
  will-change: opacity, transform;
  transition:
    opacity   .85s cubic-bezier(.16,.84,.44,1),
    transform .85s cubic-bezier(.16,.84,.44,1);
}
.reveal.in { opacity: 1; transform: translateY(0) scale(1); }
.reveal.delay-1 { transition-delay: .10s; }
.reveal.delay-2 { transition-delay: .22s; }
.reveal.delay-3 { transition-delay: .38s; }
.reveal.delay-4 { transition-delay: .56s; }
.reveal.delay-5 { transition-delay: .76s; }
.reveal.delay-6 { transition-delay: 1.00s; }


.splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow: hidden;
  background: #07060a;
}
.splash::before { display: none; }
.splash::after  { display: none; }
.splash.gone {
  animation: splash-exit .85s cubic-bezier(.6,0,.4,1) forwards;
  pointer-events: none;
}
@keyframes splash-exit {
  0%   { opacity: 1; transform: scale(1); }
  35%  { opacity: .9; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(.94) translateY(-10px); visibility: hidden; }
}
.splash-grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 46%, black, transparent 70%);
  animation: splash-grid 5s linear infinite;
}
.splash.running .splash-grid {
  animation-duration: 1.4s;
}
.splash-scan {
  position: absolute;
  left: -20%;
  right: -20%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--magenta), #fff, transparent);
  box-shadow: 0 0 30px rgba(255,255,255,0.8);
  animation: splash-scan 2.8s ease-in-out infinite;
}
.splash.running .splash-scan {
  animation: splash-scan-fast .62s ease-in-out infinite;
}
.splash-shards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.splash-shards span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(90px, 13vw, 220px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.86), var(--magenta), transparent);
  transform: translate(-50%, -50%) rotate(calc(var(--r, 0) * 1deg)) translateX(-70vw);
  opacity: 0;
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.7));
}
.splash-shards span:nth-child(1) { --r: -32; top: 18%; }
.splash-shards span:nth-child(2) { --r: 12; top: 28%; }
.splash-shards span:nth-child(3) { --r: 38; top: 37%; }
.splash-shards span:nth-child(4) { --r: -8; top: 46%; }
.splash-shards span:nth-child(5) { --r: 24; top: 58%; }
.splash-shards span:nth-child(6) { --r: -26; top: 68%; }
.splash-shards span:nth-child(7) { --r: 7; top: 78%; }
.splash-shards span:nth-child(8) { --r: -48; left: 24%; }
.splash-shards span:nth-child(9) { --r: 48; left: 78%; }
.splash-shards span:nth-child(10) { --r: -14; top: 12%; left: 72%; }
.splash-shards span:nth-child(11) { --r: 19; top: 86%; left: 30%; }
.splash-shards span:nth-child(12) { --r: 55; top: 22%; left: 36%; }
.splash-shards span:nth-child(13) { --r: -55; top: 74%; left: 70%; }
.splash-shards span:nth-child(14) { --r: 4; top: 32%; left: 15%; }
.splash-shards span:nth-child(15) { --r: -4; top: 62%; left: 86%; }
.splash-shards span:nth-child(16) { --r: 66; top: 50%; left: 12%; }
.splash-shards span:nth-child(17) { --r: -66; top: 50%; left: 88%; }
.splash-shards span:nth-child(18) { --r: 0; width: 34vw; }
.splash.running .splash-shards span {
  animation: splash-shard 1.1s cubic-bezier(.2,.8,.2,1) forwards;
}
.splash.running .splash-shards span:nth-child(2n) { animation-delay: .08s; }
.splash.running .splash-shards span:nth-child(3n) { animation-delay: .18s; }
.splash.running .splash-shards span:nth-child(5n) { animation-delay: .32s; }
.splash-orbit {
  position: absolute;
  width: min(68vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  opacity: 0.65;
  animation: splash-orbit-spin 12s linear infinite;
}
.splash-orbit i {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
}
.splash-orbit i:nth-child(2) { inset: 22%; border-color: rgba(255,255,255,0.1); }
.splash-orbit i:nth-child(3) { inset: 36%; border-color: rgba(255,255,255,0.36); }
.splash.running .splash-orbit {
  animation-duration: 2s;
}
.splash-lock {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 34px;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .5s, opacity .5s;
}
.splash.running .splash-lock {
  animation: splash-lock-seq 4.3s cubic-bezier(.2,.8,.2,1) forwards;
}
.splash-reticle {
  position: relative;
  width: 172px;
  height: 172px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.34);
  box-shadow: inset 0 0 44px rgba(255,255,255,0.12), 0 0 60px rgba(255,255,255,0.22);
  animation: splash-reticle 2.8s ease-in-out infinite;
}
.splash.running .splash-reticle {
  animation: splash-reticle-lock 1.8s cubic-bezier(.2,.8,.2,1) forwards;
}
.splash-reticle img { animation: spin 5s linear infinite; }
.splash-reticle span {
  position: absolute;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 0 16px rgba(255,255,255,0.95);
}
.splash-reticle span:nth-child(2),
.splash-reticle span:nth-child(3) { left: 50%; width: 1px; height: 42px; transform: translateX(-50%); }
.splash-reticle span:nth-child(2) { top: -16px; }
.splash-reticle span:nth-child(3) { bottom: -16px; }
.splash-reticle span:nth-child(4),
.splash-reticle span:nth-child(5) { top: 50%; width: 42px; height: 1px; transform: translateY(-50%); }
.splash-reticle span:nth-child(4) { left: -16px; }
.splash-reticle span:nth-child(5) { right: -16px; }
.splash-kicker {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  color: var(--magenta);
  text-transform: uppercase;
}
.splash h1 {
  margin: 12px 0 8px;
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 112px);
  line-height: .88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  display: grid;
  gap: 2px;
}
.splash h1 span {
  display: block;
}
.splash.running h1 span:first-child {
  animation: splash-word-left 1.25s cubic-bezier(.2,.8,.2,1) forwards;
}
.splash.running h1 span:last-child {
  animation: splash-word-right 1.25s cubic-bezier(.2,.8,.2,1) forwards;
}
.splash p {
  margin: 0 0 26px;
  color: var(--ink-dim);
  font-size: 15px;
}
.splash-enter {
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  font-family: var(--display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform .25s, box-shadow .25s;
}
.splash.running .splash-enter {
  opacity: 0;
  transform: translateY(10px) scale(.94);
  pointer-events: none;
}
.splash-enter:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(255,255,255,0.22);
}
.splash-progress {
  position: absolute;
  left: 50%;
  bottom: 54px;
  width: min(520px, 72vw);
  height: 3px;
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.splash-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--magenta), #fff);
  box-shadow: 0 0 18px rgba(255,255,255,0.8);
}
.splash.running .splash-progress i {
  animation: splash-progress 4.05s cubic-bezier(.2,.8,.2,1) forwards;
}
.splash-status {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 22px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  color: rgba(255,255,255,0.36);
  text-transform: uppercase;
}
.splash.running .splash-status span {
  animation: splash-status 1.2s ease-in-out infinite;
}
.splash.running .splash-status span:nth-child(2) { animation-delay: .18s; }
.splash.running .splash-status span:nth-child(3) { animation-delay: .36s; }
@keyframes splash-field {
  to { transform: rotate(360deg); }
}
@keyframes splash-grid {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(58px,58px,0); }
}
@keyframes splash-scan {
  0%,100% { transform: translateY(12vh); opacity: 0; }
  16%,80% { opacity: 1; }
  50% { transform: translateY(82vh); }
}
@keyframes splash-reticle {
  0%,100% { transform: scale(.96); opacity: .82; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes splash-reticle-lock {
  0% { transform: scale(.92) rotate(0deg); }
  28% { transform: scale(1.2) rotate(22deg); }
  54% { transform: scale(.86) rotate(-10deg); }
  78% { transform: scale(1.04) rotate(0deg); }
  100% { transform: scale(9) rotate(45deg); opacity: 0; }
}
@keyframes splash-lock-seq {
  0% { transform: scale(1); filter: none; opacity: 1; }
  22% { transform: scale(1.03); }
  68% { transform: scale(.96); filter: contrast(1.2); opacity: 1; }
  88% { transform: scale(1.18); filter: blur(1px) contrast(1.5); opacity: .8; }
  100% { transform: scale(1.45); filter: blur(12px); opacity: 0; }
}
@keyframes splash-word-left {
  0% { transform: translateX(0); }
  55% { transform: translateX(-10px); letter-spacing: -0.035em; }
  100% { transform: translateX(-46vw); opacity: 0; }
}
@keyframes splash-word-right {
  0% { transform: translateX(0); }
  55% { transform: translateX(10px); letter-spacing: -0.035em; }
  100% { transform: translateX(46vw); opacity: 0; }
}
@keyframes splash-shard {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(calc(var(--r) * 1deg)) translateX(-62vw) scaleX(.2); }
  14% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(calc(var(--r) * 1deg)) translateX(62vw) scaleX(1.4); }
}
@keyframes splash-orbit-spin {
  to { transform: rotate(360deg); }
}
@keyframes splash-scan-fast {
  0% { transform: translateY(8vh); opacity: 0; }
  20%,80% { opacity: 1; }
  100% { transform: translateY(92vh); opacity: 0; }
}
@keyframes splash-progress {
  0% { width: 0; }
  52% { width: 64%; }
  78% { width: 82%; }
  100% { width: 100%; }
}
@keyframes splash-status {
  0%,100% { color: rgba(255,255,255,0.3); }
  50% { color: #fff; text-shadow: 0 0 18px rgba(255,255,255,.75); }
}
@keyframes splash-final-flash {
  0%, 82% { opacity: 0; }
  88% { opacity: .86; }
  100% { opacity: 0; }
}


.splash {
  background:
    radial-gradient(circle at 52% 48%, rgba(255,255,255,0.18), transparent 34%),
    radial-gradient(circle at 42% 54%, rgba(255,255,255,0.08), transparent 22%),
    #050407;
}
.splash::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), transparent 18%),
    conic-gradient(from 180deg, transparent, rgba(255,255,255,0.16), transparent, rgba(255,255,255,0.08), transparent);
  opacity: .42;
  filter: blur(20px);
}
.splash.running::after {
  animation: liquid-final-flash 4.3s ease forwards;
}
.splash-ambient {
  position: absolute;
  width: min(84vw, 920px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(255,255,255,0.22), transparent 10%),
    radial-gradient(circle at 62% 64%, rgba(255,255,255,0.22), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.055), transparent 58%);
  filter: blur(8px);
  opacity: .82;
  animation: liquid-ambient 7s ease-in-out infinite;
}
.splash-liquid-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: .75;
}
.splash-liquid-lines i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(760px, 88vw);
  height: 1px;
  transform: translate(-50%, -50%) rotate(var(--r));
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), rgba(255,255,255,0.42), transparent);
  filter: blur(.2px);
}
.splash-liquid-lines i:nth-child(1) { --r: 0deg; }
.splash-liquid-lines i:nth-child(2) { --r: 60deg; }
.splash-liquid-lines i:nth-child(3) { --r: -60deg; }
.splash.running .splash-liquid-lines i {
  animation: liquid-line 1.05s cubic-bezier(.2,.8,.2,1) infinite;
}
.splash.running .splash-liquid-lines i:nth-child(2) { animation-delay: .12s; }
.splash.running .splash-liquid-lines i:nth-child(3) { animation-delay: .24s; }
.splash-lock {
  padding: 0;
  width: min(68vw, 520px);
  aspect-ratio: 1;
  place-items: center;
}
.splash.running .splash-lock {
  animation: liquid-lock 4.3s cubic-bezier(.2,.8,.2,1) forwards;
}
.splash-orb {
  position: relative;
  width: clamp(180px, 28vw, 330px);
  aspect-ratio: 1;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  box-shadow:
    inset 24px 28px 54px rgba(255,255,255,0.12),
    inset -28px -34px 54px rgba(255,255,255,0.10),
    0 38px 120px rgba(0,0,0,0.55),
    0 0 90px rgba(255,255,255,0.18);
  animation: liquid-orb-idle 4.8s ease-in-out infinite;
}
.splash-orb::before {
  content: "";
  position: absolute;
  inset: -24%;
  border-radius: 43% 57% 48% 52%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.64), transparent 12%),
    radial-gradient(circle at 65% 64%, rgba(255,255,255,0.42), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.02));
  filter: blur(10px);
  opacity: .78;
  animation: liquid-morph 7s ease-in-out infinite;
}
.splash-orb-core {
  position: absolute;
  inset: 17%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.72), rgba(255,255,255,0.1) 18%, transparent 38%),
    radial-gradient(circle at 58% 62%, rgba(255,255,255,0.42), transparent 45%);
  filter: blur(2px);
  opacity: .75;
}
.splash-orb-glint {
  position: absolute;
  left: 23%;
  top: 18%;
  width: 38%;
  height: 16%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.74), transparent);
  transform: rotate(-28deg);
  filter: blur(1px);
  opacity: .72;
}
.splash-orb-ring {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 0 28px rgba(255,255,255,0.08), 0 0 30px rgba(255,255,255,0.14);
}
.splash.running .splash-orb {
  animation: liquid-orb-launch 4.3s cubic-bezier(.2,.8,.2,1) forwards;
}
.splash.running .splash-orb::before {
  animation: liquid-morph-fast .7s ease-in-out infinite;
}
@keyframes liquid-ambient {
  0%,100% { transform: scale(.92) rotate(0deg); opacity: .65; }
  50% { transform: scale(1.05) rotate(18deg); opacity: 1; }
}
@keyframes liquid-morph {
  0%,100% { transform: rotate(0deg) scale(1); border-radius: 43% 57% 48% 52%; }
  33% { transform: rotate(80deg) scale(1.08); border-radius: 58% 42% 62% 38%; }
  66% { transform: rotate(170deg) scale(.96); border-radius: 40% 60% 42% 58%; }
}
@keyframes liquid-morph-fast {
  0%,100% { transform: rotate(0deg) scale(1.08); }
  50% { transform: rotate(80deg) scale(1.22); }
}
@keyframes liquid-orb-idle {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.025); }
}
@keyframes liquid-line {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--r)) scaleX(.2); }
  50% { opacity: .85; }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--r)) scaleX(1.45); }
}
@keyframes liquid-lock {
  0% { transform: scale(1); opacity: 1; }
  48% { transform: scale(.92); opacity: 1; }
  72% { transform: scale(1.1); opacity: .92; }
  100% { transform: scale(1.8); opacity: 0; filter: blur(18px); }
}
@keyframes liquid-orb-launch {
  0% { transform: scale(1); filter: none; }
  20% { transform: scale(.86); }
  52% { transform: scale(1.14); filter: saturate(1.4); }
  78% { transform: scale(.55); filter: blur(1px) saturate(1.8); }
  100% { transform: scale(7); filter: blur(18px); opacity: 0; }
}
@keyframes liquid-final-flash {
  0%, 76% { opacity: 0; }
  84% { opacity: .34; }
  100% { opacity: 0; }
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }


.splash.intro-motion {
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,0.12), transparent 24%),
    radial-gradient(circle at 74% 62%, rgba(255,255,255,0.18), transparent 28%),
    #050407;
}
.intro-motion .splash-ambient,
.intro-motion .splash-liquid-lines,
.intro-motion .splash-lock,
.intro-motion .splash-grid,
.intro-motion .splash-scan,
.intro-motion .splash-shards,
.intro-motion .splash-orbit,
.intro-motion .splash-progress,
.intro-motion .splash-status {
  display: none;
}
.intro-motion::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 42% 45%, rgba(255,255,255,0.18), transparent 9%),
    radial-gradient(circle at 52% 52%, rgba(255,255,255,0.16), transparent 24%),
    conic-gradient(from 70deg at 50% 50%, transparent, rgba(255,255,255,0.08), transparent 22%, rgba(255,255,255,0.14), transparent 48%);
  filter: blur(18px);
  opacity: .78;
  animation: intro-aurora 10.8s ease-in-out forwards;
}
.intro-motion::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.18), transparent 44%),
    linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,0.10) 45%, transparent 56%),
    rgba(7,6,10,0.92);
  opacity: 0;
  pointer-events: none;
}
.intro-motion.running::after {
  animation: intro-flash 10.8s ease forwards;
}
.intro-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.intro-media span {
  position: absolute;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.20), rgba(255,255,255,0.04)),
    radial-gradient(circle at 35% 24%, rgba(255,255,255,0.48), transparent 18%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.22), transparent 34%);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34), 0 28px 90px rgba(0,0,0,0.25);
  opacity: .72;
}
.intro-media span:nth-child(1) {
  width: 34vw; height: 34vw; left: -9vw; top: 12vh;
  animation: intro-bubble-a 10.8s cubic-bezier(.2,.8,.2,1) forwards;
}
.intro-media span:nth-child(2) {
  width: 24vw; height: 24vw; right: 8vw; top: -7vw;
  animation: intro-bubble-b 10.8s cubic-bezier(.2,.8,.2,1) forwards;
}
.intro-media span:nth-child(3) {
  width: 18vw; height: 18vw; right: 11vw; bottom: 7vh;
  animation: intro-bubble-c 10.8s cubic-bezier(.2,.8,.2,1) forwards;
}
.intro-media span:nth-child(4) {
  width: 10vw; height: 10vw; left: 52vw; bottom: 12vh;
  animation: intro-bubble-d 10.8s cubic-bezier(.2,.8,.2,1) forwards;
}
.intro-copy {
  position: relative;
  z-index: 3;
  width: min(1180px, 88vw);
  display: grid;
  justify-items: start;
  gap: 0;
  color: var(--ink);
  min-height: clamp(240px, 36vw, 430px);
}
.intro-prelude {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.intro-logo {
  position: absolute;
  left: clamp(22px, 5vw, 70px);
  top: clamp(22px, 5vw, 58px);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 15px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.intro-logo span span { font-weight: 400; color: var(--ink-dim); }
.intro-mac {
  position: absolute;
  left: clamp(18px, 4vw, 72px);
  bottom: clamp(36px, 7vh, 78px);
  width: min(620px, 44vw);
  transform: perspective(1200px) rotateX(6deg) rotateY(-12deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 34px 52px rgba(0,0,0,.42));
  animation: intro-mac-float 5.8s ease-in-out infinite;
}
.intro-mac-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.06)), #08070c;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.26), 0 0 44px rgba(255,255,255,.18);
}
.intro-mac-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.intro-mac-base {
  width: 88%;
  height: 20px;
  margin: -1px auto 0;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #d9d9df, #6e6b76);
  transform: perspective(260px) rotateX(58deg);
}
.intro-floating {
  position: absolute;
  padding: 14px 16px;
  border-radius: 18px;
  display: grid;
  gap: 2px;
  font-family: var(--display);
  animation: intro-float-soft 5s ease-in-out infinite;
}
.intro-floating span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--magenta);
}
.intro-floating b {
  font-size: 14px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.intro-floating-a { right: clamp(24px, 9vw, 130px); top: 24vh; }
.intro-floating-b { right: clamp(22px, 17vw, 260px); bottom: 18vh; animation-delay: -1.7s; }
.intro-scene {
  grid-area: 1 / 1;
  width: 100%;
  align-self: center;
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
}
.intro-line {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(64px, 12vw, 168px);
  line-height: .82;
  letter-spacing: -0.075em;
  opacity: 0;
  transform: translateY(42px);
  text-shadow: 0 22px 90px rgba(0,0,0,0.45);
}
.intro-motion:not(.running) .intro-scene-1 {
  opacity: 1;
}
.intro-line-b,
.intro-line-d,
.intro-line-f,
.intro-line-h {
  justify-self: end;
  font-weight: 300;
  font-style: italic;
  color: var(--magenta);
  filter: drop-shadow(0 0 28px rgba(255,255,255,0.32));
}
.intro-line-c,
.intro-line-g {
  font-size: clamp(82px, 15vw, 210px);
}
.intro-line-e {
  font-size: clamp(52px, 9vw, 128px);
}
.intro-role {
  grid-area: 1 / 1;
  align-self: end;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
}
.intro-motion:not(.running) .intro-role {
  opacity: 1;
  transform: translateY(0);
}
.intro-role span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.intro-motion.running .intro-scene-1 { animation: intro-scene-1 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.intro-motion.running .intro-scene-2 { animation: intro-scene-2 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.intro-motion.running .intro-scene-3 { animation: intro-scene-3 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.intro-motion.running .intro-scene-4 { animation: intro-scene-4 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.intro-motion.running .intro-scene-1 .intro-line:first-child,
.intro-motion.running .intro-scene-2 .intro-line:first-child,
.intro-motion.running .intro-scene-3 .intro-line:first-child,
.intro-motion.running .intro-scene-4 .intro-line:first-child {
  animation: intro-line-left 10.8s cubic-bezier(.2,.8,.2,1) forwards;
}
.intro-motion.running .intro-scene-1 .intro-line:last-child,
.intro-motion.running .intro-scene-2 .intro-line:last-child,
.intro-motion.running .intro-scene-3 .intro-line:last-child,
.intro-motion.running .intro-scene-4 .intro-line:last-child {
  animation: intro-line-right 10.8s cubic-bezier(.2,.8,.2,1) forwards;
}
.intro-motion.running .intro-pills { animation: intro-role 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.intro-launch {
  margin-top: 24px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .25s, box-shadow .25s, opacity .25s;
}
.intro-launch:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255,255,255,0.22);
}
.intro-motion.running .intro-launch {
  opacity: 0;
  pointer-events: none;
}
.intro-mark {
  position: absolute;
  right: 7vw;
  bottom: 7vh;
  z-index: 3;
  opacity: 0;
  transform: scale(.75) rotate(-18deg);
}
.intro-motion.running .intro-mark {
  animation: intro-mark 10.8s cubic-bezier(.2,.8,.2,1) forwards;
}
.intro-skip {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 4;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  opacity: 0;
}
@keyframes intro-scene-1 {
  0%,4% { opacity: 0; transform: scale(.96); filter: blur(12px); }
  8%,22% { opacity: 1; transform: scale(1); filter: blur(0); }
  28%,100% { opacity: 0; transform: scale(1.06); filter: blur(14px); }
}
@keyframes intro-scene-2 {
  0%,24% { opacity: 0; transform: translateY(30px) scale(.96); filter: blur(14px); }
  31%,45% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  52%,100% { opacity: 0; transform: translateY(-28px) scale(1.06); filter: blur(14px); }
}
@keyframes intro-scene-3 {
  0%,48% { opacity: 0; transform: translateX(-28px) scale(.98); filter: blur(14px); }
  55%,69% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
  76%,100% { opacity: 0; transform: translateX(28px) scale(1.06); filter: blur(14px); }
}
@keyframes intro-scene-4 {
  0%,72% { opacity: 0; transform: scale(.94); filter: blur(18px); }
  80%,91% { opacity: 1; transform: scale(1); filter: blur(0); }
  100% { opacity: 0; transform: scale(1.16); filter: blur(18px); }
}
@keyframes intro-line-left {
  0%,100% { transform: translateX(0); }
  18% { transform: translateX(-8px); }
  44% { transform: translateX(10px); }
  66% { transform: translateX(-6px); }
  88% { transform: translateX(0) scale(1.02); }
}
@keyframes intro-line-right {
  0%,100% { transform: translateX(0); }
  18% { transform: translateX(8px); }
  44% { transform: translateX(-10px); }
  66% { transform: translateX(6px); }
  88% { transform: translateX(0) scale(1.02); }
}
@keyframes intro-role {
  0%,76% { opacity: 0; transform: translateY(18px); filter: blur(10px); }
  82%,92% { opacity: 1; transform: translateY(0); filter: blur(0); }
  100% { opacity: 0; transform: translateY(-18px); filter: blur(8px); }
}
@keyframes intro-mark {
  0%,74% { opacity: 0; transform: scale(.75) rotate(-18deg); }
  82%,93% { opacity: .9; transform: scale(1) rotate(0); }
  100% { opacity: 0; transform: scale(1.7) rotate(45deg); filter: blur(10px); }
}
@keyframes intro-aurora {
  0% { transform: scale(.86) rotate(0deg); }
  62% { transform: scale(1.08) rotate(24deg); }
  100% { transform: scale(1.4) rotate(50deg); opacity: 0; }
}
@keyframes intro-flash {
  0%,82% { opacity: 0; transform: translateX(-40%); }
  90% { opacity: .32; }
  100% { opacity: 0; transform: translateX(40%); }
}
@keyframes intro-bubble-a {
  0% { transform: translate(-8vw, 8vh) scale(.88); }
  28% { transform: translate(8vw, -2vh) scale(1.04); }
  58% { transform: translate(18vw, 8vh) scale(.96); }
  86% { transform: translate(6vw, -8vh) scale(1.18); }
  100% { transform: translate(22vw, -10vh) scale(1.4); opacity: 0; }
}
@keyframes intro-bubble-b {
  0% { transform: translate(8vw, -4vh) scale(.82); }
  35% { transform: translate(-6vw, 8vh) scale(1); }
  70% { transform: translate(-14vw, -4vh) scale(.9); }
  100% { transform: translate(-20vw, 12vh) scale(1.35); opacity: 0; }
}
@keyframes intro-bubble-c {
  0% { transform: translate(6vw, 6vh) scale(.9); }
  42% { transform: translate(-5vw, -7vh) scale(1.05); }
  76% { transform: translate(4vw, -16vh) scale(.98); }
  100% { transform: translate(-18vw, -20vh) scale(1.45); opacity: 0; }
}
@keyframes intro-bubble-d {
  0% { transform: translateY(12vh) scale(.8); }
  48% { transform: translateY(-10vh) scale(1.1); }
  78% { transform: translateY(2vh) scale(.94); }
  100% { transform: translateY(-24vh) scale(1.8); opacity: 0; }
}
@keyframes intro-mac-float {
  0%,100% { transform: perspective(1200px) rotateX(6deg) rotateY(-12deg) rotateZ(-2deg) translateY(0); }
  50% { transform: perspective(1200px) rotateX(6deg) rotateY(-9deg) rotateZ(-1deg) translateY(-14px); }
}
@keyframes intro-float-soft {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 760px) {
  .intro-copy {
    width: min(360px, 86vw);
  }
  .intro-line {
    font-size: clamp(54px, 18vw, 82px);
  }
  .intro-role {
    gap: 8px;
  }
  .intro-role span {
    font-size: 9px;
    padding: 8px 10px;
  }
}


.splash.intro-motion {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,0.20), transparent 32%),
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.09), transparent 24%),
    #07060a;
}
.splash.intro-motion .intro-media::before,
.splash.intro-motion .intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255,255,255,.82) 0 2px, transparent 3px) 8% 18% / 180px 160px,
    radial-gradient(circle, rgba(255,255,255,.62) 0 1px, transparent 2px) 24% 72% / 150px 130px,
    radial-gradient(circle, rgba(255,255,255,.46) 0 1px, transparent 2px) 88% 42% / 210px 180px;
  opacity: .36;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.55));
  animation: intro-particles 8s ease-in-out infinite;
}
.splash.intro-motion .intro-media::after {
  transform: rotate(12deg) scale(1.08);
  opacity: .22;
  animation-duration: 11s;
  animation-direction: reverse;
}
.splash.intro-motion .intro-copy {
  position: relative;
  z-index: 20;
  width: min(1180px, 90vw);
  min-height: clamp(360px, 52vh, 520px);
  display: grid;
  align-content: center;
  justify-items: stretch;
  font-family: var(--display);
}
.splash.intro-motion .intro-scene {
  grid-area: 1 / 1;
  align-self: center;
  display: grid;
  gap: 12px;
  width: 100%;
  opacity: 0;
}
.splash.intro-motion:not(.running) .intro-scene-1 {
  opacity: 1;
}
.splash.intro-motion .intro-line {
  opacity: 1;
  transform: none;
  filter: none;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(60px, 10.6vw, 154px);
  line-height: .86;
  letter-spacing: -0.065em;
  color: var(--ink);
  text-shadow: 0 28px 90px rgba(0,0,0,.45);
}
.intro-line .run-word { display: none; }
.intro-motion.running .intro-line .idle-word { display: none; }
.intro-motion.running .intro-line .run-word { display: inline; }
.splash.intro-motion .intro-line-b,
.splash.intro-motion .intro-line-d,
.splash.intro-motion .intro-line-f,
.splash.intro-motion .intro-line-h {
  justify-self: end;
  font-weight: 300;
  color: var(--magenta);
}
.splash.intro-motion .intro-pills {
  grid-area: 1 / 1;
  align-self: end;
  z-index: 23;
}
.splash.intro-motion:not(.running) .intro-pills {
  opacity: 1;
  transform: none;
  filter: none;
  position: relative;
  grid-area: auto;
  margin-top: 24px;
}
.intro-launch {
  position: relative;
  z-index: 40;
  justify-self: start;
  margin-top: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05)),
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.04));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.42),
    0 18px 54px rgba(255,255,255,.24),
    0 0 0 1px rgba(255,255,255,.08);
}
.intro-motion.running .intro-launch {
  display: none;
}
.splash.intro-motion:not(.running) .intro-copy {
  padding-left: min(42vw, 560px);
}
.splash.intro-motion:not(.running) .intro-line {
  font-size: clamp(48px, 8vw, 116px);
}
.splash.intro-motion:not(.running) .intro-launch {
  justify-self: start;
}
.intro-motion.running .intro-scene-1 { animation: intro-scene-1 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.intro-motion.running .intro-scene-2 { animation: intro-scene-2 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.intro-motion.running .intro-scene-3 { animation: intro-scene-3 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.intro-motion.running .intro-scene-4 { animation: intro-scene-4 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.intro-motion.running .intro-pills { animation: intro-role 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes intro-particles {
  0%,100% { transform: translate3d(0,0,0); opacity: .24; }
  50% { transform: translate3d(18px,-24px,0); opacity: .46; }
}

@media (max-width: 760px) {
  .splash.intro-motion .intro-copy {
    width: min(360px, 88vw);
    min-height: 420px;
  }
  .splash.intro-motion .intro-line {
    font-size: clamp(48px, 16vw, 76px);
  }
  .intro-launch {
    justify-self: center;
  }
  .intro-prelude { opacity: .45; }
  .intro-mac {
    width: min(360px, 92vw);
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) perspective(900px) rotateX(5deg) rotateY(-8deg) rotateZ(-1deg);
  }
  .intro-floating { display: none; }
  .splash.intro-motion:not(.running) .intro-copy {
    padding-left: 0;
    align-content: start;
    padding-top: 86px;
  }
}


.mb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 6px;
  animation: mbfadein .45s ease;
}
@keyframes mbfadein { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }

.hero-mb-wrap .mb-img {
  animation: none !important;
}

.mb-soon {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: rgba(255,255,255,0.32);
  font-family: var(--display); font-size: 14px; font-weight: 500;
  animation: mbfadein .45s ease;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
}


.mb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 999px;
  color: var(--ink); cursor: pointer;
  z-index: 10;
  pointer-events: auto;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .25s;
}
.mb-arrow-l { left: 0; }
.mb-arrow-r { right: 0; }
.mb-arrow:hover { transform: translateY(-50%) scale(1.08); }
.mb-arrow:hover svg { color: var(--magenta); }
.mb-arrow svg { transition: color .25s; }
@media (max-width: 760px) {
  .mb-arrow { width: 44px; height: 44px; }
  .hero-home .hero-mb-wrap,
  .hero-home-mac-zone .hero-mb-wrap {
    padding-left: 44px;
    padding-right: 44px;
  }
}


.mb-thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; margin-top: 36px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}

.mb-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
  opacity: 0.55;
}
.mb-thumb:hover { opacity: 0.85; transform: translateY(-3px); }
.mb-thumb.active {
  opacity: 1;
  border-color: rgba(255,255,255,0.55) !important;
  box-shadow: 0 0 0 1.5px var(--magenta), 0 0 30px rgba(255,255,255,0.4),
              inset 0 1px 0 rgba(255,255,255,0.4) !important;
  transform: translateY(-4px);
}
.mb-thumb.locked { opacity: 0.4; }
.mb-thumb.locked:hover { opacity: 0.6; }

.mb-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.mb-thumb-lock {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.35);
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.06));
}

.mb-thumb-tag {
  position: absolute; top: 6px; left: 8px;
  font-family: var(--display); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 7px; border-radius: 999px;
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.mb-thumb.active .mb-thumb-tag {
  background: var(--magenta);
  color: #fff;
}

@media (max-width: 600px) {
  .mb-thumbs { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .mb-thumb-tag { font-size: 8px; padding: 2px 5px; }
}


.show-grid-v2 { grid-template-columns: repeat(12, 1fr); }


.show-fsc-big {
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.show-fsc-big:hover { transform: translateY(-4px); }

.show-fsc-glow {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(255,255,255,0.35), transparent 70%);
  opacity: 0; transition: opacity .5s;
}
.show-fsc-big:hover .show-fsc-glow { opacity: 1; }


.fsc-browser {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0810;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 24px rgba(0,0,0,0.4);
  z-index: 4;
}

.fsc-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.fsc-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.fsc-dot-r { background: #ff5f56; }
.fsc-dot-y { background: #ffbd2e; }
.fsc-dot-g { background: #27c93f; }

.fsc-url {
  flex: 1;
  margin: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,0.4);
  border-radius: 999px;
  padding: 5px 12px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: -0.005em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.fsc-url svg { color: rgba(155,255,180,0.7); flex-shrink: 0; }

.fsc-tag {
  font-family: var(--display); font-size: 10px; font-weight: 600;
  color: var(--magenta); letter-spacing: 0.06em;
  flex-shrink: 0;
}


.fsc-viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: #06050a;
}

.fsc-scroll {
  position: absolute;
  top: 0; left: 0; right: 0;
  transition: transform 16s linear;
  will-change: transform;
  background: #06050a;
}
.fsc-cover { background: #06050a; }
.show-fsc-big:hover .fsc-scroll {
  transform: translateY(calc(-100% + 380px));
}

.fsc-cover {
  width: 100%;
  height: auto;
  display: block;
}


.fsc-hint {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 13px 7px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--ink);
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  transition: opacity .3s, transform .3s;
}
.show-fsc-big:hover .fsc-hint { opacity: 0; transform: translateY(8px); }

.fsc-hint-mouse {
  width: 14px; height: 22px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.7);
  position: relative;
  flex-shrink: 0;
}
.fsc-hint-mouse span {
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 5px;
  background: var(--magenta);
  border-radius: 2px;
  animation: scrollDot 1.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: 4px; opacity: 1; }
  60%  { top: 12px; opacity: 0; }
  100% { top: 4px; opacity: 1; }
}


.fsc-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.06);
  z-index: 6;
  pointer-events: none;
}
.fsc-progress i {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--magenta), #ff7aa6);
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
  transition: width 16s linear;
}
.show-fsc-big:hover .fsc-progress i { width: 100%; }


.fsc-cta-overlay {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--magenta);
  color: #fff;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.005em;
  opacity: 0;
  transition: opacity .35s, transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 14px 36px rgba(255,255,255,0.5);
  pointer-events: none;
  z-index: 5;
}
.show-fsc-big:hover .fsc-cta-overlay {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


.show-locked { cursor: default; padding: 0 !important; }
.lock-overlay {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,255,255,0.06), transparent 70%),
    rgba(7,6,10,0.5);
  backdrop-filter: blur(8px);
  border-radius: inherit;
}
.lock-icon {
  width: 64px; height: 64px; border-radius: 20px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06) !important;
}
.lock-soon {
  font-family: var(--display); font-weight: 800; font-size: 22px;
  letter-spacing: -0.03em; color: var(--ink);
  margin-top: 4px;
}
.lock-sub {
  font-family: var(--display); font-size: 11px; font-weight: 500;
  color: var(--ink-mute); letter-spacing: -0.005em;
}

@media (max-width: 900px) {
  .fsc-cta-overlay { display: none; }
}


.row { display: flex; align-items: center; gap: 12px; }
.between { justify-content: space-between; }
.muted { color: var(--ink-mute); }
.mono { font-family: var(--display); font-weight: 500; }

.tilt { transform: perspective(900px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)) translateZ(0); transition: transform .25s ease; }

.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.kpi { padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); }
.kpi .v { font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.035em; }
.kpi .l { font-family: var(--display); font-weight: 500; font-size: 11px; color: var(--ink-mute); letter-spacing: -0.005em; }

.health-row { display: flex; align-items: center; gap: 10px; }
.health-icon { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4); color: var(--magenta); font-family: var(--mono); font-size: 11px; }


.hs-teaser {
  position: relative; margin-top: 14px;
  height: 110px; border-radius: 10px; overflow: hidden;
  background: rgba(5,4,9,0.7);
  border: 1px solid rgba(255,255,255,0.055);
}
.hs-teaser-blur {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 25% 50%, rgba(255,255,255,0.22), transparent 60%),
    radial-gradient(ellipse 40% 70% at 80% 38%, rgba(255,255,255,0.09), transparent 55%),
    radial-gradient(ellipse 30% 55% at 52% 90%, rgba(180,10,60,0.13), transparent 60%);
  filter: blur(10px);
}
.hs-teaser-grid {
  position: absolute; inset: 0; padding: 12px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 7px; pointer-events: none;
}
.hs-teaser-card {
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  animation: teasercard 3.5s ease-in-out infinite;
}
.hs-teaser-card:nth-child(2) { animation-delay: -1.2s; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.hs-teaser-card:nth-child(3) { animation-delay: -2.4s; }
.hs-teaser-card:nth-child(4) { animation-delay: -0.6s; }
.hs-teaser-card:nth-child(5) { animation-delay: -1.8s; background: rgba(255,255,255,0.06); }
.hs-teaser-card:nth-child(6) { animation-delay: -3s; }
@keyframes teasercard {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.9; }
}
.hs-teaser-cta {
  position: absolute; bottom: 9px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: 999px;
  background: rgba(0,0,0,0.65); border: 1px solid rgba(255,255,255,0.10);
  font-family: var(--display); font-size: 11px; font-weight: 500;
  color: var(--ink-dim); backdrop-filter: blur(10px); white-space: nowrap;
  animation: ctabounce 2.6s ease-in-out infinite;
}
@keyframes ctabounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-5px); }
}


.foot-contact {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--display); font-size: 13px; font-weight: 500;
}
.foot-link {
  color: var(--ink-mute);
  transition: color .25s;
  letter-spacing: -0.005em;
}
.foot-link:hover { color: var(--ink); }




.sp-aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.sp-orb { position: absolute; border-radius: 50%; mix-blend-mode: screen; transform: translate(-50%,-50%); }
.sp-orb-1 {
  width: 900px; height: 900px; left: 34%; top: 22%;
  background: radial-gradient(circle, rgba(255,255,255,0.52), transparent 65%);
  filter: blur(82px); animation: sp-orb-a 9s ease-in-out infinite;
}
.sp-orb-2 {
  width: 650px; height: 650px; right: -2%; bottom: 8%;
  background: radial-gradient(circle, rgba(255,80,140,0.40), transparent 65%);
  filter: blur(72px); animation: sp-orb-b 12s ease-in-out infinite;
}
.sp-orb-3 {
  width: 1100px; height: 1100px; left: -8%; bottom: -22%;
  background: radial-gradient(circle, rgba(180,10,55,0.36), transparent 65%);
  filter: blur(90px); animation: sp-orb-c 15s ease-in-out infinite;
}
@keyframes sp-orb-a { 0%,100% { transform: translate(-50%,-50%); } 50% { transform: translate(-50%,-50%) translate(6vw,-5vh); } }
@keyframes sp-orb-b { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-5vw,8vh); } }
@keyframes sp-orb-c { 0%,100% { transform: translate(-50%,-50%); } 50% { transform: translate(-50%,-50%) translate(5vw,-4vh); } }


.sp-grid {
  position: absolute; inset: -10%; pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.046) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.046) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 48%, black 0%, transparent 68%);
  animation: sp-grid-scroll 5s linear infinite;
}
@keyframes sp-grid-scroll { to { transform: translate3d(0,58px,0); } }


.sp-scan {
  position: absolute; left: -20%; right: -20%; height: 2px; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--magenta), rgba(255,255,255,0.9) 50%, var(--magenta), transparent);
  box-shadow: 0 0 28px rgba(255,255,255,0.85);
  animation: sp-scan-move 3.5s ease-in-out infinite;
}
@keyframes sp-scan-move {
  0%,100% { top: 8vh; opacity: 0; }
  8%,92%  { opacity: 1; }
  50%     { top: 88vh; }
}


.sp-stage {
  position: absolute; inset: 0; z-index: 10;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(16px,3.2vh,42px) clamp(22px,3.8vw,68px);
}


.sp-bar {
  display: flex; align-items: center;
  justify-content: space-between; z-index: 20;
}
.sp-bar-logo {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: 999px;
  font-family: var(--display); font-weight: 900;
  font-size: 13px; letter-spacing: -0.025em; color: var(--ink);
}
.sp-bar-wordmark span { font-weight: 400; color: var(--ink-mute); }
.sp-bar-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-dim);
}


.sp-hero {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding-bottom: 5vh;
}


.sp-logo-wrap {
  position: relative;
  display: grid; place-items: center;
  width: 80px; height: 80px;
  animation: sp-in .9s cubic-bezier(.16,.84,.44,1) .10s both;
}

.sp-logo-halo {
  position: absolute;
  width: 220px; height: 220px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.50) 0%, rgba(255,255,255,0.14) 40%, transparent 68%);
  filter: blur(24px);
  animation: sp-halo-pulse 3.2s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
@keyframes sp-halo-pulse {
  0%,100% { opacity: 0.60; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 1.00; transform: translate(-50%,-50%) scale(1.24); }
}

.sp-logo-ring {
  position: absolute;
  width: 130px; height: 130px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.09);
  animation: sp-logo-ring-breathe 4s ease-in-out infinite;
  pointer-events: none; z-index: 1;
}
@keyframes sp-logo-ring-breathe {
  0%,100% { opacity: 0.35; transform: translate(-50%,-50%) scale(1);    border-color: rgba(255,255,255,0.09); }
  50%     { opacity: 0.85; transform: translate(-50%,-50%) scale(1.10); border-color: rgba(255,255,255,0.20); }
}

.sp-logo-wrap > img { position: relative; z-index: 2; animation: sp-logo-pulse 3.2s ease-in-out infinite; }
@keyframes sp-logo-pulse {
  0%,100% { filter: drop-shadow(0 0 10px rgba(255,255,255,0.50)) drop-shadow(0 0 28px rgba(255,255,255,0.22)); }
  50%     { filter: drop-shadow(0 0 18px rgba(255,255,255,0.90)) drop-shadow(0 0 48px rgba(255,255,255,0.40)); }
}

.sp-logo-wrap { cursor: pointer; }
.sp-logo-wrap:hover > img { animation-play-state: paused; filter: drop-shadow(0 0 22px rgba(255,255,255,.95)) drop-shadow(0 0 55px rgba(255,255,255,.5)); }
.sp-logo-wrap:hover .sp-logo-ring { border-color: rgba(255,255,255,.36); }
.sp-logo-wrap:hover .sp-logo-halo { opacity: 1 !important; }
.sp-logo-wrap:active > img { transform: scale(.94); transition: transform .12s; }


.sp-cursor-hint {
  position: relative;
  margin-top: 56px;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  cursor: pointer;
  animation: sp-cursor-in 1.1s cubic-bezier(.16,.84,.44,1) 1.1s both,
             sp-cursor-float 2.6s ease-in-out 2.2s infinite;
}
@keyframes sp-cursor-in {
  from { opacity: 0; transform: translateY(14px) scale(.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes sp-cursor-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}


.sp-cursor-arrow {
  position: relative; z-index: 4;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.55))
          drop-shadow(0 0 10px rgba(255,255,255,0.45));
  transform: rotate(-6deg);
}


.sp-cursor-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  transform: translate(-50%,-50%) scale(0);
  pointer-events: none; z-index: 1;
  animation: sp-cursor-ripple 2.4s cubic-bezier(.2,.7,.2,1) infinite;
}
.sp-cursor-ring-1 { animation-delay: 1.6s; }
.sp-cursor-ring-2 { animation-delay: 2.4s; }
.sp-cursor-ring-3 { animation-delay: 3.2s; }
@keyframes sp-cursor-ripple {
  0%   { transform: translate(-50%,-50%) scale(0.4); opacity: 0; border-color: rgba(255,255,255,0.85); }
  10%  { opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(3.2); opacity: 0; border-color: rgba(255,255,255,0.15); }
}


.sp-cursor-label {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  font-family: var(--display); font-size: 9px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  white-space: nowrap;
}
.sp-cursor-hint:hover { animation-play-state: paused; }
.sp-cursor-hint:hover .sp-cursor-arrow {
  transform: rotate(-6deg) scale(1.12);
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.7)) drop-shadow(0 0 16px rgba(255,255,255,0.7));
}


.sp-eyebrow {
  font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}


.sp-title {
  font-family: var(--display);
  font-size: clamp(50px, 9vw, 136px);
  line-height: 0.92; letter-spacing: -0.045em;
  font-weight: 900; margin: 0 0 20px; text-align: center;
}
.sp-title .wide { font-weight: 900; }
.sp-title .cond { font-weight: 900; letter-spacing: -0.06em; }
.sp-title .it   { font-weight: 300; }


.sp-sub {
  text-align: center; max-width: 560px;
  font-size: clamp(13px, 1.55vw, 17px); line-height: 1.68;
  color: var(--ink-dim); margin: 0 0 38px;
}
.sp-sub em { color: var(--ink); font-style: normal; font-weight: 600; }


.sp-cta {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 34px; border-radius: 999px;
  font-family: var(--display); font-size: 14px;
  font-weight: 700; letter-spacing: 0.02em; color: white; cursor: pointer; border: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04));
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.46),
    inset 0 -1px 0 rgba(0,0,0,0.22),
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 60px rgba(255,255,255,0.28),
    0 6px 20px rgba(0,0,0,0.32);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
  overflow: hidden;
}
.sp-cta > * { position: relative; z-index: 1; }
.sp-cta-bg {
  position: absolute; inset: -8px; border-radius: 999px; z-index: 0;
  background: radial-gradient(ellipse at 50% 115%, rgba(255,255,255,0.52), transparent 55%);
  filter: blur(14px); pointer-events: none;
}
.sp-cta::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px; padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.56), rgba(255,255,255,0.05), rgba(255,255,255,0.26));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.sp-cta:hover {
  transform: translateY(-3px) scale(1.022);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.52),
    inset 0 -1px 0 rgba(0,0,0,0.28),
    0 0 0 1px rgba(255,255,255,0.12),
    0 32px 80px rgba(255,255,255,0.40),
    0 8px 24px rgba(0,0,0,0.38);
}


.sp-stat {
  position: absolute; display: grid; gap: 3px;
  padding: 14px 18px; border-radius: 18px; pointer-events: none;
}
.sp-stat span {
  font-size: 9px; font-weight: 900; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--magenta);
}
.sp-stat b {
  font-family: var(--display); font-size: 14px;
  font-weight: 700; letter-spacing: -0.02em; color: var(--ink);
}
.sp-stat-a { left: clamp(16px,3.2vw,50px); top: 28vh; animation: sp-float-a 8s ease-in-out infinite; }
.sp-stat-b { right: clamp(16px,3.2vw,50px); top: 34vh; animation: sp-float-b 10s ease-in-out infinite; }
.sp-stat-c { left: clamp(16px,3.2vw,50px); bottom: 20vh; animation: sp-float-c 12s ease-in-out infinite; }
@keyframes sp-float-a { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes sp-float-b { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes sp-float-c { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }


.sp-mac {
  position: absolute; right: clamp(16px,4.2vw,68px); bottom: clamp(26px,5vh,54px);
  width: min(480px, 33vw);
  transform: perspective(1200px) rotateX(5deg) rotateY(-11deg) rotateZ(-1.5deg);
  filter: drop-shadow(0 32px 58px rgba(0,0,0,0.52));
  animation: sp-mac-float 7.5s ease-in-out infinite;
  pointer-events: none; z-index: 8;
}
.sp-mac-lid {
  position: relative; aspect-ratio: 16/10; padding: 11px 11px 18px;
  background: linear-gradient(148deg, #1e1e25, #0d0d12);
  border-radius: 18px 18px 6px 6px;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.13), 0 0 42px rgba(255,255,255,0.13);
}
.sp-mac-cam {
  position: absolute; left: 50%; top: 6px; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: #111; box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.sp-mac-screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 6px; overflow: hidden; background: #060609;
}
.sp-mac-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-mac-base {
  width: 90%; height: 15px; margin: 0 auto;
  background: linear-gradient(180deg, #d2d2d8, #686672);
  border-radius: 0 0 12px 12px;
  transform: perspective(200px) rotateX(54deg);
}
.sp-mac-glow {
  position: absolute; left: 5%; right: 5%; bottom: -30px; height: 48px;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,255,255,0.35), transparent 70%);
  filter: blur(20px);
}
@keyframes sp-mac-float {
  0%,100% { transform: perspective(1200px) rotateX(5deg) rotateY(-11deg) rotateZ(-1.5deg) translateY(0); }
  50%     { transform: perspective(1200px) rotateX(5deg) rotateY(-9deg)  rotateZ(-1deg)   translateY(-16px); }
}


.sp-kana {
  position: absolute; bottom: clamp(14px,2.8vh,30px); left: 50%;
  transform: translateX(-50%);
  font-family: "Noto Sans JP", var(--display); font-weight: 900;
  font-size: 11px; letter-spacing: 0.55em;
  color: rgba(255,255,255,0.055);
  user-select: none; pointer-events: none; white-space: nowrap; z-index: 5;
}




.sp-bloom {
  position: absolute; left: 50%; top: 50%;
  width: 90px; height: 90px; border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  background: radial-gradient(circle, rgba(255,255,255,0.92) 0%, rgba(140,6,42,0.80) 38%, rgba(7,6,10,0.95) 70%, transparent 100%);
  z-index: 9; pointer-events: none;
  will-change: transform, opacity;
}
.splash.blooming .sp-bloom {
  animation: sp-bloom 1.0s cubic-bezier(.42,0,.18,1) forwards;
}
@keyframes sp-bloom {
  0%   { transform: translate(-50%,-50%) scale(0);  opacity: .95; }
  22%  { opacity: 1; }
  65%  { transform: translate(-50%,-50%) scale(20); opacity: .88; }
  100% { transform: translate(-50%,-50%) scale(30); opacity: 0; }
}


.sp-center {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  transition: opacity .35s ease, transform .35s ease;
}
.splash.blooming .sp-center {
  opacity: 0; transform: scale(1.05);
}


.sp-wordmark {
  display: flex; align-items: baseline; gap: 9px;
  font-family: var(--display); font-weight: 900;
  font-size: clamp(34px, 5.5vw, 82px); letter-spacing: -0.04em;
  margin-top: 0; margin-bottom: 14px;
  animation: sp-in .9s cubic-bezier(.16,.84,.44,1) .35s both;
}
.sp-word-a { color: var(--ink); }
.sp-word-b { color: var(--ink-mute); font-weight: 400; }


.sp-tagline {
  font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-dim); margin: 0 0 42px;
  animation: sp-in .9s cubic-bezier(.16,.84,.44,1) .52s both;
}


.sp-enter {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 30px; border-radius: 999px; border: none; cursor: pointer;
  font-family: var(--display); font-size: 14px; font-weight: 700;
  letter-spacing: 0.015em; color: white;
  background: linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04));
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(0,0,0,0.20),
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 56px rgba(255,255,255,0.26),
    0 5px 16px rgba(0,0,0,0.28);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s;
  animation: sp-in .9s cubic-bezier(.16,.84,.44,1) .72s both;
  overflow: hidden;
}
.sp-enter::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px; padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.54), rgba(255,255,255,0.04), rgba(255,255,255,0.24));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.sp-enter-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: #e5e5e5; box-shadow: 0 0 9px #e5e5e5;
  animation: sp-dot-pulse 2s ease-in-out infinite;
}
@keyframes sp-dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .6; transform: scale(.78); }
}
.sp-enter:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.50),
    inset 0 -1px 0 rgba(0,0,0,0.24),
    0 0 0 1px rgba(255,255,255,0.12),
    0 28px 72px rgba(255,255,255,0.38),
    0 7px 22px rgba(0,0,0,0.36);
}


.sp-skip {
  position: fixed; right: 16px; top: 16px; z-index: 400;
  width: 36px; height: 36px; border-radius: 50%;
  opacity: 0; cursor: pointer; background: none; border: none;
}


@keyframes sp-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}


.sp-ring-mark { animation: sp-in .9s cubic-bezier(.16,.84,.44,1) .15s both, sp-pulse 3.2s ease-in-out 1.1s infinite; }


.splash:not(.running) .intro-copy {
  opacity: 0; pointer-events: none;
}
.splash.running {
  display: grid; place-items: center;
}
.splash.running .sp-stage {
  animation: sp-stage-exit .9s cubic-bezier(.42,0,.2,1) forwards;
  pointer-events: none;
}
@keyframes sp-stage-exit {
  0%   { opacity: 1; transform: scale(1);    filter: blur(0); }
  100% { opacity: 0; transform: scale(1.07); filter: blur(22px); }
}


.intro-copy {
  position: relative; z-index: 15; pointer-events: none;
  width: min(1180px, 88vw);
  display: grid; justify-items: start; gap: 0; color: var(--ink);
  min-height: clamp(240px, 36vw, 430px);
}
.intro-scene {
  grid-area: 1 / 1; width: 100%; align-self: center;
  display: grid; gap: 10px; opacity: 0; pointer-events: none;
}
.intro-line {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(64px, 11.8vw, 168px);
  line-height: .82; letter-spacing: -0.075em;
  text-shadow: 0 22px 90px rgba(0,0,0,0.45); color: var(--ink);
}
.intro-line-b,.intro-line-d,.intro-line-f,.intro-line-h {
  justify-self: end; font-weight: 300; font-style: italic;
  color: var(--magenta); filter: drop-shadow(0 0 28px rgba(255,255,255,0.32));
}
.intro-line-c,.intro-line-g { font-size: clamp(82px,15vw,210px); }
.intro-line-e { font-size: clamp(52px,9vw,128px); }

.intro-role {
  grid-area: 1 / 1; align-self: end; margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px;
  opacity: 0; transform: translateY(20px);
}
.intro-role span {
  padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  font-family: var(--display); font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.72);
}


.splash.running .intro-scene-1 { animation: intro-scene-1 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.splash.running .intro-scene-2 { animation: intro-scene-2 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.splash.running .intro-scene-3 { animation: intro-scene-3 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.splash.running .intro-scene-4 { animation: intro-scene-4 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.splash.running .intro-pills   { animation: intro-role    10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.splash.running .intro-scene-1 .intro-line:first-child,
.splash.running .intro-scene-2 .intro-line:first-child,
.splash.running .intro-scene-3 .intro-line:first-child,
.splash.running .intro-scene-4 .intro-line:first-child { animation: intro-line-left  10.8s cubic-bezier(.2,.8,.2,1) forwards; }
.splash.running .intro-scene-1 .intro-line:last-child,
.splash.running .intro-scene-2 .intro-line:last-child,
.splash.running .intro-scene-3 .intro-line:last-child,
.splash.running .intro-scene-4 .intro-line:last-child  { animation: intro-line-right 10.8s cubic-bezier(.2,.8,.2,1) forwards; }

@keyframes intro-scene-1 {
  0%,4%    { opacity:0; transform:scale(.96); filter:blur(12px); }
  8%,22%   { opacity:1; transform:scale(1);   filter:blur(0); }
  28%,100% { opacity:0; transform:scale(1.06); filter:blur(14px); }
}
@keyframes intro-scene-2 {
  0%,24%   { opacity:0; transform:translateY(30px) scale(.96); filter:blur(14px); }
  31%,45%  { opacity:1; transform:translateY(0) scale(1);      filter:blur(0); }
  52%,100% { opacity:0; transform:translateY(-28px) scale(1.06); filter:blur(14px); }
}
@keyframes intro-scene-3 {
  0%,48%   { opacity:0; transform:translateX(-28px) scale(.98); filter:blur(14px); }
  55%,69%  { opacity:1; transform:translateX(0) scale(1);       filter:blur(0); }
  76%,100% { opacity:0; transform:translateX(28px) scale(1.06); filter:blur(14px); }
}
@keyframes intro-scene-4 {
  0%,72%  { opacity:0; transform:scale(.94); filter:blur(18px); }
  80%,91% { opacity:1; transform:scale(1);   filter:blur(0); }
  100%    { opacity:0; transform:scale(1.16); filter:blur(18px); }
}
@keyframes intro-line-left  {
  0%,100%{ transform:translateX(0); }
  18%{ transform:translateX(-8px); } 44%{ transform:translateX(10px); }
  66%{ transform:translateX(-6px); } 88%{ transform:translateX(0) scale(1.02); }
}
@keyframes intro-line-right {
  0%,100%{ transform:translateX(0); }
  18%{ transform:translateX(8px); } 44%{ transform:translateX(-10px); }
  66%{ transform:translateX(6px); } 88%{ transform:translateX(0) scale(1.02); }
}
@keyframes intro-role {
  0%,76%  { opacity:0; transform:translateY(18px); filter:blur(10px); }
  82%,92% { opacity:1; transform:translateY(0);    filter:blur(0); }
  100%    { opacity:0; transform:translateY(-18px); filter:blur(8px); }
}


.intro-mark {
  position: absolute; right: 7vw; bottom: 7vh; z-index: 20;
  opacity: 0; transform: scale(.75) rotate(-18deg); pointer-events: none;
}
.splash.running .intro-mark { animation: intro-mark 10.8s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes intro-mark {
  0%,74%  { opacity:0; transform:scale(.75) rotate(-18deg); }
  82%,93% { opacity:.9; transform:scale(1) rotate(0); }
  100%    { opacity:0; transform:scale(1.7) rotate(45deg); filter:blur(10px); }
}


.intro-skip {
  position: fixed; right: 18px; top: 18px; z-index: 400;
  width: 34px; height: 34px; border-radius: 50%; opacity: 0; cursor: pointer;
}


@media (max-width: 900px) {
  .sp-mac  { display: none; }
  .sp-stat { display: none; }
}
@media (max-width: 760px) {
  .sp-title { font-size: clamp(42px,13.5vw,76px); }
  .sp-sub br { display: none; }
  .intro-line { font-size: clamp(52px,17vw,82px); }
  .intro-role { gap: 8px; }
  .intro-role span { font-size: 9px; padding: 8px 10px; }
}


.grid-patch {
  position: absolute;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.052) 1px, transparent 1px);
  background-size: 38px 38px;
  z-index: 1;
  opacity: 0.55;
}


.grid-patch-tr {
  top: 80px; right: -50px;
  width: 380px; height: 380px;
  mask-image: radial-gradient(circle at 75% 25%, black, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 75% 25%, black, transparent 65%);
}


.grid-patch-bl {
  bottom: -40px; left: -60px;
  width: 320px; height: 320px;
  mask-image: radial-gradient(circle at 30% 70%, black, transparent 60%);
  -webkit-mask-image: radial-gradient(circle at 30% 70%, black, transparent 60%);
  opacity: 0.4;
}


.grid-patch-marquee {
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 100%;
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, transparent, black 30%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 30%, black 70%, transparent);
  opacity: 0.30;
}


.grid-patch-services {
  top: 60px; right: 40px;
  width: 280px; height: 280px;
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 80% 20%, black, transparent 60%);
  -webkit-mask-image: radial-gradient(circle at 80% 20%, black, transparent 60%);
  opacity: 0.42;
}


.grid-patch-showcase {
  bottom: 100px; left: -30px;
  width: 340px; height: 340px;
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 25% 75%, black, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 25% 75%, black, transparent 65%);
  opacity: 0.45;
}

@media (max-width: 760px) {
  .grid-patch-tr, .grid-patch-bl, .grid-patch-services, .grid-patch-showcase {
    width: 200px; height: 200px;
  }
  .grid-patch-marquee { width: 100%; }
}


.pricing-section { position: relative; padding-top: 140px; padding-bottom: 100px; }
.grid-patch-pricing {
  top: 80px; left: -40px;
  width: 360px; height: 360px;
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 20% 30%, black, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 20% 30%, black, transparent 65%);
  opacity: 0.42;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
  align-items: stretch;
}
.price-grid > .reveal { display: flex; }

.price-card {
  position: relative;
  display: flex; flex-direction: column;
  width: 100%; padding: 28px 26px 28px;
  border-radius: 22px;
  isolation: isolate;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s, box-shadow .4s;
}
.price-card:hover { transform: translateY(-6px); }


.price-card-pop {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.15), transparent 70%),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.018));
  border: 1px solid rgba(255,255,255,0.35) !important;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(255,255,255,0.18),
    inset 0 1px 0 rgba(255,255,255,0.10);
  transform: translateY(-12px);
}
.price-card-pop:hover { transform: translateY(-18px); }

.price-card-tag-pop {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  padding: 5px 12px;
  background: var(--magenta);
  color: white;
  font-family: var(--display); font-size: 9.5px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255,255,255,0.45);
  z-index: 5;
}


.price-card-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.price-card-code {
  position: relative;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: var(--magenta);
  padding: 7px 12px 7px 14px;
  letter-spacing: 0.20em;
  background: none; border: none; border-radius: 0;
  align-self: flex-start;
}
.price-card-code::before, .price-card-code::after {
  content: ""; position: absolute;
  width: 8px; height: 8px;
}
.price-card-code::before {
  top: 0; left: 0;
  border-top: 1.5px solid var(--magenta);
  border-left: 1.5px solid var(--magenta);
}
.price-card-code::after {
  bottom: 0; right: 0;
  border-bottom: 1.5px solid var(--magenta);
  border-right: 1.5px solid var(--magenta);
}

.price-card-pop .price-card-code { color: var(--ink); }
.price-card-pop .price-card-code::before, .price-card-pop .price-card-code::after {
  border-color: rgba(255,255,255,0.55);
}
.price-card-label {
  display: block;
  font-family: var(--display); font-size: 19px; font-weight: 800;
  letter-spacing: -0.015em; color: var(--ink);
}
.price-card-tag {
  display: block;
  font-family: var(--display); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-top: 2px;
}


.price-card-price {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--display);
  margin-bottom: 6px;
}
.price-card-currency {
  font-size: 22px; font-weight: 700; color: rgba(255,255,255,0.45);
  margin-right: 2px;
}
.price-card-num {
  font-size: clamp(50px, 5vw, 68px); font-weight: 900;
  letter-spacing: -0.05em; line-height: 1;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.price-card-pop .price-card-num {
  background: linear-gradient(135deg, #ffffff, #ffc4d8 60%, var(--magenta));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-card-dash {
  font-size: 36px; color: rgba(255,255,255,0.30); font-weight: 300;
  margin: 0 4px;
}
.price-card-num-max { font-size: clamp(38px, 4vw, 52px); }

.price-card-suffix {
  display: block;
  font-family: var(--display); font-size: 11px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 22px;
}


.price-card-desc {
  font-size: 13.5px; line-height: 1.55; color: var(--ink-dim);
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  min-height: 62px;
}


.price-card-feat {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 11px;
  flex: 1;
}
.price-card-feat li {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--display); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.78); letter-spacing: -0.005em;
}
.price-card-check {
  width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--magenta);
  display: grid; place-items: center;
}
.price-card-pop .price-card-check {
  background: var(--magenta);
  color: white;
  border-color: var(--magenta);
  box-shadow: 0 0 10px rgba(255,255,255,0.35);
}


.price-card-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  font-family: var(--display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.02em; color: var(--ink);
  transition: all .28s;
  cursor: pointer;
}
.price-card-cta:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.price-card-cta-pop {
  background: linear-gradient(135deg, var(--magenta), #d4d4d4);
  border-color: rgba(255,255,255,0.7);
  color: white;
  box-shadow: 0 14px 36px rgba(255,255,255,0.40);
}
.price-card-cta-pop:hover {
  background: linear-gradient(135deg, #d4d4d4, var(--magenta));
  box-shadow: 0 18px 48px rgba(255,255,255,0.55);
}


.price-foot {
  text-align: center; margin-top: 40px;
  font-family: var(--display); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.55); letter-spacing: -0.005em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.price-foot-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--magenta); box-shadow: 0 0 10px var(--magenta);
  animation: pulse 1.8s ease-in-out infinite;
}
.price-foot a { color: var(--ink); border-bottom: 1px solid rgba(255,255,255,0.6); }
.price-foot a:hover { color: var(--magenta); }

@media (max-width: 980px) {
  .price-grid { grid-template-columns: 1fr; gap: 14px; }
  .price-card-pop { transform: none; }
  .price-card-pop:hover { transform: translateY(-6px); }
}


.cta-final {
  position: relative;
  padding: 130px 0 200px;
  text-align: center;
  overflow: hidden;
}
.cta-final .container { text-align: center; }

.grid-patch-cta-tr {
  top: 60px; right: -50px;
  width: 380px; height: 380px;
  mask-image: radial-gradient(circle at 75% 30%, black, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 75% 30%, black, transparent 65%);
  opacity: 0.45;
}
.grid-patch-cta-bl {
  bottom: -40px; left: -60px;
  width: 340px; height: 340px;
  mask-image: radial-gradient(circle at 25% 75%, black, transparent 60%);
  -webkit-mask-image: radial-gradient(circle at 25% 75%, black, transparent 60%);
  opacity: 0.35;
}

.cta-final-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(56px, 9vw, 148px);
  line-height: 1.02; letter-spacing: -0.048em;
  margin: 28px auto 26px;
  max-width: 1180px;
  padding: 0.06em 0;
}
.cta-final-sub {
  font-size: 17px; line-height: 1.6;
  color: var(--ink-dim); letter-spacing: -0.005em;
  max-width: 600px; margin: 0 auto 36px;
}
.cta-final-sub .em { color: var(--ink); font-weight: 600; }
.cta-final .hero-actions { justify-content: center; }


.cta-notifs {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
}
.cta-notif {
  position: absolute;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  pointer-events: auto;
  animation: cta-notif-float 6s ease-in-out infinite;
  font-family: var(--display);
}
.cta-notif-body { display: flex; flex-direction: column; gap: 2px; }
.cta-notif-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.cta-notif-val {
  font-size: 12.5px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}
.cta-notif-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #e5e5e5; box-shadow: 0 0 12px #e5e5e5;
  animation: pulse 1.6s ease-in-out infinite;
}
.cta-notif svg { color: var(--magenta); flex-shrink: 0; }
.cta-notif-num {
  font-family: var(--display); font-weight: 900;
  font-size: 26px; letter-spacing: -0.04em; line-height: 1;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.cta-notif-pct { font-size: 0.55em; color: var(--magenta); margin-left: 2px; }


.cta-notif-1 { top: 16%;  left:  8%;  animation-delay: 0s;  }
.cta-notif-2 { top: 14%;  right: 9%;  animation-delay: -2s; }
.cta-notif-3 { bottom: 22%; left: 12%; animation-delay: -1s; }
.cta-notif-4 { bottom: 18%; right: 11%; animation-delay: -3s; }

@keyframes cta-notif-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

@media (max-width: 1100px) {
  .cta-notif-1, .cta-notif-2, .cta-notif-3, .cta-notif-4 { display: none; }
  .cta-final { padding: 100px 0 130px; }
}


.ctav3 {
  position: relative; border-radius: 28px; overflow: hidden;
  min-height: 760px; padding: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.10), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.040), rgba(255,255,255,0.008));
  border: 1px solid rgba(255,255,255,0.10);
  isolation: isolate; cursor: pointer;
  transition: border-color .4s, transform .4s;
  display: flex; flex-direction: column;
}
.ctav3-hot { border-color: rgba(255,255,255,0.32); transform: translateY(-2px); }


.ctav3-bg-spotlight {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle 620px at var(--mx,50%) var(--my,50%), rgba(255,255,255,.16), transparent 55%);
  opacity: 0; transition: opacity .5s;
}
.ctav3-hot .ctav3-bg-spotlight { opacity: 1; }


.ctav3-bg-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 95% 85% at 60% 50%, black, transparent 75%);
}


.ctav3-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 50%, rgba(0,0,0,0.4) 100%);
}


.ctav3-scanline {
  position: absolute; left: 0; right: 0; height: 1.5px; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65) 20%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.65) 80%, transparent);
  box-shadow: 0 0 22px rgba(255,255,255,.55);
  animation: ctav3-scan 6s ease-in-out infinite; opacity: 0;
}
@keyframes ctav3-scan {
  0%,100% { top: 5%; opacity: 0; }
  8%,82%  { opacity: .65; }
  50%     { top: 92%; }
}


.ctav3-corner {
  position: absolute; width: 22px; height: 22px;
  border-style: solid; border-color: rgba(255,255,255,.5);
  pointer-events: none; z-index: 3;
  transition: width .35s, height .35s, border-color .35s;
}
.ctav3-corner.tl { top: 16px; left: 16px; border-width: 1.5px 0 0 1.5px; border-radius: 3px 0 0 0; }
.ctav3-corner.tr { top: 16px; right: 16px; border-width: 1.5px 1.5px 0 0; border-radius: 0 3px 0 0; }
.ctav3-corner.bl { bottom: 16px; left: 16px; border-width: 0 0 1.5px 1.5px; border-radius: 0 0 0 3px; }
.ctav3-corner.br { bottom: 16px; right: 16px; border-width: 0 1.5px 1.5px 0; border-radius: 0 0 3px 0; }
.ctav3-hot .ctav3-corner { width: 30px; height: 30px; border-color: rgba(255,255,255,.9); }

.ctav3-track {
  position: absolute; transform: translate(-50%,-50%);
  pointer-events: none; z-index: 9;
  opacity: 0; transition: opacity .3s;
  mix-blend-mode: screen;
}
.ctav3-track.on { opacity: 1; }


.ctav3-header {
  position: relative; z-index: 5;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 36px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: var(--display); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.ctav3-hbar { display: inline-flex; align-items: center; gap: 12px; }
.ctav3-hbar-strong { color: rgba(255,255,255,.85); }
.ctav3-sep { color: rgba(255,255,255,.55); }
.ctav3-clock { color: var(--magenta); font-variant-numeric: tabular-nums; }


.ctav3-grid {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  padding: 60px 56px 40px;
  flex: 1;
}


.ctav3-left { display: flex; flex-direction: column; }
.ctav3-eyebrow {
  display: inline-flex; align-items: center;
  font-family: var(--display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 18px;
}

.ctav3-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(56px, 7.8vw, 116px);
  line-height: .88; letter-spacing: -.048em; margin: 0 0 26px;
}
.ctav3-title.glitching .chrome {
  animation: ctav3-glitch .32s steps(4) both;
}
@keyframes ctav3-glitch {
  0%   { transform: translate(0); }
  20%  { transform: translate(-4px, 1px); filter: brightness(1.6) hue-rotate(-12deg); }
  40%  { transform: translate(4px, -2px); }
  60%  { transform: translate(-2px, 2px); }
  80%  { transform: translate(3px, -1px); filter: brightness(1.3); }
  100% { transform: translate(0); filter: none; }
}

.ctav3-lead {
  font-size: 16.5px; line-height: 1.60; color: var(--ink-dim);
  letter-spacing: -.005em; margin: 0 0 36px; max-width: 540px;
}
.ctav3-lead .em { color: var(--ink); font-weight: 600; }

.ctav3-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.ctav3-cta { padding: 16px 32px !important; font-size: 15px !important; gap: 12px !important; }
.ctav3-cta-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: #e5e5e5; box-shadow: 0 0 10px #e5e5e5;
  animation: sp-dot-pulse 2s ease-in-out infinite;
}


.ctav3-stats {
  display: flex; align-items: stretch; gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.ctav3-stat { display: flex; flex-direction: column; gap: 4px; }
.ctav3-stat-num {
  font-family: var(--display); font-size: clamp(28px, 3vw, 38px); font-weight: 900;
  letter-spacing: -.04em; line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.ctav3-stat-pct { font-size: 0.6em; color: var(--magenta); margin-left: 2px; }
.ctav3-stat-label {
  font-family: var(--display); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.ctav3-stat-sep { width: 1px; background: rgba(255,255,255,.08); align-self: stretch; }


.ctav3-right {
  position: relative;
  display: flex; flex-direction: column; gap: 28px;
}


.ctav3-mark {
  position: absolute; right: -10px; top: -20px;
  pointer-events: none; z-index: 0;
  display: grid; place-items: center;
  width: 150px; height: 150px;
  opacity: .14; transition: opacity .5s;
}
.ctav3-hot .ctav3-mark { opacity: .24; }
.ctav3-mring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.ctav3-mring.r1 { width: 220px; height: 220px; animation: ctav3-ring 3.2s ease-in-out infinite; }
.ctav3-mring.r2 { width: 300px; height: 300px; animation: ctav3-ring 3.2s ease-in-out infinite .55s; border-color: rgba(255,255,255,.30); }
.ctav3-mring.r3 { width: 390px; height: 390px; animation: ctav3-ring 3.2s ease-in-out infinite 1.1s; border-color: rgba(255,255,255,.12); }
@keyframes ctav3-ring {
  0%,100% { opacity: .5; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 1;  transform: translate(-50%,-50%) scale(1.04); }
}


.ctav3-pipeline {
  position: relative; z-index: 2;
  padding: 22px;
  border-radius: 16px;
  background: rgba(10,8,16,0.55);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ctav3-pipeline-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}
.ctav3-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--magenta); box-shadow: 0 0 10px var(--magenta);
  animation: pulse 1.6s ease-in-out infinite;
}
.ctav3-pipeline-loop {
  margin-left: auto;
  color: rgba(255,255,255,.32);
  font-size: 9.5px; letter-spacing: 0.12em;
}
.ctav3-steps { display: flex; flex-direction: column; gap: 12px; }
.ctav3-step {
  display: grid; grid-template-columns: auto 1fr 60px;
  align-items: center; gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.015);
  transition: background .35s, border-color .35s, transform .35s;
}
.ctav3-step.on {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.35);
  transform: translateX(4px);
}
.ctav3-step.done { border-color: rgba(255,255,255,.12); }
.ctav3-step-num {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.32); letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.ctav3-step.on .ctav3-step-num { color: var(--magenta); }
.ctav3-step-body { display: flex; flex-direction: column; gap: 2px; }
.ctav3-step-lbl {
  font-family: var(--display); font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.85); letter-spacing: -.005em;
}
.ctav3-step-desc {
  font-family: var(--display); font-size: 10.5px; font-weight: 500;
  color: rgba(255,255,255,.40); letter-spacing: -.005em;
}
.ctav3-step-bar {
  position: relative;
  height: 3px; width: 60px;
  background: rgba(255,255,255,.06); border-radius: 999px; overflow: hidden;
}
.ctav3-step-bar i {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--magenta), #d4d4d4);
  border-radius: 999px;
  transition: width .4s ease;
}
.ctav3-step.on .ctav3-step-bar i { width: 100%; transition: width 2s linear; }
.ctav3-step.done .ctav3-step-bar i { width: 100%; opacity: .35; }


.ctav3-tags { display: flex; gap: 22px; flex-wrap: wrap; }
.ctav3-tag {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.30);
}
.ctav3-tlabel { color: rgba(255,255,255,.48); }
.ctav3-tbar {
  width: 56px; height: 2px; background: rgba(255,255,255,.08); border-radius: 1px; overflow: hidden;
}
.ctav3-tbar i {
  display: block; height: 100%; background: var(--magenta); border-radius: 1px;
  transform-origin: left; will-change: transform;
  animation: ctav3-bar 1.6s cubic-bezier(.2,.8,.2,1) both;
}
.ctav3-tag:nth-child(2) .ctav3-tbar i { animation-delay: .18s; }
.ctav3-tag:nth-child(3) .ctav3-tbar i { animation-delay: .36s; }
@keyframes ctav3-bar { from { transform: scaleX(0); } to { transform: scaleX(1); } }


.ctav3-marquee {
  position: relative; z-index: 5;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(7,6,10,0.45);
  padding: 14px 0; overflow: hidden;
}
.ctav3-marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ctav3-marquee 38s linear infinite;
  font-family: var(--display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.40);
}
.ctav3-marquee-content { display: inline-flex; gap: 20px; padding-right: 20px; flex-shrink: 0; align-items: center; }
.ctav3-marquee-content > span { flex-shrink: 0; }
.ctav3-mdot { color: var(--magenta); font-size: 6px; }
@keyframes ctav3-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


@media (max-width: 1024px) {
  .ctav3 { min-height: 0; }
  .ctav3-grid { grid-template-columns: 1fr; gap: 36px; padding: 44px 32px 30px; }
  .ctav3-mark { display: none; }
  .ctav3-stats { gap: 22px; }
}
@media (max-width: 700px) {
  .ctav3 { border-radius: 22px; }
  .ctav3-header { padding: 16px 22px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .ctav3-hbar-right { font-size: 9px; }
  .ctav3-grid { padding: 36px 22px 26px; gap: 28px; }
  .ctav3-title { font-size: clamp(44px, 13vw, 72px); }
  .ctav3-stats { flex-wrap: wrap; gap: 16px; }
  .ctav3-stat-sep { display: none; }
  .ctav3-tags { gap: 14px; }
  .ctav3-marquee { padding: 11px 0; font-size: 10px; }
}


.ctav2 {
  position: relative; border-radius: 28px; overflow: hidden;
  min-height: 500px; padding: 72px 80px;
  background: linear-gradient(135deg, rgba(255,255,255,0.036), rgba(255,255,255,0.010));
  border: 1px solid rgba(255,255,255,0.08);
  isolation: isolate; cursor: pointer;
  transition: border-color .4s;
}
.ctav2-hot { border-color: rgba(255,255,255,0.22); }


.ctav2-bg-spotlight {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle 520px at var(--mx,50%) var(--my,50%), rgba(255,255,255,.14), transparent 55%);
  opacity: 0; transition: opacity .5s;
}
.ctav2-hot .ctav2-bg-spotlight { opacity: 1; }


.ctav2-bg-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.038) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 80% at 65% 50%, black, transparent 72%);
}


.ctav2-scanline {
  position: absolute; left: 0; right: 0; height: 1.5px; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65) 20%, rgba(255,255,255,.85) 50%, rgba(255,255,255,.65) 80%, transparent);
  box-shadow: 0 0 18px rgba(255,255,255,.55);
  animation: ctav2-scan 6s ease-in-out infinite; opacity: 0;
}
@keyframes ctav2-scan {
  0%,100% { top: 4%; opacity: 0; }
  8%,82%  { opacity: .65; }
  50%     { top: 92%; }
}


.ctav2-corner {
  position: absolute; width: 16px; height: 16px;
  border-style: solid; border-color: rgba(255,255,255,.45);
  pointer-events: none; z-index: 2;
  transition: width .35s, height .35s, border-color .35s;
}
.ctav2-corner.tl { top: 18px; left: 18px; border-width: 1.5px 0 0 1.5px; border-radius: 3px 0 0 0; }
.ctav2-corner.tr { top: 18px; right: 18px; border-width: 1.5px 1.5px 0 0; border-radius: 0 3px 0 0; }
.ctav2-corner.bl { bottom: 18px; left: 18px; border-width: 0 0 1.5px 1.5px; border-radius: 0 0 0 3px; }
.ctav2-corner.br { bottom: 18px; right: 18px; border-width: 0 1.5px 1.5px 0; border-radius: 0 0 3px 0; }
.ctav2-hot .ctav2-corner { width: 24px; height: 24px; border-color: rgba(255,255,255,.85); }

.ctav2-track {
  position: absolute; transform: translate(-50%,-50%);
  pointer-events: none; z-index: 8;
  opacity: 0; transition: opacity .3s;
  mix-blend-mode: screen;
}
.ctav2-track.on { opacity: 1; }

.ctav2-mark {
  position: absolute; right: 52px; top: 50%; transform: translateY(-50%);
  pointer-events: none; z-index: 1;
  display: grid; place-items: center;
  width: 200px; height: 200px;
  opacity: .10; transition: opacity .5s;
}
.ctav2-hot .ctav2-mark { opacity: .20; }
.ctav2-mring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.ctav2-mring.r1 { width: 270px; height: 270px; animation: ctav2-ring 3.2s ease-in-out infinite; }
.ctav2-mring.r2 { width: 360px; height: 360px; animation: ctav2-ring 3.2s ease-in-out infinite .55s; border-color: rgba(255,255,255,.30); }
.ctav2-mring.r3 { width: 460px; height: 460px; animation: ctav2-ring 3.2s ease-in-out infinite 1.1s; border-color: rgba(255,255,255,.12); }
@keyframes ctav2-ring {
  0%,100% { opacity: .5; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 1;  transform: translate(-50%,-50%) scale(1.04); }
}


.ctav2-body { position: relative; z-index: 5; max-width: 580px; }


.ctav2-status {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 22px;
}
.ctav2-sep { color: var(--magenta); }


.ctav2-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(52px, 7.5vw, 102px);
  line-height: .90; letter-spacing: -.046em; margin: 0 0 26px;
}
.ctav2-title.glitching .chrome {
  animation: ctav2-glitch .32s steps(4) both;
}
@keyframes ctav2-glitch {
  0%   { transform: translate(0); }
  20%  { transform: translate(-4px, 1px); filter: brightness(1.5) hue-rotate(-10deg); }
  40%  { transform: translate(4px, -2px); }
  60%  { transform: translate(-2px, 2px); }
  80%  { transform: translate(3px, -1px); filter: brightness(1.2); }
  100% { transform: translate(0); filter: none; }
}


.ctav2-lead {
  font-size: 16px; line-height: 1.58; color: var(--ink-dim);
  letter-spacing: -.005em; margin: 0 0 38px; max-width: 500px;
}


.ctav2-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.ctav2-cta { padding: 16px 32px !important; font-size: 15px !important; gap: 12px !important; }
.ctav2-cta-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: #e5e5e5; box-shadow: 0 0 10px #e5e5e5;
  animation: sp-dot-pulse 2s ease-in-out infinite;
}


.ctav2-tags { display: flex; gap: 22px; flex-wrap: wrap; }
.ctav2-tag {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.28);
}
.ctav2-tlabel { color: rgba(255,255,255,.45); }
.ctav2-tbar {
  width: 50px; height: 2px; background: rgba(255,255,255,.08); border-radius: 1px; overflow: hidden;
}
.ctav2-tbar i {
  display: block; height: 100%; background: var(--magenta); border-radius: 1px;
  transform-origin: left; will-change: transform;
  animation: ctav2-bar 1.6s cubic-bezier(.2,.8,.2,1) both;
}
.ctav2-tag:nth-child(2) .ctav2-tbar i { animation-delay: .18s; }
.ctav2-tag:nth-child(3) .ctav2-tbar i { animation-delay: .36s; }
@keyframes ctav2-bar { from { transform: scaleX(0); } to { transform: scaleX(1); } }


@media (max-width: 960px) {
  .ctav2 { padding: 52px 40px; }
  .ctav2-mark { opacity: .06; right: 20px; }
}
@media (max-width: 700px) {
  .ctav2 { padding: 44px 24px 52px; min-height: 0; }
  .ctav2-mark { display: none; }
  .ctav2-title { font-size: clamp(44px, 13vw, 72px); }
}


@media (prefers-reduced-motion: reduce) {
  .bg-grid-scoped,
  .marquee-track,
  .particle-field span,
  .hf-tl, .hf-tr, .hf-ml, .hf-mr, .hf-bl, .hf-br,
  .mb-scanline,
  .intro-cover,
  .intro-bloom {
    animation: none !important;
  }
  .shader-scene .so { filter: blur(40px) !important; }
}
@media (hover: none), (pointer: coarse) {
  .glass .sheen::after { animation: none !important; }
}


html.is-chromium {
  scroll-behavior: auto;
}

html.is-chromium * {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html.is-chromium .bg-scene {
  background:
    radial-gradient(ellipse 85% 65% at 15% 18%, rgba(255, 255, 255, 0.06), transparent 62%),
    radial-gradient(ellipse 70% 55% at 85% 22%, rgba(200, 200, 200, 0.04), transparent 58%),
    var(--figma-canvas);
}

html.is-chromium .bg-scene::after,
html.is-chromium .shader-scene,
html.is-chromium .particle-field {
  display: none !important;
}

html.is-chromium .bg-grid-scoped {
  animation: none !important;
  opacity: 0.55;
}

html.is-chromium .glass,
html.is-chromium .showroom-lightbox,
html.is-chromium .nav.glass,
html.is-chromium .hero-eyebrow.glass,
html.is-chromium .btn-ghost.glass {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  isolation: auto;
  background: linear-gradient(135deg, rgba(28, 22, 30, 0.88) 0%, rgba(14, 11, 18, 0.82) 100%) !important;
}

html.is-chromium .glass::before,
html.is-chromium .glass::after,
html.is-chromium .glass .sheen {
  display: none !important;
}

html.is-chromium .glass:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 40px rgba(0, 0, 0, 0.35) !important;
}

html.is-chromium .marquee-track {
  animation: none !important;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  gap: 20px 32px;
  padding: 0 24px;
}

html.is-chromium .fan-stage {
  perspective: none !important;
}

html.is-chromium .fan-track {
  transform-style: flat !important;
}

html.is-chromium .fan-stage::before,
html.is-chromium .fan-track::after,
html.is-chromium .fan-section::before {
  display: none !important;
}

html.is-chromium .fan-card {
  transition: transform 0.35s ease, opacity 0.35s ease !important;
}

html.is-chromium .fan-card:hover,
html.is-chromium .fan-card:focus-visible {
  filter: none !important;
}

html.is-chromium .fan-card.active {
  animation: none !important;
}

html.is-chromium .fan-card-inner::before {
  animation: none !important;
  display: none !important;
}

html.is-chromium .mb-glow,
html.is-chromium .mb-float,
html.is-chromium .mb-screen::after,
html.is-chromium .mb-scanline {
  animation: none !important;
}

html.is-chromium .mb-float {
  transform: none !important;
}

html.is-chromium .mb-glow {
  filter: none !important;
  opacity: 0.5;
}

html.is-chromium .mb-scanline {
  display: none !important;
}

html.is-chromium .hero-mb-wrap {
  perspective: none !important;
}

html.is-chromium .hf-tl,
html.is-chromium .hf-tr,
html.is-chromium .hf-ml,
html.is-chromium .hf-mr,
html.is-chromium .hf-bl,
html.is-chromium .hf-br {
  animation: none !important;
}

html.is-chromium .intro-bloom {
  animation-duration: 0.7s !important;
}

html.is-chromium .intro-cover {
  animation-duration: 0.85s !important;
}

html.is-chromium [style*="will-change"],
html.is-chromium .so,
html.is-chromium .intro-cover,
html.is-chromium .intro-bloom {
  will-change: auto !important;
}

html.is-chromium .fsc-scroll {
  will-change: auto !important;
}

html.is-chromium .live-dot,
html.is-chromium .cta-notif,
html.is-chromium .cta-notif-1,
html.is-chromium .cta-notif-2,
html.is-chromium .cta-notif-3,
html.is-chromium .cta-notif-4,
html.is-chromium .cta-notif-dot,
html.is-chromium .show-pill-dot,
html.is-chromium .price-foot-dot,
html.is-chromium .mb-tag,
html.is-chromium .mb-shadow,
html.is-chromium .mb-screen::after,
html.is-chromium .bar > i,
html.is-chromium .fsc-hint-mouse span,
html.is-chromium .fan-card.active,
html.is-chromium .fan-card-inner::before,
html.is-chromium .sfx-bars i,
html.is-chromium .splash-reticle img,
html.is-chromium .console-scope .reticle {
  animation: none !important;
}

html.is-chromium .reveal {
  transform: none !important;
  will-change: auto !important;
  transition: opacity .35s ease-out !important;
}
html.is-chromium .reveal.in {
  transform: none !important;
}

html.is-chromium .glass {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35) !important;
}
html.is-chromium .glass:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45) !important;
}

html.is-chromium .show-fsc-big:hover {
  transform: none !important;
}
html.is-chromium .show-fsc-glow {
  display: none !important;
}

html.is-chromium .fan-card {
  transition: none !important;
}

html.is-chromium .fan-section,
html.is-chromium #showcase {
  contain: paint;
}
