:root {
  --ink: #11151c;
  --text: #17202c;
  --muted: #667084;
  --line: #d8dde6;
  --surface: #ffffff;
  --soft: #f4f6f8;
  --panel: #171b22;
  --panel-2: #232a35;
  --blue: #245fdb;
  --teal: #11877d;
  --red: #d94747;
  --amber: #d79522;
  --brand-pro-gray: #697386;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: #fafbfc;
  font-family: "Inter", "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

#top {
  scroll-margin-top: 72px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(17, 21, 28, 0.08);
  background: rgba(250, 251, 252, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong,
.brand small { display: block; }

.brand-lockup {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 198px;
  min-height: 46px;
  padding: 1px 0 14px;
}

.brand-title {
  margin: 0;
  line-height: 1;
  font-family: "Arial Black", Arial, sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.brand-title-core,
.brand-title-accent {
  display: inline-block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.brand-title-core {
  color: #111827;
}

.brand-title-accent {
  color: #b99cff;
  text-shadow: 0 0 18px rgba(185,156,255,0.22);
}

.brand-slogan {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-left: 22px;
  color: #697386;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
  pointer-events: none;
}

.brand-slogan::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 1px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #8b5cf6, transparent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #4c5668;
  font-size: 14px;
}

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

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-core-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.nav-core-menu::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 58px;
  z-index: 29;
  display: none;
  height: 58px;
  background: transparent;
}

.nav-core-menu:hover::before,
.nav-core-menu:focus-within::before {
  display: block;
}

.nav-core-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.58;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-core-menu:hover .nav-core-trigger,
.nav-core-menu:focus-within .nav-core-trigger {
  color: var(--blue);
}

.nav-core-menu:hover .nav-core-trigger::after,
.nav-core-menu:focus-within .nav-core-trigger::after {
  transform: translateY(1px) rotate(225deg);
  opacity: 0.95;
}

.core-mega-menu {
  position: fixed;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  top: 72px;
  z-index: 30;
  width: auto;
  padding-top: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-core-menu:hover .core-mega-menu,
.nav-core-menu:focus-within .core-mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-core-menu.is-core-mega-request-open::before {
  display: block;
}

.nav-core-menu.is-core-mega-request-open .nav-core-trigger {
  color: var(--blue);
}

.nav-core-menu.is-core-mega-request-open .nav-core-trigger::after {
  transform: translateY(1px) rotate(225deg);
  opacity: 0.95;
}

.nav-core-menu.is-core-mega-request-open .core-mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.core-mega-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(520px, 1.6fr);
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(216, 221, 230, 0.86);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(242, 78, 130, 0.12), transparent 34%),
    radial-gradient(circle at 95% 10%, rgba(139, 92, 246, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.985);
  box-shadow: 0 34px 96px rgba(17, 21, 28, 0.18);
  backdrop-filter: blur(20px);
}

.core-mega-intro {
  min-height: 100%;
  padding: 4px 8px 4px 2px;
}

.core-mega-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: #8b5cf6;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.core-mega-intro strong {
  display: block;
  max-width: 280px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.core-mega-intro p {
  margin: 14px 0 22px;
  color: #667084;
  font-size: 14px;
  line-height: 1.75;
}

.core-mega-intro a,
.core-mega-static-link {
  display: inline-flex;
  align-items: center;
  color: #245fdb;
  font-size: 14px;
  font-weight: 800;
}

.core-mega-static-link {
  cursor: default;
  user-select: none;
}

.core-mega-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.core-mega-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.core-mega-group > span {
  color: #8a94a6;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.core-mega-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 96px;
  padding: 15px 16px;
  border: 1px solid rgba(216, 221, 230, 0.72);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7)),
    radial-gradient(circle at 18% 0%, rgba(242, 78, 130, 0.1), transparent 42%);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-core-menu .core-mega-card[aria-disabled="true"] {
  cursor: default;
}

.core-mega-card::before {
  content: "";
  position: absolute;
  right: -28px;
  top: -34px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: var(--core-mega-card-glow, rgba(139, 92, 246, 0.16));
  opacity: 0.72;
  pointer-events: none;
}

.core-mega-content .core-mega-group:nth-child(1) .core-mega-card:nth-of-type(1) {
  --core-mega-card-glow: rgba(242, 78, 130, 0.16);
}

.core-mega-content .core-mega-group:nth-child(1) .core-mega-card:nth-of-type(2) {
  --core-mega-card-glow: rgba(139, 92, 246, 0.16);
}

.core-mega-content .core-mega-group:nth-child(1) .core-mega-card:nth-of-type(3) {
  --core-mega-card-glow: rgba(245, 158, 11, 0.16);
}

.core-mega-content .core-mega-group:nth-child(2) .core-mega-card:nth-of-type(1) {
  --core-mega-card-glow: rgba(36, 95, 219, 0.16);
}

.core-mega-content .core-mega-group:nth-child(2) .core-mega-card:nth-of-type(2) {
  --core-mega-card-glow: rgba(20, 184, 166, 0.15);
}

.core-mega-content .core-mega-group:nth-child(2) .core-mega-card:nth-of-type(3) {
  --core-mega-card-glow: rgba(99, 102, 241, 0.16);
}

.core-mega-content .core-mega-group:nth-child(3) .core-mega-card:nth-of-type(1) {
  --core-mega-card-glow: rgba(14, 165, 233, 0.15);
}

.core-mega-content .core-mega-group:nth-child(3) .core-mega-card:nth-of-type(2) {
  --core-mega-card-glow: rgba(34, 197, 94, 0.14);
}

.core-mega-content .core-mega-group:nth-child(3) .core-mega-card:nth-of-type(3) {
  --core-mega-card-glow: rgba(249, 115, 22, 0.15);
}

.core-mega-card:hover {
  color: var(--ink);
  border-color: rgba(139, 92, 246, 0.34);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.13);
  transform: translateY(-3px);
}

.core-mega-card.is-core-mega-spotlight {
  border-color: rgba(185, 156, 255, 0.96);
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 0 0 3px rgba(185, 156, 255, 0.22),
    0 18px 42px rgba(139, 92, 246, 0.22);
  animation: coreMegaSpotlightPulse 1.05s ease-in-out 3;
}

.core-mega-card.is-core-mega-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 2px solid rgba(185, 156, 255, 0.92);
  border-radius: inherit;
  pointer-events: none;
  animation: coreMegaSpotlightRing 1.05s ease-in-out 3;
}

@keyframes coreMegaSpotlightPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes coreMegaSpotlightRing {
  0%,
  100% {
    opacity: 0.5;
    box-shadow: 0 0 0 0 rgba(185, 156, 255, 0.24);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(185, 156, 255, 0.14);
  }
}

.core-mega-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.core-mega-card small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: #697386;
  font-size: 12px;
  line-height: 1.55;
}

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 3px;
  padding: 0 18px;
  font-weight: 700;
  white-space: nowrap;
}

.header-action {
  position: relative;
  min-height: 34px;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-radius: 8px;
  color: #263044;
  background: #ffffff;
  background-clip: padding-box;
  box-shadow: 0 5px 14px rgba(37, 52, 83, 0.05);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.header-action::before {
  content: "";
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 3a1 1 0 0 1 1 1v9.59l3.3-3.3a1 1 0 1 1 1.4 1.42l-5 5a1 1 0 0 1-1.4 0l-5-5a1 1 0 1 1 1.4-1.42l3.3 3.3V4a1 1 0 0 1 1-1Zm-7 15a1 1 0 0 1 1 1v1h12v-1a1 1 0 1 1 2 0v2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 3a1 1 0 0 1 1 1v9.59l3.3-3.3a1 1 0 1 1 1.4 1.42l-5 5a1 1 0 0 1-1.4 0l-5-5a1 1 0 1 1 1.4-1.42l3.3 3.3V4a1 1 0 0 1 1-1Zm-7 15a1 1 0 0 1 1 1v1h12v-1a1 1 0 1 1 2 0v2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.header-action:hover {
  transform: translateY(-1px);
  border-color: rgba(36, 95, 219, 0.38);
  color: #245fdb;
  background-color: #ffffff;
  box-shadow: 0 7px 18px rgba(36, 95, 219, 0.09);
}

.header-action:focus-visible {
  outline: 3px solid rgba(139, 92, 246, 0.24);
  outline-offset: 3px;
}

.secondary-action {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.primary-action {
  border: 1px solid #1b50bd;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(36, 95, 219, 0.18);
}

.hero-section {
  display: block;
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 6vw, 88px) clamp(20px, 5vw, 72px) 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(244,246,248,0.98)),
    url("images/888.jpg") center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.hero-text { max-width: 760px; }

.hero-canvas {
  transform: translateY(-56px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-text > .eyebrow {
  color: var(--brand-pro-gray);
  -webkit-text-fill-color: currentColor;
  font-weight: 400;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(40px, 4.3vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-text h1 {
  font-weight: 950;
}

html[data-website-locale="ja-JP"] .hero-text h1 {
  font-size: clamp(34px, 3.6vw, 60px);
}

.stroke {
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(17, 21, 28, 0.38);
}

.accent {
  color: #f24e82;
  text-shadow: 0 18px 44px rgba(242, 78, 130, 0.2);
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.hero-subtitle,
.hero-text p {
  max-width: 680px;
  margin-bottom: 28px;
  color: #3f4a5a;
  font-size: 18px;
}

.hero-text p {
  color: #697386;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 28px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, #f24e82, #ff6f9d);
  box-shadow: 0 16px 42px rgba(242, 78, 130, 0.28);
}

.btn-outline {
  border-color: rgba(17, 21, 28, 0.18);
  background: rgba(255,255,255,0.62);
}

.hero-metrics {
  display: flex;
  flex-wrap: nowrap;
  gap: 26px;
  margin: 0;
  color: #697386;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.55px;
  white-space: nowrap;
}

.hero-metrics > div {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.hero-metrics span {
  margin-right: 0;
  color: var(--ink);
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.25px;
}

.hero-metrics .hero-metric-label {
  margin-right: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.hero-leadership {
  margin-top: 56px;
  color: rgba(17, 21, 28, 0.12);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-canvas .panel {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(22px) saturate(128%);
  -webkit-backdrop-filter: blur(22px) saturate(128%);
  box-shadow: 0 40px 90px rgba(17,21,28,0.16);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-left: 10px;
  color: #e7ebf3;
}

.dots {
  display: flex;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b6b;
  margin-right: 6px;
}

.dots span:nth-child(2) {
  background: #ffd166;
}

.panel-title {
  flex: 1 1 auto;
  min-width: 0;
  color: rgba(105,115,134,0.78);
  font-size: 12px;
  letter-spacing: 2px;
}

.panel-version {
  color: rgba(105,115,134,0.78);
  font-size: 12px;
  font-weight: 300;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tile {
  position: relative;
  overflow: hidden;
  min-height: 152px;
  border-radius: 12px;
  background: #171726;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.tile.show {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.tile:hover {
  transform: translateY(-0.35px) scale(1.002);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.tile:hover ~ .tile {
  filter: blur(0.2px) brightness(0.995);
}

.preview,
.tile-video,
.preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview {
  border-radius: 12px;
  background: #141425;
  z-index: 1;
  overflow: hidden;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.tile-video {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.tile.is-playing .tile-video { opacity: 1; }
.tile.is-playing .preview { opacity: 0; }

.tile::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(110deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.22) 45%, rgba(255,255,255,0) 60%);
  transform: translateX(-60%) rotate(-8deg);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.4s ease;
  pointer-events: none;
}

.tile:hover::after {
  opacity: 0.35;
  transform: translateX(55%) rotate(-8deg);
}

.flags {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 4;
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.dot.fav {
  background: radial-gradient(circle at 30% 30%, #ff7aa6, #ff2559 55%, #b0002f 100%);
}

.dot.best {
  background: radial-gradient(circle at 30% 30%, #fff0b8 0%, #ffd46b 45%, #d19a2a 75%, #7a4f00 100%);
}

.time {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  padding: 2px 6px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  font-size: 10px;
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.pulse {
  color: rgba(105,115,134,0.78);
  font-size: 11px;
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.mini {
  border: none;
  border-radius: 999px;
  padding: 6px 10px;
  color: #3a2a00;
  background: linear-gradient(120deg, #ffd166, #ffb703);
  font-size: 10px;
}

.band {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.website-lazy-module-slot:empty {
  min-height: min(720px, 82vh);
}

.product-showcase-band {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(78px, 9vw, 132px);
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 78, 130, 0.16), transparent 30%),
    radial-gradient(circle at 82% 26%, rgba(36, 95, 219, 0.15), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 48%, #ffffff 100%);
}

.product-showcase-band::before {
  content: "";
  position: absolute;
  inset: 9% -12% auto;
  height: 420px;
  background:
    linear-gradient(90deg, rgba(242,78,130,0.08), rgba(139,92,246,0.08), rgba(17,135,125,0.06));
  filter: blur(46px);
  transform: rotate(-4deg);
  pointer-events: none;
}

.product-showcase-shell {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.product-heading {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 auto 18px;
  text-align: center;
}

.product-heading h2 {
  width: min(100%, 1520px);
  max-width: none;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(40px, 4.1vw, 68px);
  line-height: 1.14;
  text-wrap: normal;
}

.product-lead {
  max-width: 900px;
  margin: 0 auto 36px;
  color: #667084;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.8;
  text-align: center;
}

.product-stage {
  position: relative;
  isolation: isolate;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(18px, 2.4vw, 30px);
}

.product-orbit {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.82;
  pointer-events: none;
  animation: product-orbit 8s ease-in-out infinite alternate;
}

.orbit-a {
  left: 5%;
  top: 10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(242,78,130,0.24), transparent 66%);
}

.orbit-b {
  right: 2%;
  bottom: 0;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(36,95,219,0.2), transparent 68%);
  animation-delay: -2.4s;
}

@keyframes product-orbit {
  from { transform: translate3d(-12px, 8px, 0) scale(0.98); }
  to { transform: translate3d(14px, -10px, 0) scale(1.04); }
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 28px;
  background: rgba(255,255,255,0.62);
  box-shadow:
    0 46px 110px rgba(17, 21, 28, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.85);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  transform: perspective(1600px) rotateX(1.2deg);
  transition: transform 0.55s ease, box-shadow 0.55s ease;
}

.product-window:hover {
  transform: perspective(1600px) rotateX(0) translateY(-4px) scale(1.006);
  box-shadow:
    0 58px 130px rgba(17, 21, 28, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.product-window-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(17,21,28,0.08);
  color: rgba(105,115,134,0.82);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.62));
}

.product-window-bar .dots span:nth-child(3) {
  background: #42d392;
}

.product-window-bar strong {
  color: #1f2937;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.product-window-bar span {
  font-size: 12px;
  white-space: nowrap;
}

.product-window img {
  display: block;
  width: 100%;
  height: auto;
}

.product-window::after {
  content: "";
  position: absolute;
  inset: 48px 0 0;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.18) 36%, transparent 58%);
  transform: translateX(-64%);
  opacity: 0.28;
  pointer-events: none;
  animation: screenshot-sheen 6.5s ease-in-out infinite;
}

@keyframes screenshot-sheen {
  0%, 36% { transform: translateX(-70%); opacity: 0; }
  50% { opacity: 0.34; }
  72%, 100% { transform: translateX(70%); opacity: 0; }
}

.product-demo-layer {
  position: absolute;
  inset: 48px 0 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.product-overview-demo-image,
.product-portrait-demo-image,
.product-photo-demo-image,
.product-cat-demo-image,
.product-crowd-demo-image,
.product-aurora-demo-image,
.product-grass-demo-image,
.product-girl-demo-image,
.product-neighbor-demo-image,
.product-user-center-demo-image,
.product-theme-demo-image,
.product-pet-demo-image,
.product-grid-demo-image,
.product-space-demo-image,
.product-tools-demo-image,
.product-import-demo-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.004);
  transition: opacity 0.38s ease, transform 0.38s ease;
  pointer-events: none;
}

.product-demo-layer[data-tour="overview"] .product-overview-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="portrait"] .product-portrait-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="photo"] .product-photo-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="cat"] .product-cat-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="crowd"] .product-crowd-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="aurora"] .product-aurora-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="grass"] .product-grass-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="girl"] .product-girl-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="neighbor"] .product-neighbor-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="user-center"] .product-user-center-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="theme"] .product-theme-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="space"] .product-space-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="pet"] .product-pet-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="grid"] .product-grid-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-pet-dynamic-cat {
  position: absolute;
  left: 14.8%;
  top: 5.8%;
  z-index: 3;
  width: min(19%, 238px);
  aspect-ratio: 16 / 9;
  background-image: url("Pets/assets/pet-active-sprite.webp");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 3200% 100%;
  opacity: 0;
  transform: scaleX(-1) translateY(2px);
  transform-origin: center;
  filter:
    brightness(1.08)
    contrast(1.04)
    drop-shadow(0 16px 18px rgba(20, 9, 18, 0.24))
    drop-shadow(0 0 14px rgba(255, 225, 236, 0.18));
  pointer-events: none;
}

.product-demo-layer[data-tour="pet"] .product-pet-dynamic-cat {
  opacity: 1;
  animation: product-pet-dynamic-cat-frames 3.6s steps(31, end) infinite;
}

.product-demo-layer[data-tour="tools"] .product-tools-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-demo-layer[data-tour="import"] .product-import-demo-image {
  opacity: 1;
  transform: scale(1);
}

.product-hotspot {
  position: absolute;
  z-index: 8;
  pointer-events: auto;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  color: transparent;
  cursor: pointer;
  opacity: 0.1;
  transition: opacity 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.product-hotspot span {
  z-index: 2;
  position: absolute;
  left: 12px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  color: #fff;
  background: rgba(17,21,28,0.46);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(4px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-hotspot::before,
.product-hotspot::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.product-hotspot::before {
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow:
    0 0 0 1px rgba(242,78,130,0.3),
    0 0 34px rgba(242,78,130,0.5),
    inset 0 0 42px rgba(255,255,255,0.12);
}

.product-hotspot::after {
  background: linear-gradient(120deg, rgba(242,78,130,0.16), rgba(36,95,219,0.12));
}

.product-hotspot:hover,
.product-hotspot.is-active {
  opacity: 1;
  border-color: rgba(255,255,255,0.58);
  background: rgba(255,255,255,0.04);
}

.product-hotspot:hover span,
.product-hotspot.is-active span,
.product-hotspot.is-active::before,
.product-hotspot.is-active::after {
  opacity: 1;
}

.product-hotspot:hover span,
.product-hotspot.is-active span {
  transform: translateY(0);
}

.product-hotspot.is-active::before {
  animation: hotspot-pulse 1.8s ease-in-out infinite;
}

@keyframes hotspot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.76; }
  50% { transform: scale(1.018); opacity: 1; }
}

.hotspot-projects {
  left: 2.6%;
  top: calc(14% + 6px);
  width: 16.4%;
  height: calc(84% - 12px);
}

.hotspot-overview {
  left: calc(16.55% - 1.35% + 4px);
  top: calc(33.6% - 2.275%);
  z-index: 9;
  width: 2.7%;
  height: 4.55%;
}

.hotspot-lock {
  left: calc(16.3% - 1.35%);
  top: calc(43.7% - 2.275%);
  width: 2.7%;
  height: 4.55%;
}

.hotspot-search {
  left: calc(45.9% + 2px);
  top: calc(2.25% + 1px);
  width: calc(9.1% - 3px);
  height: calc(5.3% + 3px);
}

.hotspot-portrait {
  left: calc(59.25% - 1.35% + 1px);
  top: calc(4.9% - 2.275% + 2px);
  z-index: 9;
  width: 2.7%;
  height: 4.55%;
}

.hotspot-user-center {
  left: calc(63.25% - 1.35% + 2px);
  top: calc(4.9% - 2.275% + 2px);
  z-index: 9;
  width: 2.7%;
  height: 4.55%;
}

.hotspot-theme {
  left: calc(68.95% - 2.55% - 4px);
  top: calc(5.25% - 2.275% + 1px);
  z-index: 9;
  width: calc(5.1% + 10px);
  height: 4.55%;
}

.hotspot-tools {
  left: calc(82.42% - 1.35% + 1px);
  top: calc(5.25% - 2.275% + 1px);
  z-index: 9;
  width: 2.7%;
  height: 4.55%;
}

.hotspot-space {
  left: calc(76.35% - 6px);
  top: calc(16.05% + 1px);
  width: 2.7%;
  height: 4.55%;
}

.hotspot-pet {
  left: calc(79.65% - 8px);
  top: calc(16.05% + 1px);
  width: 2.7%;
  height: 4.55%;
}

.hotspot-grid {
  left: calc(82.18% - 6px);
  top: calc(16.05% + 1px);
  z-index: 10;
  width: 2.7%;
  height: 4.55%;
  border-radius: 999px;
}

.hotspot-ai {
  left: calc(83.95% - 2px);
  top: calc(16.05% + 1px);
  width: calc(5.1% + 10px);
  height: 4.55%;
}

.hotspot-import {
  left: calc(89.3% + 10px);
  top: 16.05%;
  width: calc(5.2% + 16px);
  height: 4.55%;
}

.hotspot-photo {
  left: 35.7%;
  top: 58.2%;
  z-index: 9;
  width: 14.2%;
  height: 13.8%;
}

.hotspot-grass {
  left: 20.5%;
  top: 26.8%;
  z-index: 9;
  width: 14.2%;
  height: 13.8%;
}

.hotspot-girl {
  left: 20.5%;
  top: 58.2%;
  z-index: 9;
  width: 14.2%;
  height: 13.8%;
}

.hotspot-neighbor {
  left: 81.4%;
  top: 76.8%;
  z-index: 9;
  width: 14.2%;
  height: 13.8%;
}

.hotspot-cat {
  left: 35.7%;
  top: 45.4%;
  z-index: 9;
  width: 14.2%;
  height: 13.8%;
}

.hotspot-crowd {
  left: 66.2%;
  top: 45.4%;
  z-index: 9;
  width: 14.2%;
  height: 13.8%;
}

.hotspot-aurora {
  left: 66.2%;
  top: 26.8%;
  z-index: 9;
  width: 14.2%;
  height: 13.8%;
}

.hotspot-photo:hover,
.hotspot-photo.is-active,
.hotspot-cat:hover,
.hotspot-cat.is-active,
.hotspot-crowd:hover,
.hotspot-crowd.is-active,
.hotspot-aurora:hover,
.hotspot-aurora.is-active,
.hotspot-grass:hover,
.hotspot-grass.is-active,
.hotspot-girl:hover,
.hotspot-girl.is-active,
.hotspot-neighbor:hover,
.hotspot-neighbor.is-active {
  border-color: transparent;
  background: transparent;
}

.hotspot-photo::before,
.hotspot-photo::after,
.hotspot-photo.is-active::before,
.hotspot-photo.is-active::after,
.hotspot-cat::before,
.hotspot-cat::after,
.hotspot-cat.is-active::before,
.hotspot-cat.is-active::after,
.hotspot-crowd::before,
.hotspot-crowd::after,
.hotspot-crowd.is-active::before,
.hotspot-crowd.is-active::after,
.hotspot-aurora::before,
.hotspot-aurora::after,
.hotspot-aurora.is-active::before,
.hotspot-aurora.is-active::after,
.hotspot-grass::before,
.hotspot-grass::after,
.hotspot-grass.is-active::before,
.hotspot-grass.is-active::after,
.hotspot-girl::before,
.hotspot-girl::after,
.hotspot-girl.is-active::before,
.hotspot-girl.is-active::after,
.hotspot-neighbor::before,
.hotspot-neighbor::after,
.hotspot-neighbor.is-active::before,
.hotspot-neighbor.is-active::after {
  content: none;
}

.hotspot-preview {
  left: 23.5%;
  top: 26.2%;
  width: calc(68.5% + 10px);
  height: calc(50% + 80px);
}

.hotspot-search span,
.hotspot-overview span,
.hotspot-portrait span,
.hotspot-lock span,
.hotspot-user-center span,
.hotspot-theme span,
.hotspot-tools span,
.hotspot-space span,
.hotspot-pet span,
.hotspot-grid span,
.hotspot-ai span,
.hotspot-import span {
  display: none;
}

.product-demo-cursor {
  position: absolute;
  left: var(--cursor-x, 11%);
  top: var(--cursor-y, 26%);
  z-index: 9;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #fff, #f24e82 58%, #a31446);
  box-shadow:
    0 0 0 8px rgba(242,78,130,0.15),
    0 0 32px rgba(242,78,130,0.52);
  transform: translate(-50%, -50%);
  transition: left 0.72s cubic-bezier(.2,.7,.2,1), top 0.72s cubic-bezier(.2,.7,.2,1), opacity 0.3s ease;
  pointer-events: none;
}

.product-demo-cursor-label {
  position: absolute;
  left: var(--cursor-x, 11%);
  top: var(--cursor-y, 26%);
  z-index: 10;
  transform: translate(-50%, calc(-100% - 30px));
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 999px;
  padding: 8px 18px 9px;
  color: rgba(255,255,255,0.96);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.055)),
    linear-gradient(90deg, rgba(242,78,130,0.24), rgba(139,92,246,0.2));
  box-shadow:
    0 16px 38px rgba(17,21,28,0.22),
    0 0 30px rgba(242,78,130,0.26);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(17,21,28,0.62);
  opacity: 0;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: left 0.72s cubic-bezier(.2,.7,.2,1), top 0.72s cubic-bezier(.2,.7,.2,1), opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.product-demo-layer[data-tour="projects"] .product-demo-cursor-label,
.product-demo-layer[data-tour="overview"] .product-demo-cursor-label,
.product-demo-layer[data-tour="portrait"] .product-demo-cursor-label,
.product-demo-layer[data-tour="lock"] .product-demo-cursor-label,
.product-demo-layer[data-tour="user-center"] .product-demo-cursor-label,
.product-demo-layer[data-tour="theme"] .product-demo-cursor-label,
.product-demo-layer[data-tour="tools"] .product-demo-cursor-label,
.product-demo-layer[data-tour="search"] .product-demo-cursor-label,
.product-demo-layer[data-tour="space"] .product-demo-cursor-label,
.product-demo-layer[data-tour="pet"] .product-demo-cursor-label,
.product-demo-layer[data-tour="grid"] .product-demo-cursor-label,
.product-demo-layer[data-tour="ai"] .product-demo-cursor-label,
.product-demo-layer[data-tour="import"] .product-demo-cursor-label,
.product-demo-layer[data-tour="preview"] .product-demo-cursor-label {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 34px));
}

.product-demo-layer[data-tour="projects"] .product-demo-cursor-label,
.product-demo-layer[data-tour="overview"] .product-demo-cursor-label,
.product-demo-layer[data-tour="portrait"] .product-demo-cursor-label,
.product-demo-layer[data-tour="lock"] .product-demo-cursor-label,
.product-demo-layer[data-tour="user-center"] .product-demo-cursor-label,
.product-demo-layer[data-tour="theme"] .product-demo-cursor-label,
.product-demo-layer[data-tour="tools"] .product-demo-cursor-label,
.product-demo-layer[data-tour="search"] .product-demo-cursor-label,
.product-demo-layer[data-tour="space"] .product-demo-cursor-label,
.product-demo-layer[data-tour="pet"] .product-demo-cursor-label,
.product-demo-layer[data-tour="grid"] .product-demo-cursor-label,
.product-demo-layer[data-tour="ai"] .product-demo-cursor-label,
.product-demo-layer[data-tour="import"] .product-demo-cursor-label {
  transform: translate(-50%, calc(-100% - 20px));
  border-color: rgba(255,255,255,0.28);
  padding: 5px 11px 6px;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.105);
  box-shadow:
    0 10px 26px rgba(17,21,28,0.14),
    0 0 20px rgba(242,78,130,0.16);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.045em;
  text-shadow: 0 1px 8px rgba(17,21,28,0.52);
}

.product-demo-layer[data-tour="projects"] .product-demo-cursor-label {
  transform: translate(-50%, calc(-100% - 16px));
}

.product-demo-layer[data-tour="search"] .product-demo-cursor-label {
  transform: translate(-50%, 28px);
}

.product-demo-layer[data-tour="portrait"] .product-demo-cursor-label {
  transform: translate(-50%, 28px);
}

.product-demo-layer[data-tour="user-center"] .product-demo-cursor-label {
  transform: translate(-50%, 28px);
}

.product-demo-layer[data-tour="theme"] .product-demo-cursor-label {
  transform: translate(-50%, 28px);
}

.product-demo-layer[data-tour="tools"] .product-demo-cursor-label {
  transform: translate(-50%, 28px);
}

.product-demo-layer[data-tour="preview"] .product-demo-cursor-label {
  font-size: 11px;
  font-weight: 400;
}

.product-demo-cursor::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: cursor-ring 1.35s ease-out infinite;
}

@keyframes cursor-ring {
  from { transform: translate(-50%, -50%) scale(0.62); opacity: 0.9; }
  to { transform: translate(-50%, -50%) scale(1.45); opacity: 0; }
}

@keyframes product-pet-dynamic-cat-frames {
  from { background-position: 0 0; }
  to { background-position: 100% 0; }
}

.product-private-lock-demo {
  position: absolute;
  left: 20%;
  top: calc(17.2% - 6px);
  right: 2.5%;
  bottom: 4.4%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.55vw, 20px);
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: scale(0.992);
  transition: opacity 0.42s ease, transform 0.42s ease;
  pointer-events: none;
  --private-demo-accent: #f24e82;
  --private-demo-soft: rgba(242,78,130,0.14);
  --private-demo-mid: rgba(242,78,130,0.22);
  --private-demo-warm: rgba(255,216,164,0.72);
}

.product-demo-layer[data-tour="lock"] .product-private-lock-demo {
  opacity: 1;
  transform: scale(1);
}

.product-private-lock-demo::before,
.product-private-lock-demo::after,
.product-private-lock-backdrop,
.product-private-lock-backdrop::before,
.product-private-lock-backdrop::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.product-private-lock-demo::before {
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(68% 62% at 48% 42%, rgba(242,78,130,0.12), transparent 66%),
    radial-gradient(82% 76% at 15% 15%, rgba(255,216,164,0.08), transparent 62%),
    radial-gradient(82% 72% at 86% 92%, rgba(242,78,130,0.18), transparent 64%),
    linear-gradient(145deg, rgba(96,24,49,0.48), rgba(22,13,27,0.58) 46%, rgba(83,22,43,0.50)),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, 44px 44px, 44px 44px;
  animation: private-demo-grid-drift 18s linear infinite;
}

.product-private-lock-demo::after {
  content: none;
}

.product-private-lock-backdrop {
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(111,26,55,0.48), rgba(28,16,31,0.66) 48%, rgba(91,30,49,0.52) 100%),
    radial-gradient(70% 66% at 50% 43%, rgba(242,78,130,0.12), transparent 69%),
    radial-gradient(112% 82% at 6% 0%, rgba(255,216,164,0.08), transparent 58%),
    radial-gradient(88% 72% at 92% 100%, rgba(242,78,130,0.16), transparent 70%),
    linear-gradient(145deg, rgba(54,18,36,0.54), rgba(15,12,24,0.62));
  backdrop-filter: blur(10px) saturate(1.06) brightness(0.86) contrast(1.03);
  -webkit-backdrop-filter: blur(10px) saturate(1.06) brightness(0.86) contrast(1.03);
}

.product-private-lock-backdrop::before {
  inset: 0;
  opacity: 0.22;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.038) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(242,78,130,0.045) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.12) 0 1px, transparent 1.6px),
    radial-gradient(circle at 74% 68%, rgba(255,255,255,0.10) 0 1px, transparent 1.8px);
  background-size: auto, auto, 34px 38px, 46px 52px;
  mix-blend-mode: screen;
}

.product-private-lock-backdrop::after {
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(106deg, transparent 0 35%, rgba(242,78,130,0.08) 43%, rgba(255,255,255,0.07) 50%, rgba(242,78,130,0.08) 57%, transparent 66% 100%),
    radial-gradient(42% 52% at 50% 48%, rgba(242,78,130,0.12), transparent 72%);
  transform: translate3d(-8%, 0, 0);
  animation: private-demo-sweep 8.4s ease-in-out infinite;
}

.product-private-lock-frame {
  position: relative;
  z-index: 2;
  width: min(calc(46% + 80px), 580px);
  min-width: 300px;
}

.product-private-lock-neon-frame {
  position: absolute;
  inset: -20px;
  z-index: 5;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  overflow: visible;
  pointer-events: none;
}

.product-private-lock-neon-path {
  fill: #ff4f86;
}

.product-private-lock-neon-aura {
  opacity: 0.52;
  filter:
    blur(4.2px)
    drop-shadow(0 0 17px rgba(255,79,134,0.82))
    drop-shadow(0 0 34px rgba(255,79,134,0.58));
}

.product-private-lock-neon-glow {
  opacity: 0.82;
  filter:
    blur(1.9px)
    drop-shadow(0 0 11px rgba(255,79,134,0.88))
    drop-shadow(0 0 24px rgba(255,79,134,0.66));
}

.product-private-lock-neon-core {
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(255,79,134,0.9));
}

.product-private-lock-card {
  position: relative;
  min-height: 318px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 22px 24px 20px;
  overflow: hidden;
  color: rgba(255,255,255,0.94);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.018), transparent 36%, transparent 74%, rgba(255,255,255,0.012)),
    radial-gradient(118% 104% at 50% -20%, rgba(242,78,130,0.18), transparent 54%),
    radial-gradient(72% 82% at 88% 12%, rgba(255,255,255,0.045), transparent 62%),
    linear-gradient(168deg, rgba(16,24,36,0.98), rgba(5,9,15,0.98));
  box-shadow:
    0 26px 72px rgba(0,0,0,0.48),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    inset 0 -1px 0 rgba(255,255,255,0.08);
}

.product-private-lock-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.026) 54%, transparent 76%),
    linear-gradient(180deg, rgba(255,255,255,0.034), transparent 32%, rgba(255,255,255,0.016));
  opacity: 0.34;
}

.product-private-lock-topline {
  position: absolute;
  left: 21%;
  right: 21%;
  top: 15px;
  z-index: 3;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(242,78,130,0.7), rgba(255,255,255,0.68), rgba(242,78,130,0.7), transparent);
  opacity: 0.86;
}

.product-private-lock-corners span {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  border-color: rgba(255,255,255,0.64);
}

.product-private-lock-corners .tl { left: 12px; top: 12px; border-left: 1px solid; border-top: 1px solid; border-color: rgba(255,255,255,0.64); border-top-left-radius: 8px; }
.product-private-lock-corners .tr { right: 12px; top: 12px; border-right: 1px solid; border-top: 1px solid; border-color: rgba(255,255,255,0.64); border-top-right-radius: 8px; }
.product-private-lock-corners .bl { left: 12px; bottom: 12px; border-left: 1px solid; border-bottom: 1px solid; border-color: rgba(255,255,255,0.64); border-bottom-left-radius: 8px; }
.product-private-lock-corners .br { right: 12px; bottom: 12px; border-right: 1px solid; border-bottom: 1px solid; border-color: rgba(255,255,255,0.64); border-bottom-right-radius: 8px; }

.product-private-lock-header,
.product-private-lock-core,
.product-private-lock-control {
  position: relative;
  z-index: 2;
}

.product-private-lock-header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  align-items: start;
  margin-bottom: 22px;
  padding: 0 8px;
}

.product-private-lock-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  min-width: 0;
}

.product-private-lock-brand span,
.product-private-lock-brand strong {
  font-size: 8.5px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 1.45px;
  white-space: nowrap;
}

.product-private-lock-brand span {
  color: #ff5f92;
}

.product-private-lock-brand strong {
  color: rgba(255,255,255,0.72);
}

.product-private-lock-brand em {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
}

.product-private-lock-state {
  display: grid;
  gap: 6px;
  justify-items: end;
  color: rgba(255,255,255,0.62);
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 1.15px;
}

.product-private-lock-state div {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-private-lock-state i {
  color: rgba(255,95,146,0.78);
}

.product-private-lock-state strong {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  letter-spacing: 0;
}

.product-private-lock-core {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-private-lock-icon {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242,78,130,0.52);
  border-radius: 16px;
  color: rgba(255,229,182,0.96);
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.24), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.045));
  box-shadow:
    0 0 30px rgba(242,78,130,0.22),
    inset 0 0 0 1px rgba(255,255,255,0.055),
    inset 0 -18px 34px rgba(0,0,0,0.18);
}

.product-private-lock-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(242,78,130,0.22);
  border-radius: 22px;
  opacity: 0.72;
}

.product-private-lock-icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
}

.product-private-lock-icon i {
  position: relative;
  z-index: 4;
  font-size: 16px;
}

.product-private-lock-ripple {
  position: absolute;
  inset: -7px;
  z-index: 0;
  border: 1px solid rgba(242,78,130,0.42);
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%, rgba(242,78,130,0.12), transparent 58%);
  box-shadow:
    0 0 18px rgba(242,78,130,0.18),
    inset 0 0 18px rgba(255,255,255,0.035);
  opacity: 0;
  transform: rotate(45deg) scale(0.62);
  animation: private-demo-ripple 3.8s ease-out infinite;
}

.product-private-lock-ripple.r2 {
  animation-delay: 1.65s;
  border-color: rgba(242,78,130,0.3);
}

.product-private-lock-core h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.16;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.product-private-lock-core p {
  margin: 0;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  font-weight: 800;
}

.product-private-lock-control {
  width: min(430px, 100%);
  margin: 22px auto 0;
}

.product-private-lock-input-row {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(242,78,130,0.45);
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(255,255,255,0.09), rgba(255,255,255,0.048));
  box-shadow:
    0 0 0 3px rgba(242,78,130,0.12),
    inset 0 0 0 1px rgba(0,0,0,0.22),
    0 18px 42px rgba(0,0,0,0.18);
}

.product-private-lock-input-row > span {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 12px;
  color: rgba(255,255,255,0.36);
  text-align: left;
  font-size: 11px;
  font-weight: 400;
}

.product-private-lock-input-row button {
  min-width: 100px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(242,78,130,0.58);
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  background: linear-gradient(145deg, rgba(242,78,130,0.32), rgba(255,255,255,0.075));
  box-shadow:
    0 10px 24px rgba(242,78,130,0.14),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  font-size: 11px;
  font-weight: 400;
}

.product-private-lock-input-row button i {
  font-size: 10px;
}

.product-private-lock-actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.product-private-lock-actions button {
  min-width: 118px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255,112,138,0.18);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255,190,202,0.72);
  background: linear-gradient(145deg, rgba(255,82,118,0.07), rgba(255,255,255,0.024));
  box-shadow:
    0 10px 24px rgba(0,0,0,0.16),
    inset 0 0 0 1px rgba(255,255,255,0.035);
  font-size: 10.5px;
  font-weight: 400;
}

@keyframes private-demo-ripple {
  0% { opacity: 0; transform: rotate(45deg) scale(0.62); }
  12% { opacity: 0.46; }
  70% { opacity: 0.14; }
  100% { opacity: 0; transform: rotate(45deg) scale(1.72); }
}

@keyframes private-demo-grid-drift {
  from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 0 0, 0 0, 0 0, 0 0, 44px 44px, -44px 44px; }
}

@keyframes private-demo-sweep {
  0%, 100% { transform: translate3d(-8%, 0, 0); opacity: 0.28; }
  46%, 58% { transform: translate3d(8%, 0, 0); opacity: 0.62; }
}

@keyframes private-demo-underlight {
  0%, 100% { transform: scaleX(0.86); opacity: 0.58; }
  50% { transform: scaleX(1); opacity: 0.98; }
}

.product-demo-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 680px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(17,21,28,0.44);
  box-shadow: 0 18px 46px rgba(17,21,28,0.24);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  pointer-events: none;
}

.product-demo-caption strong,
.product-demo-caption span {
  display: block;
}

.product-demo-caption strong {
  flex: 0 0 auto;
  font-size: 15px;
}

.product-demo-caption span {
  color: rgba(255,255,255,0.74);
  font-size: 13px;
}

.product-tour-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 0;
}

.product-tour-rail button {
  border: 1px solid rgba(216,221,230,0.85);
  border-radius: 999px;
  padding: 10px 16px;
  color: #667084;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 12px 28px rgba(17,21,28,0.06);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.product-tour-rail button:hover,
.product-tour-rail button.is-active {
  color: #fff;
  border-color: rgba(242,78,130,0.42);
  background: linear-gradient(120deg, #f24e82, #8b5cf6);
  box-shadow: 0 16px 34px rgba(242,78,130,0.2);
  transform: translateY(-2px);
}

.product-callout {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 188px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.64);
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 20px 46px rgba(17,21,28,0.14);
  backdrop-filter: blur(18px) saturate(142%);
  -webkit-backdrop-filter: blur(18px) saturate(142%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-callout:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(17,21,28,0.18);
}

.product-callout span {
  color: #f24e82;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.product-callout strong {
  color: #11151c;
  font-size: 16px;
  line-height: 1.2;
}

.product-callout small {
  color: #667084;
  font-size: 12px;
  line-height: 1.55;
}

.callout-library {
  left: 0;
  top: 16%;
}

.callout-project {
  right: 0;
  top: 22%;
}

.callout-ai {
  left: 7%;
  bottom: 14%;
}

.callout-tools {
  right: 5%;
  bottom: 10%;
}

.product-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 32px auto 0;
}

.product-proof-grid div {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(216,221,230,0.82);
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 44px rgba(17,21,28,0.06);
}

.product-proof-grid strong,
.product-proof-grid span {
  display: block;
}

.product-proof-grid strong {
  margin-bottom: 10px;
  color: #11151c;
  font-size: 18px;
}

.product-proof-grid span {
  color: #667084;
  font-size: 14px;
}

.short-video-band {
  --short-accent: #FF0A54;
  --short-secondary: #FF2E63;
  --short-soft: color-mix(in srgb, var(--short-accent) 18%, transparent);
  --short-glow: color-mix(in srgb, var(--short-accent) 34%, transparent);
  --short-deep: #16040b;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, color-mix(in srgb, var(--short-accent) 22%, transparent), transparent 30%),
    radial-gradient(circle at 84% 12%, var(--short-soft), transparent 34%),
    linear-gradient(135deg, #fff8fb 0%, #ffffff 42%, #f8f4ff 100%);
}

.short-video-band[data-short-color="red"] { --short-accent: #FF0A54; --short-secondary: #FF2E63; --short-deep: #16040b; }
.short-video-band[data-short-color="lavender"] { --short-accent: #C9A7F4; --short-secondary: #E1C8FF; --short-deep: #120B1D; }
.short-video-band[data-short-color="green"] { --short-accent: #00cc66; --short-secondary: #00ff99; --short-deep: #001a0f; }
.short-video-band[data-short-color="cloud"] { --short-accent: #F0EEE9; --short-secondary: #D7D0C6; --short-deep: #0B0C0F; }
.short-video-band[data-short-color="glacier"] { --short-accent: #63CFC9; --short-secondary: #8EE8E2; --short-deep: #041211; }
.short-video-band[data-short-color="blue"] { --short-accent: #0066ff; --short-secondary: #00aaff; --short-deep: #0a0a1f; }
.short-video-band[data-short-color="purple"] { --short-accent: #8b00ff; --short-secondary: #c300ff; --short-deep: #11001a; }
.short-video-band[data-short-color="orange"] { --short-accent: #ff6600; --short-secondary: #ff9900; --short-deep: #1a0f00; }
.short-video-band[data-short-color="dark"] { --short-accent: #555555; --short-secondary: #777777; --short-deep: #000000; }
.short-video-band[data-short-color="magenta"] { --short-accent: #FF3DAF; --short-secondary: #FF6FD4; --short-deep: #1a0612; }
.short-video-band[data-short-color="amg"] { --short-accent: #FF1E1E; --short-secondary: #FF5A5A; --short-deep: #1a0505; }
.short-video-band[data-short-color="sunset"] { --short-accent: #FF6B57; --short-secondary: #FF8A66; --short-deep: #190b09; }
.short-video-band[data-short-color="champ"] { --short-accent: #E8C27A; --short-secondary: #FFDCA3; --short-deep: #14100a; }
.short-video-band[data-short-color="emerald"] { --short-accent: #A6FF4D; --short-secondary: #C4FF70; --short-deep: #0e1408; }
.short-video-band[data-short-color="teal"] { --short-accent: #14B8A6; --short-secondary: #2DD4BF; --short-deep: #031716; }
.short-video-band[data-short-color="indigo"] { --short-accent: #4F46E5; --short-secondary: #818CF8; --short-deep: #080A1F; }
.short-video-band[data-short-color="silver"] { --short-accent: #CBD5E1; --short-secondary: #94A3B8; --short-deep: #080A0D; }
.short-video-band[data-short-color="rose"] { --short-accent: #F4A6A6; --short-secondary: #C08457; --short-deep: #160C0E; }
.short-video-band[data-short-color="cyan"] { --short-accent: #22D3EE; --short-secondary: #0891B2; --short-deep: #031018; }
.short-video-band[data-short-color="violet"] { --short-accent: #A855F7; --short-secondary: #D946EF; --short-deep: #10051C; }
.short-video-band[data-short-color="copper"] { --short-accent: #B87333; --short-secondary: #FFB36A; --short-deep: #140B05; }
.short-video-band[data-short-color="sapphire"] { --short-accent: #2563EB; --short-secondary: #38BDF8; --short-deep: #050B1A; }
.short-video-band[data-short-color="jade"] { --short-accent: #5E7F77; --short-secondary: #9AB8AA; --short-deep: #071211; }
.short-video-band[data-short-color="damson"] { --short-accent: #7A2346; --short-secondary: #B85E7B; --short-deep: #12070D; }
.short-video-band[data-short-color="graphite"] { --short-accent: #D7DEE8; --short-secondary: #8E99A8; --short-deep: #050607; }
.short-video-band[data-short-color="abyss"] { --short-accent: #0B7285; --short-secondary: #35C2B7; --short-deep: #020B10; }

.short-video-band::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 18%;
  height: 360px;
  background: linear-gradient(90deg, rgba(36,95,219,0.06), rgba(242,78,130,0.1), rgba(17,135,125,0.06));
  filter: blur(44px);
  transform: rotate(4deg);
  pointer-events: none;
}

.short-video-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.short-video-copy h2 {
  max-width: 680px;
}

.short-video-copy > p {
  max-width: 660px;
  margin: 20px 0 26px;
  color: #667084;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.85;
}

.workflow-cards {
  display: grid;
  gap: 12px;
  max-width: 640px;
}

.workflow-cards article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(216,221,230,0.82);
  border-radius: 18px;
  background: rgba(255,255,255,0.74);
  box-shadow: 0 18px 44px rgba(17,21,28,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.workflow-cards article span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--short-accent), var(--short-secondary));
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 14px 28px var(--short-glow);
}

.workflow-cards article strong {
  color: #11151c;
  font-size: 17px;
}

.workflow-cards article p {
  margin: 0;
  color: #667084;
  font-size: 14px;
}

.ratio-demo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 221, 230, 0.92);
  border-radius: clamp(34px, 4vw, 58px);
  padding: clamp(18px, 2.2vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 251, 0.76)),
    radial-gradient(circle at 50% 42%, var(--short-soft), transparent 40%);
  box-shadow: 0 34px 110px rgba(38, 45, 64, 0.16);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.ratio-demo-orbit {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
  transition: border-color 520ms ease, box-shadow 520ms ease, opacity 520ms ease;
}

.ratio-demo-orbit.orbit-one {
  width: 520px;
  height: 520px;
  border: 1px solid color-mix(in srgb, var(--short-accent) 34%, transparent);
  box-shadow: 0 0 90px var(--short-glow);
  opacity: 0.9;
  transform: rotate(-18deg);
}

.ratio-demo-orbit.orbit-two {
  width: 720px;
  height: 390px;
  border: 1px solid color-mix(in srgb, var(--short-secondary) 30%, transparent);
  opacity: 0.84;
  transform: rotate(18deg);
}

.ratio-demo-prism {
  position: absolute;
  z-index: 1;
  right: 8%;
  top: 8%;
  width: 150px;
  height: 150px;
  opacity: 0.62;
  pointer-events: none;
}

.ratio-demo-prism span {
  position: absolute;
  inset: 0;
  border-radius: 42% 58% 48% 52%;
  background: linear-gradient(135deg, var(--short-accent), var(--short-secondary));
  filter: blur(10px);
  opacity: 0.24;
  transform: rotate(calc(var(--i, 1) * 32deg));
}

.ratio-demo-prism span:nth-child(2) {
  --i: 2;
  inset: 24px;
}

.ratio-demo-prism span:nth-child(3) {
  --i: 3;
  inset: 48px;
}

.ratio-demo::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.28) 42%, transparent 62%);
  transform: translateX(-72%);
  opacity: 0;
  animation: ratio-sheen 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ratio-sheen {
  0%, 48% { transform: translateX(-72%); opacity: 0; }
  58% { opacity: 0.32; }
  80%, 100% { transform: translateX(72%); opacity: 0; }
}

.ratio-demo-top,
.ratio-demo-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ratio-demo-top {
  margin-bottom: 22px;
}

.ratio-demo-top span {
  display: block;
  margin-bottom: 3px;
  color: rgba(105,115,134,0.86);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.ratio-demo-top strong {
  color: #11151c;
  font-size: clamp(18px, 1.6vw, 24px);
}

.ratio-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(216,221,230,0.8);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
}

.ratio-switch button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #667084;
  background: transparent;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.ratio-demo[data-ratio-demo="wide"] [data-short-video-mode="wide"],
.ratio-demo[data-ratio-demo="portrait"] [data-short-video-mode="portrait"] {
  color: #fff;
  background: linear-gradient(135deg, var(--short-accent), var(--short-secondary));
  box-shadow: 0 10px 24px var(--short-glow);
}

.ratio-viewport {
  position: relative;
  z-index: 2;
  height: clamp(520px, 42vw, 620px);
  overflow: hidden;
  border-radius: 24px;
}

.ratio-stage {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 14px;
  align-content: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.985);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.ratio-stage-wide {
  width: min(100%, 760px);
  height: min(100%, 560px);
  margin: auto;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.ratio-stage-portrait {
  width: min(100%, 900px);
  height: min(100%, 560px);
  margin: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.ratio-demo[data-ratio-demo="wide"] .ratio-stage-wide,
.ratio-demo[data-ratio-demo="portrait"] .ratio-stage-portrait {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ratio-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 18px;
  background: #151a22;
  box-shadow: 0 18px 44px rgba(17,21,28,0.14);
  transition: box-shadow 0.35s ease, filter 0.35s ease;
}

.ratio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.ratio-stage-wide .ratio-card {
  aspect-ratio: auto;
}

.ratio-stage-portrait .ratio-card {
  aspect-ratio: auto;
}

.ratio-card.is-active {
  box-shadow: 0 30px 70px rgba(242,78,130,0.22);
}

.ratio-flag {
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(0,0,0,0.34);
}

.ratio-flag.fav {
  background: radial-gradient(circle at 30% 30%, #ff7aa6, #ff2559 55%, #b0002f 100%);
}

.ratio-flag.best {
  background: radial-gradient(circle at 30% 30%, #fff0b8 0%, #ffd46b 45%, #d19a2a 75%, #7a4f00 100%);
}

.ratio-card em {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  padding: 2px 6px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  font-size: 10px;
  font-style: normal;
}

.ratio-demo-bottom {
  margin-top: 20px;
  color: rgba(105,115,134,0.82);
  font-size: 13px;
}

.ratio-demo-bottom span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(216,221,230,0.76);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255,255,255,0.68);
  font-weight: 400;
}

.ratio-demo-bottom strong {
  margin-left: auto;
  color: #f24e82;
  font-size: 14px;
}

.space-teaser {
  position: relative;
  max-width: 880px;
  margin: clamp(64px, 8vw, 108px) auto 0;
  color: #667084;
  text-align: center;
  font-size: 16px;
}

.muted-band {
  background:
    linear-gradient(180deg, rgba(244,246,248,0.94), rgba(244,246,248,0.98)),
    url("images/555.jpg") center / cover no-repeat;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 36px;
}

.section-heading.product-heading {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 auto 18px;
  text-align: center;
}

.section-heading.product-heading h2 {
  width: min(100%, 1520px);
  max-width: none;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(40px, 4.1vw, 68px);
  line-height: 1.14;
  text-wrap: normal;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.library-panel {
  padding: 24px;
  border-radius: 8px;
  color: #e7edf7;
  background: #151a22;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.search-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 6px;
  background: #242b36;
}

.search-row span { color: #9da8bb; }

.result-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.result-list div {
  display: flex;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  background: #1b212b;
}

.result-list strong {
  color: #78d6cb;
  font-size: 22px;
}

.result-list span { color: #b7c0cf; }

.index-line {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
}

.index-line span {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--amber));
}

.copy-stack p,
.download-section p {
  color: var(--muted);
  font-size: 16px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  background: linear-gradient(var(--teal), var(--teal)) 0 0.75em / 14px 2px no-repeat;
}

.feature-grid,
.reliability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-grid article,
.reliability-grid div {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.feature-grid p,
.reliability-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.architecture-map {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 1fr);
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.arch-node {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.arch-node.primary {
  grid-row: span 2;
  color: #fff;
  background: #151a22;
  border-color: #151a22;
}

.arch-node strong { font-size: 22px; }
.arch-node span { color: var(--muted); }
.arch-node.primary span { color: #cbd4e1; }

.reliability-band { background: #f8fafb; }

.download-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 7vw, 92px) clamp(24px, 6vw, 96px);
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(242,78,130,0.08), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(139,92,246,0.08), transparent 30%),
    linear-gradient(180deg, #11151c 0%, #0c1016 100%);
}

.download-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.download-section h2 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.download-section p {
  margin: 14px 0 0;
  max-width: 760px;
  color: rgba(203, 213, 225, 0.76);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
}

.download-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}

.download-primary,
.download-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 48px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.download-primary {
  color: #fff;
  background: linear-gradient(120deg, #f24e82, #8b5cf6);
  box-shadow: 0 14px 34px rgba(242,78,130,0.2);
}

.download-secondary {
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.045);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(24px, 6vw, 96px);
  color: #697386;
  background: #0c1016;
  font-size: 13px;
}

@media (max-width: 980px) {
  .product-pet-dynamic-cat {
    left: 14.2%;
    top: 5.6%;
    width: 20.8%;
  }
  .nav-links { display: none; }

  .nav-item,
  .nav-core-trigger {
    display: none;
  }
  .hero-canvas {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    transform: none;
  }
  .hero-grid,
  .split-layout,
  .short-video-shell,
  .section-heading,
  .architecture-map {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    min-height: auto;
    gap: 40px;
  }
  .hero-section { min-height: auto; }
  .product-stage { max-width: 760px; }
  .product-heading,
  .product-heading h2,
  .product-lead {
    text-align: center;
  }
  .product-stage {
    padding: 16px 0 0;
  }
  .product-window {
    border-radius: 22px;
    transform: none;
  }
  .product-window:hover {
    transform: translateY(-2px);
  }
  .product-callout {
    position: static;
    min-width: 0;
  }
  .product-stage {
    display: grid;
    gap: 12px;
  }
  .product-proof-grid {
    grid-template-columns: 1fr;
  }
  .ratio-viewport {
    height: 520px;
  }
  .ratio-stage-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .ratio-stage-portrait {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .feature-grid,
  .reliability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .arch-node.primary { grid-row: auto; }
}

@media (max-width: 680px) {
  .product-pet-dynamic-cat {
    left: 13.8%;
    top: 5.4%;
    width: 23%;
  }
  .site-header {
    align-items: flex-start;
    min-height: 0;
  }
  .header-action { display: none; }
  .brand { min-width: 0; }
  .hero-section {
    overflow-x: hidden;
    padding: 28px 20px 40px;
  }
  .hero-grid {
    gap: 34px;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-text h1 {
    font-size: clamp(34px, 12vw, 48px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
  html[data-website-locale="ja-JP"] .hero-text h1 {
    font-size: clamp(32px, 10.8vw, 44px);
  }
  .hero-text p {
    font-size: 16px;
    line-height: 1.7;
  }
  .hero-actions {
    gap: 12px;
    margin-bottom: 28px;
  }
  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    white-space: normal;
  }
  .hero-metrics > div {
    display: grid;
    gap: 4px;
    min-width: 0;
  }
  .hero-metrics span {
    font-size: 12px;
  }
  .hero-metrics .hero-metric-label {
    font-size: 11px;
    line-height: 1.35;
  }
  .hero-leadership {
    display: none;
  }
  .hero-canvas {
    max-width: 100%;
  }
  .hero-canvas .panel {
    padding: 14px;
    border-radius: 24px;
  }
  .panel-grid {
    gap: 8px;
  }
  .tile {
    min-height: clamp(108px, 30vw, 138px);
    border-radius: 12px;
  }
  .panel-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .feature-grid,
  .reliability-grid,
  .product-proof-grid,
  .stage-status {
    grid-template-columns: 1fr;
  }
  .ratio-viewport {
    height: 540px;
  }
  .ratio-stage-wide,
  .ratio-stage-portrait {
    gap: 10px;
  }
  .ratio-stage-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .ratio-stage-portrait {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .ratio-demo-top,
  .ratio-demo-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .ratio-switch {
    width: 100%;
  }
  .ratio-switch button {
    flex: 1 1 0;
  }
  .product-window-bar {
    grid-template-columns: auto 1fr;
  }
  .product-window-bar > span {
    display: none;
  }
  .product-window-bar strong {
    font-size: 11px;
  }
  .product-demo-layer[data-tour="preview"] .product-demo-cursor-label {
    left: 50%;
    top: auto;
    bottom: 11%;
    max-width: calc(100% - 40px);
    transform: translateX(-50%);
    white-space: normal;
    text-align: center;
  }
  .hotspot-preview {
    left: 23.5%;
    top: 26.2%;
    width: 68.5%;
    height: 45%;
  }
  .product-private-lock-demo {
    left: 20%;
    top: calc(17.2% - 6px);
    right: 2.5%;
    bottom: 4.4%;
    padding: 0;
  }
  .product-private-lock-frame {
    width: 430px;
    min-width: 430px;
    transform: scale(0.42);
    transform-origin: center center;
  }
  .product-private-lock-card {
    min-height: 318px;
    padding: 22px 24px 20px;
  }
  .product-private-lock-header {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    text-align: left;
  }
  .product-private-lock-state {
    justify-items: end;
  }
  .product-private-lock-input-row {
    height: 44px;
    align-items: center;
    flex-direction: row;
  }
  .product-private-lock-input-row > span {
    padding: 0 12px;
    text-align: left;
  }
  .product-private-lock-input-row button {
    width: auto;
  }
  .media-wall { grid-template-columns: 1fr 1fr; }
  .media-tile,
  .media-tile.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 154px;
  }
  .download-section,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-demo-layer[data-tour="pet"] .product-pet-dynamic-cat {
    animation: none;
  }
}
