

:root {
  --bg: #ffffff;
  --bg-dark: #000000;
  --bg-off: #f5f5f7;
  --bg-card: #ffffff;
  --surface: #fafafa;
  --border: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.12);
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --text-light: #f5f5f7;
  --accent: #c41e1e;
  --accent-soft: rgba(196, 30, 30, 0.08);
  --accent-glow: rgba(196, 30, 30, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100vw - 48px));
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html.lenis, html.lenis body {
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h4 {
  font-size: 22px !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #e53935);
  z-index: 9999;
  width: 0%;
  transition: none;
}

.white {
  color: #fff !important;
}

.black {
  color: #000000 !important;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 1000;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    color 0.3s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
}

.nav.menu-active {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.nav.scrolled .nav-links a {
  color: var(--text);
}

.nav.scrolled .nav-cta {
  color: var(--accent);
}

.nav.scrolled .nav-hamburger span {
  background: var(--text);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-brand {
  z-index: 1001;
}

.nav-logo {
  height: clamp(32px, 4vw, 48px);
  width: auto;
  transition: filter 0.3s;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active {
  color: var(--accent);
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.01em;
  transition: opacity 0.3s;
}

.nav-cta:hover {
  opacity: 0.7;
}

.nav-cta-mobile {
  display: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}

.nav-hamburger span {
  width: 20px;
  height: 1.5px;
  background: #e7e7e7;
  transition: all 0.3s;
}

.textw {
  color: #eaeaea !important;
}

@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(8, 8, 10, 0.6);
    backdrop-filter: blur(10px) saturate(125%);
    -webkit-backdrop-filter: blur(10px) saturate(125%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.125rem;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    min-width: min(92vw, 360px);
    text-align: center;
    padding: 14px 18px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .nav-cta {
    display: none;
  }

  .nav-links a.nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff !important;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 12px;
    min-width: min(92vw, 360px);
    text-align: center;
    padding: 14px 18px;
    margin-top: 6px;
  }

  .nav-hamburger {
    display: flex;
    position: relative;
    z-index: 1002;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 140vw;
  height: 80vh;
  background: radial-gradient(ellipse at 50% 80%, rgba(196, 30, 30, 0.1) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-label {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
}

.hero-rotating-text {
  position: relative;
  display: grid;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.02em;
}

.hero-rotate-line {
  grid-area: 1 / 1;
  align-self: start;
  opacity: 0;
  transform: translateY(100%);
  transition: none;
}

.hero-rotate-line.hero-rotate-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotateX(8deg);
  }

  50% {
    transform: translateY(-12px) rotateX(8deg);
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(14px);
    opacity: 0;
  }
}

.space {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.spaceb {
  margin-top: 25px;
  margin-bottom: 50px;
}

.spaceab {
  margin-bottom: 30px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.space5 {
  margin-top: 75px;
}

.rojotxt {
  background: linear-gradient(180deg, #b51616, #f31616);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.rojotxt2 {
  background: linear-gradient(180deg, #f31616, #b51616);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 980px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.01em;
}

.btn-dark {
  background: var(--text);
  color: #fff;
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-darkin {
  background: var(--accent);
  color: #fff;
}

.btn-darkin:hover {
  background: #FFF;
  color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0px 10px 34px rgba(255, 0, 0, 0.75);
}

.btn-outline {
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.section {
  padding: 140px 24px;
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.hero + .section-dark {
  margin-top: -1px;
}

.hero + .stack-overlap > #product {
  margin-top: -1px;
}

.stack-overlap {
  position: relative;
}

.stack-overlap > .stack-dwell {
  height: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .stack-overlap > #product {
    position: sticky;

    top: var(--pin-top, 0px);
    z-index: 0;
  }

  .stack-overlap > #ergonomics {
    position: relative;
    z-index: 1;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0 -36px 70px -24px rgba(0, 0, 0, 0.5);
  }

  .stack-overlap > #product .product-cards {
    will-change: transform, opacity;
  }

  .stack-overlap > .stack-dwell {
    height: 85vh;
    pointer-events: none;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .stack-overlap > .stack-dwell {
    height: 40vh;
  }

  .stack-overlap > #ergonomics {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -22px 44px -18px rgba(0, 0, 0, 0.45);
  }
}

.neon-scene-section {
  padding: 0;
  background: #030207;
  overflow: hidden;
}

.neon-scene-stage {
  position: relative;
  width: 100%;
  height: clamp(420px, 70vh, 720px);
}

#neon-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.section-cta {
  background: var(--bg-off);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

#precision {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

#precision::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: url("img/pressure-control-mouse.webp");
  background-repeat: no-repeat;

  background-size: 100% auto;
  background-position: center top;

  opacity: 0.95;

  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.65) 55%,
    rgba(0, 0, 0, 0.2) 68%,
    transparent 88%,
    transparent 100%
  );

  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.65) 55%,
    rgba(0, 0, 0, 0.2) 68%,
    transparent 88%,
    transparent 100%
  );
}

#precision::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.58) 0%,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.92) 35%,
    #ffffff 65%,
    #ffffff 100%
  );
}

#precision > * {
  position: relative;
  z-index: 2;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-dark .label {
  color: var(--accent);
}

.desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 580px;
}

.section-dark .desc {
  color: rgba(255, 255, 255, 0.5);
}

.text-center {
  text-align: center;
}

.text-center + .desc,
.text-center.desc {
  margin-left: auto;
  margin-right: auto;
}

.text-accent {
  color: var(--accent);
}

.center-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.anim-fade {
  opacity: 0;
  transform: translateY(30px);
}

.anim-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-scroll {
  opacity: 0;
  transform: translateY(40px);
}

.anim-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.product-text h2 {
  color: var(--text-light);
}

.product-hero-track {
  position: relative;
  min-height: 240vh;
}

.product-hero-track .product-hero {
  position: sticky;
  top: 15vh;
  margin-bottom: 0;
}

.product-text .desc {
  color: rgba(255, 255, 255, 0.55);
}

.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-visual img {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.product-visual.anim-scroll img {
  max-width: 100%;
}

.product-sequence {
  position: relative;
  min-height: auto;
  align-items: flex-start;
}

.sequence-stage {
  position: relative;
  top: auto;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  transform-style: preserve-3d;
  will-change: transform;
}

.sequence-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 22px 65px rgba(0, 0, 0, 0.52));
  transform: scale(var(--sequence-image-scale, 1));
  transition: transform 0.08s linear;
  will-change: transform;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 110px;
}

.reveal-card {
  position: relative;
  isolation: isolate;
  padding: 32px;
  background: linear-gradient(65deg, #c41e1e 65%, #710909 100%);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  box-shadow: 0 12px 30px rgba(196, 30, 30, 0.24);
}

.reveal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(15deg, #a80a0a 0%, #4a0808 45%, #000000 96%, #ab1212 100%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.reveal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  background:
    linear-gradient(90deg,
      transparent 6%,
     rgba(226, 7, 7, 0.95) 16%,
      rgba(255, 80, 80, 1) 30%,
      rgba(255, 255, 255, 0.95) 72%,
      rgba(255, 0, 0, 0.85) 88%,
      transparent 100%
    ) top / 78% 2px no-repeat,
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.95),
      rgba(255, 0, 0, 0.35),
      transparent 52%
    ) right top / 2px 52% no-repeat,
    linear-gradient(90deg,
      transparent 6%,
      rgba(226, 7, 7, 0.95) 16%,
      rgba(255, 80, 80, 1) 30%,
      rgba(226, 7, 7, 0.95) 16%,
      rgba(255, 80, 80, 1) 30%,
      rgba(255, 255, 255, 0.95) 72%,
      rgba(255, 0, 0, 0.85) 88%,
      rgba(255, 0, 0, 0.85) 88%,
      transparent 100%
    ) bottom / 78% 2px no-repeat;
  filter: blur(1.5px);
}

.reveal-card-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.12) 48%,
    rgba(255, 180, 180, 0.08) 52%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  will-change: transform, opacity;
}

.reveal-card:hover {
  box-shadow: 5px 18px 36px rgba(196, 30, 30, 0.32), 0 28px 68px rgba(189, 14, 14, 0.54);
}

.reveal-card:hover::before {
  opacity: 1;

}

.reveal-card:hover::after {
  opacity: 1;
}

.reveal-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 16px;
  display: block;
  letter-spacing: 0.05em;
}

.reveal-num.accent {
  color: #ffffff;
}

.reveal-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.reveal-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.product-cards .pill {
  width: 56px;
  height: 56px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.product-cards .pill i {
  font-size: 1.45rem;
}

.product-cards .pill:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-text h2 {
  margin-bottom: 20px;
}

#ergonomics {
  background: radial-gradient(1000px 420px at 12% 0%, rgba(196, 30, 30, 0.08), transparent 62%), var(--bg);
  position: relative;
  overflow: hidden;
}

.ergo-img-reveal {
  overflow: hidden;
  border-radius: var(--radius);
  will-change: clip-path;
}

.ergo-img-reveal .ergonomics-visual {
  will-change: transform;
  display: block;
}

.rocker-image {
  overflow: hidden;
}

#ergo-circles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#ergonomics > .container {
  position: relative;
  z-index: 1;
}

.ergonomics-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 44px;

  align-items: start;
}

.ergonomics-copy {
  max-width: 720px;
}

.ergonomics-copy .desc {
  max-width: 680px;
}

.rocker-pin-track {
  position: relative;
  margin-top: 42px;
}

.rocker-pin-sticky {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(340px, 1.1fr);
  gap: 48px;
  align-items: stretch;
  width: 100%;
}

.rocker-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.rocker-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.rocker-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.08));
}

.rocker-orbits {
  --orbit-color: #c41e1e;
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  perspective: 1100px;
}

.rocker-orbits::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 128, 138, 0.16), rgba(120, 128, 138, 0) 62%);
  pointer-events: none;
}

.orbit-guides {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orbit-guides::before,
.orbit-guides::after {
  content: "";
  position: absolute;
}
.orbit-guides::before {
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px dashed #e6e6e6;
}
.orbit-guides::after {
  left: 50%;
  top: 0;
  bottom: 0;
  border-left: 1px dashed #e6e6e6;
}

.orbit-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(var(--tiltX, 0deg)) rotateY(var(--tiltY, 0deg));
  transition: transform 0.5s ease;
}

.orbit-scene {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(60deg);
}

.orbit {
  --c-dark: #6b7178;
  --c-light: #ced3da;
  --c-faded: rgba(206, 211, 218, 0.25);
  --c-glow: rgba(90, 96, 105, 0.45);
  position: absolute;
  inset: 3%;
  border-radius: 50%;
  background: conic-gradient(
    from 120deg,
    var(--c-dark) 0%,
    var(--c-light) 20%,
    var(--c-faded) 50%,
    var(--c-light) 80%,
    var(--c-dark) 100%
  );
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 18px), #000 calc(100% - 16px));
  mask: radial-gradient(farthest-side, #0000 calc(100% - 18px), #000 calc(100% - 16px));
  filter: drop-shadow(0 0 6px var(--c-glow));
  backface-visibility: visible;
  transition: filter 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.rocker-pin-sticky:has(.orbit-tag:hover) .orbit,
.rocker-pin-sticky:has(.rocker-axis:hover) .orbit {
  opacity: 0.12;
}

.rocker-pin-sticky:has(.orbit-tag--pitch:hover) .orbit--pitch,
.rocker-pin-sticky:has(.rocker-axis--pitch:hover) .orbit--pitch,
.rocker-pin-sticky:has(.orbit-tag--roll:hover) .orbit--roll,
.rocker-pin-sticky:has(.rocker-axis--roll:hover) .orbit--roll,
.rocker-pin-sticky:has(.orbit-tag--yaw:hover) .orbit--yaw,
.rocker-pin-sticky:has(.rocker-axis--yaw:hover) .orbit--yaw {
  opacity: 1;
  --c-dark: #c41e1e;
  --c-light: #ff6a6a;
  --c-faded: rgba(255, 106, 106, 0.3);
  --c-glow: rgba(196, 30, 30, 0.65);
}

.rocker-axis { cursor: pointer; }
.rocker-pin-sticky:has(.rocker-axis--pitch:hover) .orbit-tag--pitch,
.rocker-pin-sticky:has(.rocker-axis--roll:hover) .orbit-tag--roll,
.rocker-pin-sticky:has(.rocker-axis--yaw:hover) .orbit-tag--yaw {
  --s: 1.22;
  color: #e11d1d;
  text-shadow: 0 0 12px rgba(196, 30, 30, 0.55);
}

.orbit--pitch { animation: rock-pitch 5s linear infinite; }
.orbit--roll  { animation: rock-roll 3.6s linear infinite; }
.orbit--yaw   { animation: rock-yaw 4.2s linear infinite; }

@keyframes rock-pitch {
  0%, 100% { transform: rotateX(0deg); }
  25%      { transform: rotateX(75deg); }
  75%      { transform: rotateX(-75deg); }
}
@keyframes rock-roll {
  0%, 100% { transform: rotateY(0deg); }
  25%      { transform: rotateY(10deg); }
  75%      { transform: rotateY(-10deg); }
}
@keyframes rock-yaw {
  0%, 100% { transform: rotateX(-60deg) rotateY(0deg); }
  25%      { transform: rotateX(-60deg) rotateY(10deg); }
  75%      { transform: rotateX(-60deg) rotateY(-10deg); }
}

.orbit-tag {
  position: absolute;
  color: var(--orbit-color);
  font-weight: 700;
  font-size: clamp(0.85rem, 2.2vw, 1.1rem);
  letter-spacing: 0.01em;
  pointer-events: auto;
  cursor: pointer;
  transform: translateX(var(--tx, 0)) scale(var(--s, 1));
  transition: transform 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
}

.orbit-tag--yaw   { top: 2%; left: 3%; }
.orbit-tag--roll  { top: 2%; right: 3%; }

.orbit-tag--pitch { top: 100%; left: 50%; --tx: -50%; margin-top: 0.35rem; }

.rocker-image:has(.rocker-orbits) { overflow: visible; }

.orbit-tag--pitch:hover,
.orbit-tag--roll:hover,
.orbit-tag--yaw:hover {
  --s: 1.22;
  color: #e11d1d;
  text-shadow: 0 0 12px rgba(196, 30, 30, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .orbit { animation: none; }
}

.ergonomics-visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: start;
  margin-top: 0;
}

.ergonomics-visual {
  border-radius: var(--radius);
}

.ergonomics-visual-card {
  background: linear-gradient(180deg, #ffffff, #f9f9fb);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.05);
  padding: 28px;
  min-height: 320px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ergonomics-sequence {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.ergonomics-sequence-stage {
  width: 100%;
  height: auto;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ergonomics-sequence-stage img {
  width: min(100%, 560px);
  height: auto;
  min-height: 320px;
  max-height: 520px;
  object-fit: contain;
  transform: scale(var(--ergo-sequence-image-scale, 1));
  transition: transform 0.08s linear;
  will-change: transform;
  filter: none;
  mix-blend-mode: multiply;
}

.insert-pills {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.pill {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}

.pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.pill i {
  font-size: 1.2rem;
  line-height: 1;
}

.rocker-info {
  margin-top: 0;
  padding: 32px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.04);
  min-width: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.rocker-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.rocker-info .desc {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.rocker-info .desc:first-of-type {
  margin-top: auto;
}

.rocker-info .desc:last-of-type {
  margin-bottom: 0;
}

.rocker-axes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.rocker-axis {
  display: grid;
  grid-template-columns: 24px 72px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--bg-off);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.rocker-axis:hover {
  border-color: var(--accent);
  background: var(--bg);
}

.rocker-axis .rocker-icon {
  font-size: 1.1rem;
  color: var(--accent);
  line-height: 1;
}

.rocker-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rocker-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.ergo-rings {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

.ergo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: border-color 0.4s;
}

.ergo-s {
  width: 120px;
  height: 120px;
  animation: ring-float 5s ease-in-out infinite;
}

.ergo-m {
  width: 200px;
  height: 200px;
  animation: ring-float 5s ease-in-out 0.5s infinite;
  border-color: rgba(196, 30, 30, 0.2);
}

.ergo-l {
  width: 280px;
  height: 280px;
  animation: ring-float 5s ease-in-out 1s infinite;
}

@keyframes ring-float {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.04);
  }
}

.ergo-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.ergo-center-label strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ergo-center-label span {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.sensor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 64px;
}

.sensor-stat {
  text-align: center;
  padding: 28px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  margin: 15px;
}

.sensor-stat:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-6px) !important;
}

.stat-big {
  font-size: clamp(1rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  display: block;
  font-variant-numeric: tabular-nums;
}

.stat-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-top: -4px;
}

.stat-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-top: 8px;
}

.sensor-image-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.sensor-image-wrap {
  overflow: visible;
  position: relative;
}

@media (max-width: 768px) {
  .sensor-image-wrap { overflow: hidden; }
  .pulse-beams { display: none; }
  .lamp { height: 250px; transform: scaleY(1.1); }
  .lamp-glow { filter: blur(50px); }
}

.pulse-beams {
  position: absolute;
  top: -160px;
  left: -200px;
  width: calc(100% + 400px);
  height: calc(100% + 320px);
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.pulse-beams path {
  filter: url(#pb-glow);
}

.sensor-image {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sensor-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.sensor-image:hover img {
  transform: scale(1.04);
}

#sensor {
  position: relative;
  overflow: hidden;
}

#sensor > .container {
  position: relative;
  z-index: 2;
}

#sensor .center-block .desc {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.lamp {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 420px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transform: scaleY(1.25);
  transform-origin: top center;
}

.lamp-beam {
  position: absolute;
  top: 0;
  height: 280px;
  width: 15rem;
  overflow: visible;
}

.lamp-beam-left {
  right: 50%;
  background: conic-gradient(from 70deg at center top, #c41e1e, transparent, transparent);
  -webkit-mask-image:
    linear-gradient(to right, transparent, white),
    linear-gradient(to top, transparent, white);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent, white),
    linear-gradient(to top, transparent, white);
  mask-composite: intersect;
}

.lamp-beam-right {
  left: 50%;
  background: conic-gradient(from 290deg at center top, transparent, transparent, #c41e1e);
  -webkit-mask-image:
    linear-gradient(to left, transparent, white),
    linear-gradient(to top, transparent, white);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to left, transparent, white),
    linear-gradient(to top, transparent, white);
  mask-composite: intersect;
}

.lamp-glow {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 28rem;
  height: 180px;
  border-radius: 50%;
  background: rgba(196, 30, 30, 0.35);
  filter: blur(80px);
  z-index: 1;
}

.lamp-line {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: 15rem;
  height: 2px;
  background: #c41e1e;
  border-radius: 1px;
  box-shadow:
    0 0 20px rgba(196, 30, 30, 0.8),
    0 0 60px rgba(196, 30, 30, 0.4);
  z-index: 3;
}

.lamp-fade {
  display: none;
}

@media (max-width: 768px) {
  .lamp { height: 300px; }
  .lamp-beam { height: 200px; width: 10rem; }
  .lamp-glow { width: 18rem; height: 120px; filter: blur(60px); }
  .lamp-line { width: 10rem; }
}

.precision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.precision-card {
  padding: 0;
  background: #ffffff;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
   box-shadow: inset 0 16px 40px rgba(224, 224, 224, 0.18);
}

.precision-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;

}

.precision-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(0, 183, 255, 0.18);
}

.precision-card:hover::after {
  opacity: 1;
}

.precision-card:hover .precision-img img {
  transform: scale(1.06);
}

.precision-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: transparent;
}

.precision-img img {
  width: 100%;
  height: auto;
  object-fit: initial;
  transition: transform 0.6s var(--ease);
}

.precision-body {
  padding: 28px 28px 32px;
}

.precision-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 16px;
}

.precision-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.precision-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.comparison-v2 {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 0 80px rgba(196, 30, 30, 0.04),
    0 24px 64px rgba(0, 0, 0, 0.3);
  position: relative;
}

.comparison-v2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(180deg, rgba(196, 30, 30, 0.06) 0%, rgba(196, 30, 30, 0.02) 100%);
  pointer-events: none;
  z-index: 0;
}

.comp-v2-header {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.comp-v2-feature-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

.comp-v2-trad-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  justify-content: center;
}

.comp-v2-zergo-label {
  text-align: center;
  justify-content: center;
}

.comp-v2-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 980px;
  background: linear-gradient(135deg, var(--accent), #e53935);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(196, 30, 30, 0.3);
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(196, 30, 30, 0.3);
  }

  50% {
    box-shadow:
      0 4px 30px rgba(196, 30, 30, 0.5),
      0 0 60px rgba(196, 30, 30, 0.15);
  }
}

.comp-v2-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
  transition:
    background 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.comp-v2-row:last-child {
  border-bottom: none;
}

.comp-v2-row:hover {
  background: rgba(131, 0, 0, 0.64);
}

.comp-v2-row:hover .comp-v2-icon {
  color: var(--accent);
  transform: scale(1.15);
}

.comp-v2-row:hover .comp-v2-yes {
  transform: scale(1.2);
  text-shadow: 0 0 12px rgba(196, 30, 30, 0.6);
}

.comp-v2-cell {
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.comp-v2-feature {
  gap: 14px;
  font-weight: 500;
}

.comp-v2-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
  transition:
    color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.comp-v2-trad {
  justify-content: center;
  text-align: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.875rem;
}

.comp-v2-zergo {
  justify-content: center;
  text-align: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

.comp-v2-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e53935);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(196, 30, 30, 0.35);
  transition:
    transform 0.35s var(--ease-spring),
    text-shadow 0.35s;
}

.comp-v2-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
}

.comp-v2-row-highlight {
  background: rgba(196, 30, 30, 0.06);
  border-bottom: none;
}

.comp-v2-row-highlight:hover {
  background: rgba(196, 30, 30, 0.1);
}

.comp-v2-row-highlight .comp-v2-feature {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.comp-v2-row-highlight .comp-v2-icon {
  color: var(--accent);
}

.comp-v2-exclusive {
  font-weight: 700;
  color: var(--accent);
  position: relative;
}

.comparison-v2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

@media (max-width: 640px) {
  .comp-v2-header,
  .comp-v2-row {
    grid-template-columns: 1.3fr 0.8fr 1fr;
    padding: 14px 16px;
  }

  .comp-v2-cell {
    font-size: 0.8125rem;
  }

  .comp-v2-trad {
    font-size: 0.75rem;
  }

  .comp-v2-icon {
    width: 18px;
    height: 18px;
  }

  .comp-v2-feature {
    gap: 8px;
  }

  .comp-v2-badge {
    padding: 4px 12px;
    font-size: 0.6875rem;
  }

  .comp-v2-yes,
  .comp-v2-no {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
  }
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fondogrid {
  background:  #fcfcfc;
}

#technology {
  padding-bottom: 98px;
}
.fondogrid.section {
  padding-top: 98px;
}

.tech-card {
  --depth: 1;
  --neu-shadow: rgba(166, 175, 192, 0.55);
  --neu-light: rgba(255, 255, 255, 1);
  position: relative;
  padding: 36px 28px;
  background: #fcfcfc;
  border-radius: var(--radius);
  border: none;

  box-shadow:
    var(--neu-shadow) calc(0.4rem * var(--depth)) calc(0.4rem * var(--depth)) 1.1rem,
    inset rgba(0, 0, 0, 0) 0 0 0;

  transition: box-shadow 0.18s 0.12s ease-in;
}

.tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  box-shadow:
    var(--neu-light) calc(-0.4rem * var(--depth)) calc(-0.4rem * var(--depth)) 1.1rem,
    inset rgba(255, 255, 255, 0) 0 0 0;
  transition: box-shadow 0.18s 0.12s ease-in;
}

.tech-card:hover {
  box-shadow:
    var(--neu-shadow) 0 0 0,
    inset var(--neu-shadow) calc(0.3rem * var(--depth)) calc(0.3rem * var(--depth)) 0.9rem;
  transition: box-shadow 0.18s ease-out;
}

.tech-card:hover::before {
  box-shadow:
    var(--neu-light) 0 0 0,
    inset var(--neu-light) calc(-0.3rem * var(--depth)) calc(-0.3rem * var(--depth)) 0.9rem;
  transition: box-shadow 0.18s ease-out;
}

.tech-card > * {
  position: relative;
  z-index: 1;
}

.chip-stage {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 0 24px;
}

.chip {
  --chip-size: clamp(200px, 26vw, 320px);
  position: relative;
  width: var(--chip-size);
  height: var(--chip-size);
}

.chip-die {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 45%, #d7dadf 0%, #a3a8b0 50%, #777c84 100%);
  box-shadow:
    0 18px 40px rgba(40, 45, 55, 0.45),
    inset 0 0.2rem 0.2rem 0.2rem rgba(255, 255, 255, 0.3),
    inset 0 -6px 14px rgba(0, 0, 0, 0.45);
}

.chip-die canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border-radius: inherit;
}

.chip-outline {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 0.4rem;
  background: conic-gradient(from 180deg, rgb(170, 170, 170), rgb(255, 255, 255), rgb(222, 222, 222), rgb(98, 98, 98), rgb(170, 170, 170));
  filter: grayscale(1);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: filter 0.4s ease;
  z-index: 2;
  pointer-events: none;

}

.chip-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 90deg, rgb(255, 255, 255), rgb(255, 255, 255), rgb(222, 222, 222), rgb(47, 47, 47), rgb(255, 255, 255));
  opacity: 0;
  transition: opacity 0.6s ease;
}

.chip:hover .chip-outline::after {
  opacity: 1;
}

.chip-logo {
  position: relative;
  z-index: 3;
  width: 58%;
  height: auto;
  object-fit: contain;
}

.tech-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tech-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.tech-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.tech-carousel {
  position: relative;
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.tech-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.tech-carousel-slide {
  flex: 0 0 50%;
  min-width: 0;
}

.tech-carousel-slide img {
  width: 100%;
  height: 100%px;
  object-fit: cover;
  display: block;
}

.tech-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.tech-carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.tech-carousel-prev {
  left: 16px;
}

.tech-carousel-next {
  right: 16px;
}

.tech-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
  z-index: 2;
}

.tech-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.tech-carousel-dot.is-active {
  background: #ffffff;
  transform: scale(1.6);
}

@media (max-width: 640px) {
  .tech-carousel-slide img {
    height: 260px;
  }
  .tech-carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
}

.pocket-layout {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr;
  gap: 48px;
  align-items: center;
}

.pocket-text h2 {
  color: var(--text-light);
}

.pocket-text .desc {
  color: rgba(255, 255, 255, 0.45);
}

.pocket-price {
  margin-top: 36px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-light);
}

.price-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.pocket-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pocket-device {
  position: relative;

  width: calc((100% + (100vw - var(--container)) / 2) * 0.85);
  max-width: none;
  flex-shrink: 0;
}

.pocket-device img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

.sustainability-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.76)),
    radial-gradient(1200px 500px at 80% -10%, rgba(196, 30, 30, 0.1), transparent 12%),
    url("img/z-ergo-mouse-ecologic.png");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, auto, cover;
  background-position:
    center,
    80% -10%,
    center;
  color: var(--text);
}

.sustainability-head {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.sustainability-head h2 {
  color: var(--text);
}

.sustainability-head .desc {
  margin: 0 auto;
  color: var(--text-secondary);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.sustainability-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 36px 30px;
  border-radius: 32px;
  border: none;
  background:rgba(210, 230, 245, 0.25) ;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);

  transform: translateZ(0);
  will-change: transform;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.sustainability-card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 26px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(255, 255, 255, 0.20), transparent 20%),
    linear-gradient(165deg,
      rgba(225, 240, 250, 0.55) 0%,
      rgba(195, 220, 235, 0.40) 50%,
      rgba(170, 200, 220, 0.32) 100%);
  box-shadow:
    inset 2px 3px 6px rgba(255, 255, 255, 0.55),
    inset -2px -3px 8px rgba(130, 165, 190, 0.25),
    inset 0 -16px 24px -8px rgba(120, 155, 180, 0.22),
    inset 0 0 30px rgba(255, 255, 255, 0.18);
  transition: box-shadow 0.4s var(--ease);
}

.droplets-layer {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.droplet {
  position: absolute;
  top: 0;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.45) 40%,
    rgba(255, 255, 255, 0.18) 70%,
    transparent 100%);
  filter: drop-shadow(0 2px 2px rgba(70, 105, 140, 0.55));
  opacity: 0;
  will-change: transform, opacity;
}

.sustainability-card:hover .droplet {
  animation: droplet-fall var(--fall-duration, 10s) linear infinite;
  animation-delay: var(--fall-delay, 0s);
}

@keyframes droplet-fall {
  0%   { transform: translateY(-30px); opacity: 0; }
  10%  { opacity: 0.95; }
  85%  { opacity: 0.95; }
  100% { transform: translateY(400px); opacity: 0; }
}

.sustainability-card > * {
  position: relative;
  z-index: 2;
}

.sustainability-card > .droplets-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sustainability-card:hover {
  transform: translateY(-6px) translateZ(0);
  box-shadow:
    0 45px 90px -14px rgba(70, 105, 140, 0.40),
    0 18px 36px -12px rgba(70, 105, 140, 0.26),
    0 4px 10px rgba(70, 105, 140, 0.14),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -1.5px 0.5px rgba(140, 170, 195, 0.55);
}

.sustainability-card:hover::after {
  box-shadow:
    inset 2px 3px 7px rgba(255, 255, 255, 0.7),
    inset -2px -3px 9px rgba(130, 165, 190, 0.30),
    inset 0 -16px 24px -8px rgba(120, 155, 180, 0.26),
    inset 0 0 38px rgba(255, 255, 255, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .sustainability-card,
  .sustainability-card:hover,
  .precision-card,
  .precision-card:hover {
    transform: none;
    transition: none;
  }
  .sustainability-card::after,
  .precision-card::after {
    transition: none;
  }
  .sustainability-card:hover .droplet {
    animation: none;
  }
}

.sustainability-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.sustainability-stat {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}

.sustainability-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.sustainability-note {
  text-align: center;
  color: var(--accent);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.community-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.community-cell {
  display: inline-flex;
}

.community-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.community-badge img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.community-badge:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 520px) {
  .community-row {
    gap: 14px;
  }
  .community-badge {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }
  .community-badge img {
    width: 28px;
    height: 28px;
  }
}

.faq-section {
  background: var(--bg-off);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.faq-item[open] {
  border-color: rgba(196, 30, 30, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px 52px 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 500;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-question {
  display: block;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  padding: 0 22px 18px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.cta-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

.cta-card h2 {
  margin-bottom: 12px;
}

.cta-card .desc {
  color: var(--text-secondary);
  max-width: 100%;
  margin: 0 auto 36px;
}

.cta-form {
  width: 100%;
}

.cta-fields {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.cta-fields input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--bg-off);
  color: var(--text);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.cta-fields input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.cta-fields input::placeholder {
  color: var(--text-tertiary);
}

.btn-submit,
.cta-fields .btn {
  white-space: nowrap;
}

.cta-fields-secondary {
  display: flex;
  gap: 10px;
  margin-top: -6px;
  margin-bottom: 16px;
}

.cta-select {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: inherit;
  background: var(--bg-off);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.cta-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

@media (max-width: 560px) {
  .cta-fields-secondary {
    flex-direction: column;
    gap: 8px;
  }
}

.cta-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.cta-consent input {
  accent-color: var(--accent);
}

.data-policy-link-wrap {
  margin-top: 8px;
  margin-bottom: 0;
  text-align: center;
}

.data-policy-link {
  border: 0;
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.data-policy-link:hover {
  color: var(--accent);
}

.form-msg {
  margin-top: 12px;
  font-size: 0.875rem;
  min-height: 24px;
}

.form-msg.success {
  color: #16a34a;
}

.form-msg.error {
  color: var(--accent);
}

.footer {
  background: var(--bg-dark);
  padding: 48px 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand img {
  height: clamp(28px, 3.5vw, 42px);
  width: auto;
}

.footer p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-contact {
  margin-top: 22px;
  text-align: center;
}

.footer-contact p {
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact a:hover {
  color: #fff;
}

.section-dark {
  will-change: transform;
}

[data-parallax] {
  transition: transform 0.05s linear;
}

.white {
   background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.red {
  color: #c41e1e !important;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.policy-modal.is-open {
  display: block;
}

.policy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.policy-modal-content {
  position: relative;
  width: min(860px, calc(100vw - 40px));
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  margin: 32px auto;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.policy-modal-content h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.policy-modal-content h4 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--text);
}

.policy-modal-content p {
  margin: 0 0 10px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.95rem;
}

.policy-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.policy-modal-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.policy-modal-content ul {
  margin: 0 0 10px;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.95rem;
}

.policy-modal-content li {
  margin-bottom: 4px;
}

.policy-modal-content code {
  background: rgba(0, 0, 0, 0.06);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.85em;
}

.policy-modal-content table th {
  font-weight: 600;
  color: var(--text);
}

.policy-modal-content table td {
  vertical-align: top;
  color: var(--text-secondary);
}

.policy-modal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-inline-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.footer-legal {
  margin-top: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-legal-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal-link:hover {
  color: #fff;
}

.compatible-os-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px 0 66px;
  text-align: center;
}

.compatible-os-wrap p {
  order: 2;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.compatible-os-img {
  order: 1;
  width: min(260px, 42vw);
  height: auto;
}

@media (max-width: 1024px) {
  .ergonomics-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ergonomics-visuals {
    margin-top: 0;
  }

  .ergonomics-visual-card {
    min-height: 280px;
    padding: 20px;
  }

  .product-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-hero-track {
    min-height: auto;
  }

  .product-hero-track .product-hero {
    position: static;
    top: auto;
    margin-bottom: 48px;
  }

  .product-sequence {
    min-height: auto;
  }

  .product-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pocket-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pocket-visual {
    justify-content: center;
  }

  .pocket-device {
    width: 100%;
  }

  .precision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sensor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sustainability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-v2 {
    overflow-x: auto;
  }

  .comp-v2-header,
  .comp-v2-row {
    min-width: 720px;
  }
}

@media (max-width: 640px) {
  .ergonomics-layout {
    gap: 28px;
  }

  .ergonomics-visuals {
    width: 100%;
  }

  .rocker-pin-track {
    min-height: auto;
    margin-top: 22px;
  }

  .rocker-pin-sticky {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rocker-orbits {
    max-width: 300px;
    margin-block: 18px 46px;
  }

  .ergonomics-visual-card {
    min-height: 230px;
    padding: 16px;
  }

  .ergonomics-visual-card img {
    min-height: 220px;
    max-height: 300px;
  }

  .ergonomics-sequence-stage,
  .ergonomics-sequence-stage img {
    min-height: 220px;
    max-height: 320px;
  }

  .section {
    padding: 100px 20px;
  }

  h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero {
    padding: 120px 20px 80px;
  }

  #precision {
    padding-top: 50px;
  }

  #precision .center-block h2 + .desc {
    margin-top: 120px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .precision-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .sensor-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sustainability-grid {
    grid-template-columns: 1fr;
  }

  .cta-fields {
    flex-direction: column;
  }

  .cta-card {
    padding: 44px 22px;
  }

  .cta-consent {
    align-items: flex-start;
    text-align: left;
  }

  .product-cards {
    grid-template-columns: 1fr;
  }

  .rocker-axes {
    flex-direction: column;
  }

  .pocket-layout,
  .split-layout {
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .ergo-rings {
    width: 240px;
    height: 240px;
  }

  .ergo-s {
    width: 90px;
    height: 90px;
  }

  .ergo-m {
    width: 150px;
    height: 150px;
  }

  .ergo-l {
    width: 210px;
    height: 210px;
  }

  .comp-v2-header,
  .comp-v2-row {
    min-width: 640px;
  }

  .faq-item summary {
    font-size: 0.95rem;
    padding: 16px 44px 16px 16px;
  }

  .faq-item p {
    padding: 0 16px 16px;
    font-size: 0.92rem;
  }

  .compatible-os-wrap {
    margin: 28px 0 32px;
  }

  .compatible-os-img {
    width: min(220px, 62vw);
  }
}

@media (min-width: 1025px) {
  .rocker-pin-sticky {
    --rocker-panel-height: 300px;
  }

  .ergonomics-sequence,
  .ergonomics-sequence-stage {
    height: var(--rocker-panel-height);
    min-height: var(--rocker-panel-height);
  }

  .ergonomics-sequence-stage img {
    width: auto;
    height: var(--rocker-panel-height);
    min-height: 0;
    max-height: var(--rocker-panel-height);
  }
}

@media (max-width: 768px) {
  .product-sequence {
    position: relative;
    display: block;
    min-height: 200vh;
    padding-top: 22vh;
    align-self: stretch;
    z-index: 1;
  }

  .product-sequence .sequence-stage {
    position: sticky;
    top: 50vh;
    transform: translateY(-50%);
    align-self: flex-start;
    width: min(100%, 430px);
  }

  .product-text {
    position: relative;
    z-index: 2;
  }
}

.flecha {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 980;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.flecha:hover {
  opacity: 1;
  cursor: pointer;
}

.success-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 24px 16px;
}

.success-modal.is-open {
  display: flex;
  animation: success-fade-in 0.25s ease both;
}

@keyframes success-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.success-modal-backdrop {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(20, 20, 22, 0.88) 0%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.success-modal-content {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  margin: auto;
  padding: 36px 36px 32px;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 16, 46, 0.08);
  color: #f5f5f5;
  text-align: center;
  animation: success-pop 0.45s cubic-bezier(0.16, 1.4, 0.3, 1) both;
}

@keyframes success-pop {
  from {
    transform: translateY(20px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.success-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #f5f5f5;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.success-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.success-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 18px;
}

.success-brand-mark {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.success-brand-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.success-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: #10b981;
  filter: drop-shadow(0 0 18px rgba(16, 185, 129, 0.4));
}

.success-check-circle {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: success-circle-draw 0.6s 0.1s ease-out forwards;
}

.success-check-tick {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: success-tick-draw 0.4s 0.55s cubic-bezier(0.55, 0, 0.1, 1) forwards;
}

@keyframes success-circle-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes success-tick-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.success-pill {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(200, 16, 46, 0.4);
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.08);
  color: #ff7080;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.success-title {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: -0.02em;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.success-subtitle {
  margin: 0 auto 24px;
  max-width: 440px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #c8c8c8;
}

.success-subtitle strong {
  color: #fff;
}

.success-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  display: grid;
  gap: 10px;
}

.success-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.success-benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c8102e;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
}

.success-benefits li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.success-benefits strong {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.success-benefits span {
  font-size: 12.5px;
  color: #9a9a9a;
  line-height: 1.45;
}

.success-inbox-hint {
  margin: 0 0 22px;
  padding: 12px 16px;
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.18);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #d8d8d8;
  text-align: center;
}

.success-inbox-icon {
  display: inline-block;
  margin-right: 6px;
  vertical-align: -1px;
}

.success-claim {
  margin: 0 0 22px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.success-actions {
  display: flex;
  justify-content: center;
}

.success-actions .btn {
  min-width: 160px;
}

@media (max-width: 520px) {
  .success-modal-content {
    padding: 28px 22px 26px;
    border-radius: 18px;
  }
  .success-title {
    font-size: 1.6rem;
  }
  .success-benefits li {
    padding: 10px 12px;
  }
}
