:root {
  --shade: #2b0909;
  --body: rgba(107, 36, 36, 0.72);
  --soft: rgba(127, 29, 29, 0.58);
  --primary: #9f1239;
  --primary-2: #c5162f;
  --primary-3: #ff5a66;
  --surface: #fff8f4;
  --line: rgba(217, 45, 61, 0.2);
  --shadow: 0 18px 60px rgba(197, 22, 47, 0.12), inset 0 1px 0 rgba(255, 218, 198, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--shade);
  background: var(--surface);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body { margin: 0; overflow-x: hidden; background: var(--surface); }
body, button { font: inherit; }
button { cursor: default; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

@keyframes marqueeFlow { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollColUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
@keyframes scrollColDown { 0% { transform: translateY(-50%); } 100% { transform: translateY(0); } }
@keyframes shine { 0% { background-position: 170% 0; } 100% { background-position: -70% 0; } }
@keyframes heroSocialBubbleFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  32% { transform: translate3d(6px, -7px, 0) scale(1.025); }
  68% { transform: translate3d(-5px, 5px, 0) scale(0.99); }
}
@keyframes heroSocialRingSweep { to { transform: rotate(360deg); } }
@keyframes heroSocialRingPulse {
  0%, 100% { opacity: 0.36; transform: scale(0.96); }
  50% { opacity: 0.9; transform: scale(1.04); }
}
@keyframes heroActionHotspotFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  28% { transform: translate3d(4px, -5px, 0); }
  56% { transform: translate3d(-3px, -2px, 0); }
  78% { transform: translate3d(2px, 4px, 0); }
}
@keyframes heroActionHotspotPulse {
  0%, 100% { opacity: 0.38; transform: scale(0.9); }
  54% { opacity: 0.92; transform: scale(1.08); }
}
@keyframes heroActionIconTrace {
  0% { opacity: 0.82; stroke-dashoffset: -70; transform: scale(0.92); }
  35% { opacity: 1; stroke-dashoffset: 0; transform: scale(1); }
  70% { opacity: 1; stroke-dashoffset: 0; transform: scale(1); }
  100% { opacity: 0.82; stroke-dashoffset: 70; transform: scale(0.94); }
}
@keyframes heroModelLoaderPoster {
  0% {
    opacity: 0.78;
    transform: translate3d(0, 3px, 0);
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.28),
      0 0 34px rgba(255, 117, 72, 0.42),
      0 0 76px rgba(197, 22, 47, 0.28);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, -3px, 0);
    text-shadow:
      0 0 12px rgba(255, 255, 255, 0.44),
      0 0 48px rgba(255, 117, 72, 0.56),
      0 0 108px rgba(197, 22, 47, 0.38);
  }
}
@keyframes heroActionCardFloat {
  0%, 100% { transform: translate3d(var(--card-anchor-x), 0, 0) rotate(var(--card-rotate)); }
  46% { transform: translate3d(calc(var(--card-anchor-x) + 3px), -6px, 0) rotate(calc(var(--card-rotate) + 0.5deg)); }
  72% { transform: translate3d(calc(var(--card-anchor-x) - 2px), -2px, 0) rotate(calc(var(--card-rotate) - 0.3deg)); }
}
@keyframes heroRunningSpinner { to { transform: rotate(360deg); } }
@keyframes homeRedMagneticSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.06); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes homeRedMagneticDriftOne {
  0%, 100% { opacity: 0.42; transform: translate3d(-4%, 2%, 0) rotate(-8deg) scale(0.94); }
  46% { opacity: 0.64; transform: translate3d(11%, 8%, 0) rotate(7deg) scale(1.14); }
  74% { opacity: 0.5; transform: translate3d(4%, -5%, 0) rotate(3deg) scale(1.02); }
}
@keyframes homeRedMagneticDriftTwo {
  0%, 100% { opacity: 0.44; transform: translate3d(5%, 0, 0) rotate(9deg) scale(1.03); }
  42% { opacity: 0.62; transform: translate3d(-10%, -8%, 0) rotate(-7deg) scale(1.16); }
  76% { opacity: 0.48; transform: translate3d(-3%, 6%, 0) rotate(-2deg) scale(0.98); }
}
@keyframes homeRedMagneticDriftThree {
  0%, 100% { opacity: 0.28; transform: translate3d(-6%, -4%, 0) rotate(16deg) scale(0.92); }
  50% { opacity: 0.46; transform: translate3d(6%, 5%, 0) rotate(-10deg) scale(1.12); }
}

.home-page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--shade);
}
.home-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.home-red-magnetic-field {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 55, 82, 0.24), transparent 31%),
    radial-gradient(circle at 83% 76%, rgba(255, 111, 66, 0.24), transparent 34%),
    linear-gradient(180deg, #fffaf7 0%, #fff1ed 48%, #fff7f3 100%);
}
.home-red-magnetic-field::before,
.home-red-magnetic-field::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.home-red-magnetic-field::before {
  inset: -24%;
  background:
    conic-gradient(from 28deg at 52% 48%, transparent 0 14%, rgba(255, 32, 67, 0.3) 21%, transparent 34%, rgba(255, 125, 79, 0.24) 48%, transparent 62%, rgba(151, 0, 25, 0.2) 76%, transparent 100%);
  filter: blur(34px) saturate(1.28);
  opacity: 0.9;
  transform-origin: 50% 50%;
  animation: homeRedMagneticSpin 22s linear infinite;
}
.home-red-magnetic-field::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 34%, rgba(255, 236, 228, 0.46)),
    radial-gradient(ellipse at 50% 108%, rgba(255, 255, 255, 0.46), transparent 62%);
}
.home-red-magnetic-field__ribbon {
  position: absolute;
  border-radius: 999px;
  mix-blend-mode: multiply;
  filter: blur(30px) saturate(1.18);
  opacity: 0.5;
  will-change: transform, opacity;
}
.home-red-magnetic-field__ribbon--one {
  top: -10%;
  left: -12%;
  width: 58vw;
  height: 34vw;
  min-width: 420px;
  min-height: 240px;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 44, 74, 0.32), transparent 67%);
  animation: homeRedMagneticDriftOne 15s ease-in-out infinite;
}
.home-red-magnetic-field__ribbon--two {
  right: -15%;
  bottom: -16%;
  width: 54vw;
  height: 34vw;
  min-width: 390px;
  min-height: 250px;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 116, 70, 0.3), transparent 68%);
  animation: homeRedMagneticDriftTwo 18s ease-in-out infinite;
}
.home-red-magnetic-field__ribbon--three {
  top: 20%;
  left: 34%;
  width: 34vw;
  height: 50vw;
  min-width: 250px;
  min-height: 390px;
  background: radial-gradient(ellipse at 50% 50%, rgba(160, 0, 28, 0.2), transparent 70%);
  filter: blur(42px) saturate(1.12);
  opacity: 0.38;
  animation: homeRedMagneticDriftThree 20s ease-in-out infinite;
}
.home-page-shell__track {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}
.home-screen {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  scroll-margin-top: 0;
}
.home-container {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}
.section-heading {
  position: relative;
  z-index: 2;
  text-align: center;
}
.section-label {
  margin-bottom: 6px;
  color: var(--primary-3);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(197, 22, 47, 0.36);
}
.section-heading h2,
.section-row h2,
.models-block h2 {
  color: var(--shade);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}
.section-heading p {
  max-width: 620px;
  margin: 8px auto 0;
  color: var(--body);
  font-size: 13.5px;
  line-height: 1.7;
}

.deep-sea-hero {
  display: flex;
  height: 100svh;
  min-height: 640px;
  align-items: center;
  justify-content: center;
}
.hero-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  height: 92px;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  padding: 28px 48px 0;
}
.hero-language {
  display: flex;
  height: 40px;
  min-width: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-nav-menu { position: relative; z-index: 40; }
.hero-nav-menu summary {
  display: flex;
  height: 40px;
  width: 40px;
  list-style: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 90, 102, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--primary);
  box-shadow: 0 10px 28px rgba(197, 22, 47, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}
.hero-nav-menu summary::-webkit-details-marker { display: none; }
.hero-nav-menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  min-width: 184px;
  gap: 4px;
  border: 1px solid rgba(255, 90, 102, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px;
  color: rgba(127, 29, 29, 0.84);
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 20px 50px rgba(197, 22, 47, 0.12), 0 0 28px rgba(197, 22, 47, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}
.hero-nav-menu__panel a,
.hero-nav-menu__panel span {
  border-radius: 8px;
  padding: 10px 12px;
}
.hero-copy-layer {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  display: flex;
  height: 100%;
  width: 46%;
  align-items: center;
  padding: 0 0 0 48px;
  margin-top: -5%;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.34s ease, visibility 0.34s ease;
}
.deep-sea-hero.is-hero-model-visible .hero-copy-layer {
  opacity: 1;
  visibility: visible;
}
.hero-copy-layer__inner { width: 100%; max-width: 840px; }
.shiny-brand {
  display: inline-block;
  color: transparent;
  font-size: clamp(36px, 5vw, 88px);
  font-weight: 950;
  line-height: 1;
  background: linear-gradient(100deg, #4a0505 20%, #f06a4d 38%, #4a0505 58%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 2s linear infinite;
}
.hero-copy-layer h1 {
  max-width: 720px;
  margin-top: 20px;
  color: var(--shade);
  font-size: clamp(76px, 6.4vw, 132px);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(255, 176, 122, 0.18);
}
.hero-copy-layer h1 span { display: block; }
.hero-copy-layer h1 strong {
  color: transparent;
  background: linear-gradient(90deg, var(--primary-2), #ef3f32, #7f1022);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}
.hero-identity-actions {
  pointer-events: auto;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-identity-actions button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  width: 240px;
  min-width: 240px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 119, 23, 0.82);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 132, 28, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(10, 8, 6, 0.98), rgba(0, 0, 0, 0.94) 48%, rgba(16, 8, 3, 0.98));
  color: #fff9f4;
  font-size: clamp(15px, 1.18vw, 19px);
  font-weight: 900;
  letter-spacing: 1.4px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42), 0 0 30px rgba(255, 104, 18, 0.38), inset 0 1px 0 rgba(255, 185, 92, 0.32), inset 0 -14px 30px rgba(255, 86, 0, 0.2);
  text-shadow: 0 0 8px rgba(255, 249, 244, 0.9), 0 0 18px rgba(235, 115, 31, 0.66);
}
.hero-model-stage {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 10;
}
.hero-model-loader {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translate3d(10%, 0, 0);
  transition:
    opacity 0.52s ease,
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0.52s ease;
  visibility: visible;
}
.hero-model-loader--hidden {
  opacity: 0;
  transform: translate3d(10%, -12px, 0);
  visibility: hidden;
}
.hero-model-loader__count {
  color: rgba(255, 244, 232, 0.94);
  font-size: clamp(112px, 20vw, 292px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.38),
    0 0 42px rgba(255, 117, 72, 0.5),
    0 0 96px rgba(197, 22, 47, 0.34);
  animation: heroModelLoaderPoster 0.72s ease-in-out infinite alternate;
}
.hero-octo {
  position: absolute;
  right: -1.5%;
  top: 55%;
  z-index: 7;
  width: min(61vw, 940px);
  transform: translateY(-50%);
  opacity: 0.97;
  filter: drop-shadow(0 24px 44px rgba(159, 18, 57, 0.2)) drop-shadow(0 0 34px rgba(255, 117, 72, 0.2));
}
.hero-octo-canvas {
  position: absolute;
  inset: 0;
  z-index: 7;
  width: 100%;
  height: 100%;
  cursor: grab;
  opacity: 0;
  pointer-events: auto;
  touch-action: none;
  transition: opacity 0.45s ease;
}
.hero-octo-canvas.is-ready {
  opacity: 0.97;
}
.hero-octo-canvas.is-dragging {
  cursor: grabbing;
}
.hero-octo-fallback {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.hero-model-stage.is-three-failed .hero-octo-fallback {
  opacity: 0.97;
  visibility: visible;
}
.hero-glasses-frame {
  position: absolute;
  right: 27.9%;
  top: 40.5%;
  z-index: 9;
  width: min(28.1vw, 360px);
  max-width: none;
  opacity: 0;
  pointer-events: none;
  --bridge-angle: 0deg;
  transform: translate(-50%, -50%) rotate(var(--bridge-angle));
  filter: drop-shadow(0 0 10px rgba(255, 209, 168, 0.42)) drop-shadow(0 0 26px rgba(235, 115, 31, 0.34));
  transition: opacity 0.18s ease;
}
.hero-model-stage.is-model-visible .hero-glasses-frame {
  opacity: 0.96;
}
.hero-eye-labels {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.hero-model-stage.is-model-visible .hero-eye-labels {
  opacity: 1;
}
.hero-eye-label {
  position: absolute;
  display: inline-flex;
  width: min(12.8vw, 164px);
  height: min(6.8vw, 86px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff9f4;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.94), 0 0 15px rgba(235, 115, 31, 0.78), 0 1px 2px rgba(0, 0, 0, 0.9);
  filter: drop-shadow(0 0 12px rgba(235, 115, 31, 0.78));
  transform: translate(-50%, -50%);
  transition: opacity 0.18s ease;
}
.hero-eye-label--agent {
  left: calc(100% - 38.2%);
  top: 31.9%;
}
.hero-eye-label--human {
  left: calc(100% - 27.2%);
  top: 31.9%;
}
.hero-eye-label span {
  display: block;
  font-size: clamp(16px, 1.88vw, 24px);
}
.hero-eye-label small {
  display: block;
  color: #ffe8d6;
  font-size: clamp(8px, 0.94vw, 12px);
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-top: 5px;
}
.hero-social-bubbles {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 8;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.hero-model-stage.is-model-visible .hero-social-bubbles {
  opacity: 0.98;
}
.hero-social-bubbles__bubble {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  opacity: 0.94;
  transform: translate3d(-50%, 0, 0) scale(1);
}
.hero-social-bubbles__float {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.72) 0 8%, transparent 22%),
    radial-gradient(circle at 55% 62%, rgba(255, 90, 102, 0.22) 0 38%, transparent 72%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.88) 0 50%, rgba(255, 244, 238, 0.7) 72%, rgba(255, 90, 102, 0.18) 100%);
  box-shadow: inset 0 0 18px rgba(255, 218, 198, 0.1), inset -8px -10px 18px rgba(159, 18, 57, 0.26), 0 0 18px rgba(159, 18, 57, 0.22), 0 0 42px rgba(159, 18, 57, 0.12);
  animation: heroSocialBubbleFloat var(--float) ease-in-out var(--delay) infinite;
}
.hero-social-bubbles__float::before {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 228deg, transparent 0 36deg, rgba(255, 196, 142, 0.9) 48deg, rgba(217, 45, 61, 0.52) 78deg, transparent 112deg 188deg, rgba(255, 137, 76, 0.82) 212deg, rgba(159, 18, 57, 0.42) 246deg, transparent 286deg 360deg);
  content: "";
  filter: drop-shadow(0 0 10px rgba(255, 102, 54, 0.42));
  mask: radial-gradient(circle, transparent calc(50% - 1.6px), #000 calc(50% - 0.9px));
  animation: heroSocialRingSweep 5.8s linear infinite;
}
.hero-social-bubbles__float::after {
  position: absolute;
  left: 18%;
  top: 14%;
  width: 20%;
  height: 14%;
  border-radius: 999px;
  background: rgba(255, 237, 220, 0.42);
  content: "";
  filter: blur(0.5px);
}
.hero-social-bubbles__ring--outer {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 112, 58, 0.08);
  border-radius: inherit;
  box-shadow: 0 0 22px rgba(255, 101, 48, 0.16);
  animation: heroSocialRingPulse 3.6s ease-in-out infinite;
}
.hero-social-bubbles__ring--inner {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 218, 198, 0.06);
  border-radius: inherit;
}
.hero-social-bubbles__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44%;
  height: 44%;
  color: var(--icon-color);
  filter: drop-shadow(0 0 9px rgba(159, 18, 57, 0.36));
}
.hero-social-bubbles__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.hero-action-hotspots {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 21;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.hero-model-stage.is-model-visible .hero-action-hotspots {
  opacity: 1;
}
.hero-action-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff4e8;
  opacity: 1;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
  transition: color 180ms ease, transform 180ms ease;
}
.hero-action-hotspot--growth { --x: 46%; --y: 81%; }
.hero-action-hotspot--running { --x: 61%; --y: 86%; }
.hero-action-hotspot__float {
  position: relative;
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 137, 76, 0.42);
  border-radius: inherit;
  background: radial-gradient(circle at 34% 24%, rgba(255, 244, 232, 0.68) 0 9%, transparent 25%), radial-gradient(circle at 50% 54%, rgba(255, 128, 72, 0.3) 0 38%, rgba(22, 4, 3, 0.96) 72%), linear-gradient(145deg, rgba(77, 15, 9, 0.96), rgba(10, 2, 2, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -14px 26px rgba(72, 8, 4, 0.58), 0 0 18px rgba(255, 244, 232, 0.2), 0 0 34px rgba(255, 117, 72, 0.32), 0 0 64px rgba(159, 18, 57, 0.2);
  animation: heroActionHotspotFloat 4.8s ease-in-out var(--delay, 0s) infinite;
  font-weight: 950;
  transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.hero-action-hotspot svg {
  position: relative;
  z-index: 2;
  overflow: visible;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
  stroke-dasharray: 70;
  stroke-dashoffset: -70;
  animation: heroActionIconTrace 2.65s cubic-bezier(0.35, 0, 0.15, 1) var(--delay, 0s) infinite;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.92)) drop-shadow(0 0 14px rgba(255, 244, 232, 0.66)) drop-shadow(0 0 22px rgba(255, 117, 72, 0.46));
}
.hero-action-hotspot__float::before {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 232, 214, 0.32);
  border-radius: inherit;
  content: "";
  opacity: 0.76;
  animation: heroActionHotspotPulse 2.9s ease-in-out infinite;
}
.hero-action-hotspot__float::after {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 218deg, transparent 0 34deg, rgba(255, 180, 122, 0.9) 52deg, rgba(255, 92, 55, 0.62) 86deg, transparent 124deg 216deg, rgba(255, 137, 76, 0.82) 246deg, transparent 292deg 360deg);
  content: "";
  mask: radial-gradient(circle, transparent calc(50% - 1.4px), #000 calc(50% - 0.7px));
  animation: heroSocialRingSweep 5.5s linear infinite;
}
.hero-action-hotspot__halo {
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  background: rgba(255, 137, 76, 0.12);
  filter: blur(8px);
}
.hero-action-hotspot:hover,
.hero-action-hotspot:focus-visible,
.hero-action-hotspot--active {
  color: #ffffff;
  transform: translate3d(-50%, 0, 0) scale(1.08);
  outline: none;
}
.hero-action-hotspot:hover .hero-action-hotspot__float,
.hero-action-hotspot:focus-visible .hero-action-hotspot__float,
.hero-action-hotspot--active .hero-action-hotspot__float {
  border-color: rgba(255, 207, 168, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), inset 0 -14px 26px rgba(72, 8, 4, 0.48), 0 0 18px rgba(255, 244, 232, 0.32), 0 0 34px rgba(255, 117, 72, 0.5), 0 0 72px rgba(197, 22, 47, 0.28);
}
.hero-action-card {
  position: absolute;
  z-index: 4;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(255, 137, 76, 0.2);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(45, 12, 9, 0.86), rgba(9, 3, 4, 0.92) 58%, rgba(40, 7, 5, 0.86)), radial-gradient(circle at 82% 18%, rgba(255, 94, 47, 0.2), transparent 44%);
  color: #fff5ee;
  box-shadow: inset 0 1px 0 rgba(255, 226, 208, 0.1), 0 18px 70px rgba(0, 0, 0, 0.42), 0 0 34px rgba(197, 43, 20, 0.16);
  backdrop-filter: blur(15px);
  --card-anchor-x: 0px;
  --card-rotate: -2.5deg;
  transform: translate3d(var(--card-anchor-x), 0, 0) rotate(var(--card-rotate));
  animation: heroActionCardFloat 5.8s ease-in-out 0.34s infinite;
}
.hero-action-card.is-open {
  display: block;
}
.hero-action-card--growth {
  left: 25%;
  top: 73%;
  width: min(27vw, 315px);
  min-width: 258px;
  padding: 17px 18px 15px;
}
.hero-action-card--running {
  left: 44%;
  top: 61%;
  width: min(30vw, 340px);
  min-width: 286px;
  padding: 18px 19px 17px;
  --card-rotate: -1deg;
}
.hero-action-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-action-card__title {
  color: rgba(255, 248, 242, 0.94);
  font-size: 17px;
  font-weight: 850;
}
.hero-action-card__meta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
}
.hero-action-card__badge {
  border-radius: 9px;
  background: rgba(255, 190, 158, 0.08);
  color: rgba(255, 180, 122, 0.9);
  font-size: 12px;
  font-weight: 850;
  padding: 7px 9px;
}
.hero-action-card__close {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 210, 184, 0.2);
  border-radius: 999px;
  background: rgba(255, 190, 158, 0.06);
  color: rgba(255, 232, 214, 0.76);
  padding: 0;
  pointer-events: auto;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}
.hero-action-card__close::before,
.hero-action-card__close::after {
  position: absolute;
  width: 9px;
  height: 1.6px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}
.hero-action-card__close::before { transform: rotate(45deg); }
.hero-action-card__close::after { transform: rotate(-45deg); }
.hero-action-card__close:hover,
.hero-action-card__close:focus-visible {
  border-color: rgba(255, 232, 214, 0.42);
  background: rgba(255, 190, 158, 0.14);
  color: #fff8f2;
  outline: none;
  transform: scale(1.06);
}
.hero-action-growth {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(86px, 1fr) minmax(82px, 37%);
  gap: 3px 12px;
  align-items: end;
  padding-top: 18px;
}
.hero-action-growth__stat {
  color: #fff9f5;
  font-size: 33px;
  font-weight: 700;
  line-height: 0.98;
}
.hero-action-growth__compare {
  color: rgba(255, 236, 221, 0.62);
  font-size: 11px;
  font-weight: 800;
}
.hero-action-growth-line {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  overflow: visible;
}
.hero-action-growth-line path {
  fill: none;
  stroke: #ff7446;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(255, 91, 48, 0.54));
}
.hero-action-running {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  padding-top: 14px;
}
.hero-action-running__item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 10px;
}
.hero-action-running__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 104, 61, 0.18);
  color: #ff996d;
}
.hero-action-running__name {
  display: block;
  color: rgba(255, 248, 242, 0.9);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
}
.hero-action-running__detail {
  display: block;
  color: rgba(255, 232, 214, 0.56);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.2;
}
.hero-action-running__status { color: #ff9a70; }
.hero-action-running__spinner {
  display: inline-block;
  width: 19px;
  height: 19px;
  border: 2px solid rgba(255, 137, 76, 0.34);
  border-top-color: #ff9a70;
  border-radius: 999px;
  animation: heroRunningSpinner 0.9s linear infinite;
}
.hero-vignette {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 12;
  background: transparent;
}

.cases-screen {
  padding: 64px 0 42px;
}
.marquee-wrap {
  position: relative;
  margin-top: 34px;
  padding: 2px 0;
}
.edge {
  pointer-events: none;
  position: absolute;
  inset-block: 0;
  z-index: 3;
  width: 96px;
}
.edge-left { left: 0; background: linear-gradient(90deg, rgba(255, 249, 245, 0.28), transparent); }
.edge-right { right: 0; background: linear-gradient(270deg, rgba(255, 249, 245, 0.28), transparent); }
.cases-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 2px 28px 8px;
  animation: marqueeFlow 90s linear infinite;
}
.case-card {
  position: relative;
  display: flex;
  width: 360px;
  min-height: 356px;
  flex-shrink: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
  padding: 20px;
}
.case-tag {
  display: inline-block;
  width: fit-content;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0.02em;
  padding: 3px 10px;
  box-shadow: 0 0 18px rgba(197, 22, 47, 0.38);
}
.case-card h3 {
  margin: 12px 0 10px;
  color: var(--shade);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.36;
}
.case-goals {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.case-goals span {
  border-radius: 999px;
  background: rgba(225, 29, 72, 0.16);
  color: var(--primary);
  font-size: 10px;
  font-weight: 750;
  padding: 3px 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 90, 102, 0.28);
}
.case-benefit {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  border: 1px solid rgba(217, 45, 61, 0.22);
  border-radius: 10px;
  background: rgba(159, 18, 57, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.5;
  padding: 12px;
}
.case-card p {
  color: rgba(107, 36, 36, 0.74);
  font-size: 11.5px;
  line-height: 1.6;
  margin-top: 8px;
}
.case-card strong { color: var(--shade); }
.case-risk {
  color: rgba(255, 90, 102, 0.72) !important;
  font-size: 10px !important;
  font-style: italic;
}
.screen-action { margin-top: 20px; text-align: center; }
.ghost-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(217, 45, 61, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: rgba(255, 90, 102, 0.72);
  font-size: 12px;
  font-weight: 650;
  padding: 9px 16px;
}

.agents-screen {
  padding: 76px 24px 0;
}
.agents-glow {
  position: absolute;
  left: 50%;
  top: 96px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(197, 22, 47, 0.16);
  filter: blur(64px);
  transform: translateX(-50%);
}
.agents-heading { max-width: 840px; margin: 0 auto; }
.agent-orbit {
  position: relative;
  width: min(1100px, 100%);
  height: 560px;
  margin: 54px auto 0;
}
.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring--inner {
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(217, 45, 61, 0.28);
}
.orbit-ring--outer {
  width: 620px;
  height: 620px;
  border: 1px solid rgba(217, 45, 61, 0.16);
}
.agent-card {
  position: absolute;
  z-index: 4;
  width: 296px;
  border: 1px solid rgba(217, 45, 61, 0.18);
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 48px rgba(197, 22, 47, 0.1), inset 0 1px 0 rgba(255, 218, 198, 0.06);
  padding: 16px;
}
.agent-card--center {
  left: 50%;
  top: 50%;
  width: 300px;
  border-radius: 30px;
  padding: 24px;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 30px 90px rgba(197, 22, 47, 0.12), inset 0 1px 0 rgba(255, 218, 198, 0.08);
}
.agent-card--orbit { transform: translate(-50%, -50%); }
.agent-connector {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  height: 2px;
  transform-origin: left;
  background: linear-gradient(90deg, rgba(217, 45, 61, 0.44), transparent);
}
.agent-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.agent-card--center .agent-top { display: block; }
.agent-avatar {
  display: inline-flex;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(217, 45, 61, 0.22);
  border-radius: 999px;
  background: rgba(255, 240, 230, 0.92);
  box-shadow: 0 15px 40px rgba(197, 22, 47, 0.14);
}
.agent-card--center .agent-avatar {
  width: 96px;
  height: 96px;
}
.agent-avatar img { width: 100%; height: 100%; object-fit: cover; }
.agent-card h3 {
  color: var(--shade);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.2;
}
.agent-card--center h3 {
  margin-top: 18px;
  font-size: 28px;
}
.agent-role {
  margin-top: 4px;
  color: var(--primary-3);
  font-size: 14px;
}
.agent-card p {
  margin-top: 12px;
  color: var(--body);
  font-size: 13px;
  line-height: 1.55;
}
.agent-card--center p {
  font-size: 14px;
  line-height: 1.72;
}
.agent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.agent-card--center .agent-tags { justify-content: center; }
.agent-tags span {
  border-radius: 999px;
  background: rgba(159, 18, 57, 0.14);
  color: var(--primary);
  font-size: 12px;
  padding: 5px 10px;
  box-shadow: inset 0 0 0 1px rgba(217, 45, 61, 0.18);
}

.skills-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 0;
}
.section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.primary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 750;
  padding: 10px 16px;
  box-shadow: 0 0 26px rgba(197, 22, 47, 0.32);
}
.skills-columns {
  display: flex;
  height: 320px;
  gap: 14px;
  overflow: hidden;
}
.skill-col {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  animation: scrollColUp 28s linear infinite;
}
.skill-col:nth-child(even) {
  animation-name: scrollColDown;
  animation-duration: 32s;
}
.skill-card {
  min-height: 86px;
  flex: 0 0 auto;
  border: 1px solid rgba(217, 45, 61, 0.18);
  border-radius: 10px;
  background: white;
  box-shadow: 0 12px 38px rgba(197, 22, 47, 0.1), inset 0 1px 0 rgba(255, 218, 198, 0.06);
  padding: 14px 16px;
}
.skill-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--shade);
  font-size: 12.5px;
  font-weight: 850;
}
.skill-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 7px;
  background: rgba(217, 45, 61, 0.1);
  color: var(--primary-2);
  font-size: 13px;
}
.skill-card p {
  color: rgba(127, 29, 29, 0.62);
  font-size: 11px;
  line-height: 1.45;
}
.models-block {
  margin-top: 86px;
}
.models-block h2 { margin-bottom: 18px; }
.models-marquee {
  overflow: hidden;
  padding: 4px 0;
}
.models-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marqueeFlow 55s linear infinite;
}
.model-item {
  display: grid;
  width: 112px;
  flex: 0 0 auto;
  place-items: center;
  gap: 10px;
  color: var(--body);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.model-logo {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  font-size: 16px;
  font-weight: 950;
  box-shadow: none;
}
.model-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pricing-screen {
  padding: 56px 28px 44px;
}
.billing-toggle {
  display: flex;
  width: fit-content;
  align-items: center;
  margin: 28px auto;
  border: 1px solid rgba(217, 45, 61, 0.2);
  border-radius: 999px;
  background: white;
  padding: 4px;
}
.billing-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--body);
  font-size: 14px;
  font-weight: 720;
  padding: 10px 20px;
}
.billing-toggle button.is-active {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 20px rgba(197, 22, 47, 0.34);
}
.billing-toggle span { font-size: 12px; font-weight: 850; }
.pricing-grid {
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 0 auto;
}
.plan-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  border: 1px solid rgba(217, 45, 61, 0.2);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
  padding: 24px;
}
.plan-card.is-popular {
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow);
}
.plan-popular {
  position: absolute;
  left: 50%;
  top: -14px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 750;
  padding: 5px 16px;
  transform: translateX(-50%);
}
.plan-card h3 {
  color: var(--shade);
  font-size: 18px;
  font-weight: 800;
}
.plan-card p {
  margin-top: 6px;
  color: var(--body);
  font-size: 14px;
}
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 22px;
}
.plan-price strong {
  color: var(--shade);
  font-size: 42px;
  line-height: 0.9;
}
.plan-price span {
  color: var(--body);
  font-size: 14px;
}
.annual-note {
  height: 18px;
  margin: 8px 0 14px;
  color: var(--body);
  font-size: 12px;
}
.annual-note strong { color: var(--primary-3); }
.plan-credits {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  background: rgba(159, 18, 57, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 750;
  padding: 10px 12px;
}
.plan-features {
  display: grid;
  flex: 1;
  align-content: start;
  gap: 12px;
  margin: 22px 0;
}
.plan-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--shade);
  font-size: 14px;
}
.plan-feature.is-no {
  color: rgba(127, 29, 29, 0.48);
}
.plan-card .plan-button {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--shade);
  font-size: 14px;
  font-weight: 720;
}
.plan-card.is-popular .plan-button {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.faq-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 28px;
}
.faq-panel {
  width: min(760px, 100%);
}
.faq-list {
  display: flex;
  max-height: 68svh;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
}
.faq-item {
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(217, 45, 61, 0.18);
  border-radius: 16px;
  background: white;
  backdrop-filter: blur(16px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.is-open {
  border-color: rgba(217, 45, 61, 0.52);
  box-shadow: 0 16px 46px rgba(197, 22, 47, 0.14);
}
.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--shade);
  padding: 16px 22px;
  text-align: left;
  font-size: 15px;
  font-weight: 760;
}
.faq-chevron {
  position: relative;
  display: inline-flex;
  width: 28px;
  height: 28px;
  min-width: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--primary-3);
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}
.faq-chevron::before {
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transform-origin: 50% 50%;
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-chevron {
  background: var(--primary);
  color: white;
}
.faq-item.is-open .faq-chevron::before {
  transform: translateY(2px) rotate(225deg);
}
.faq-answer {
  display: none;
  margin: 0 22px 18px;
  border-top: 1px solid rgba(217, 45, 61, 0.18);
  color: var(--body);
  font-size: 13.5px;
  line-height: 1.75;
  padding-top: 14px;
}
.faq-item.is-open .faq-answer { display: block; }
.faq-answer p { margin: 0 0 6px; }
.faq-answer ul,
.faq-answer ol { margin: 4px 0 8px 20px; padding: 0; }
.faq-answer strong { color: var(--shade); font-weight: 760; }

.footer-screen {
  min-height: 100svh;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.08), rgba(255, 243, 240, 0.24), rgba(255, 249, 245, 0.34));
  padding: 76px 28px 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--shade);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}
.cta-section p {
  margin: 10px 0 24px;
  color: var(--body);
  font-size: 13px;
}
.cta-button {
  border-radius: 10px;
  font-size: 13.5px;
  padding: 13px 24px;
}
.footer-divider {
  width: min(1000px, 100%);
  height: 1px;
  margin: 44px auto 38px;
  background: linear-gradient(90deg, transparent, rgba(217, 45, 61, 0.3), transparent);
}
.site-footer {
  width: min(1200px, 100%);
  margin: 0 auto;
  color: var(--body);
  text-align: left;
}
.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
  padding-bottom: 34px;
}
.footer-brand {
  width: 250px;
  flex: 0 0 250px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--shade);
  font-size: 16px;
  font-weight: 850;
}
.footer-logo img { width: 28px; height: 28px; }
.footer-brand p {
  color: rgba(107, 36, 36, 0.7);
  font-size: 12px;
  line-height: 1.65;
}
.footer-socials {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}
.footer-social-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(217, 45, 61, 0.2);
  border-radius: 8px;
  background: white;
  color: var(--primary);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.footer-social-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.footer-social-icon:hover {
  border-color: var(--primary-3);
  background: var(--primary);
  color: white;
  box-shadow: 0 0 18px rgba(197, 22, 47, 0.34);
  transform: translateY(-1px) scale(1.1);
}
.footer-cols {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 28px;
}
.footer-col h4 {
  margin: 0 0 12px;
  color: var(--primary-3);
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col span {
  display: block;
  color: rgba(107, 36, 36, 0.7);
  font-size: 12.5px;
  line-height: 1.45;
  padding: 3px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(217, 45, 61, 0.12);
  color: rgba(107, 36, 36, 0.72);
  font-size: 11px;
  line-height: 1.7;
  padding: 18px 0 22px;
}
.footer-bottom span { color: rgba(217, 45, 61, 0.28); }
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-bottom-links span { color: rgba(107, 36, 36, 0.72); }

@media (min-width: 768px) {
  .home-page-shell {
    height: 100dvh;
    min-height: 100dvh;
    overflow: hidden;
    overscroll-behavior-y: contain;
  }
  .home-page-shell__track {
    min-height: 100%;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }
  .home-screen {
    height: 100svh;
    min-height: 0;
    transform-origin: 50% 50%;
    transition:
      opacity 0.5s ease,
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.55s ease;
  }
  .home-screen.is-fullpage-leaving {
    opacity: 0.38;
    filter: blur(6px);
    transform: translate3d(0, var(--fullpage-leave-y, -10%), 0) scale(0.955);
  }
  .home-screen.is-fullpage-entering {
    opacity: 0.68;
    filter: blur(8px);
    transform: translate3d(0, var(--fullpage-enter-y, 18%), 0) scale(1.035);
  }
}

@media (max-width: 1160px) {
  .hero-copy-layer { width: 52%; }
  .hero-octo { width: min(60vw, 820px); right: -8%; }
  .hero-action-card--running { left: 40%; }
  .hero-action-card--growth { left: 20%; }
  .agent-card { width: 260px; }
}

@media (max-width: 1023px) {
  .home-page-shell { overflow-y: auto; }
  .home-screen { min-height: auto; }
  .deep-sea-hero {
    min-height: 760px;
    height: 100svh;
    align-items: flex-start;
  }
  .hero-header { padding: 20px 24px 0; }
  .hero-copy-layer {
    width: 100%;
    align-items: flex-start;
    padding: 92px 26px 0;
    margin-top: 0;
  }
  .hero-copy-layer__inner { max-width: 560px; }
  .hero-copy-layer h1 { font-size: clamp(58px, 12vw, 92px); }
  .hero-octo {
    left: 50%;
    right: auto;
    top: 63%;
    width: min(94vw, 660px);
    transform: translate(-50%, -50%);
  }
  .hero-glasses-frame {
    left: 50%;
    right: auto;
    top: 58%;
    width: min(32vw, 184px);
    transform: translate(-50%, -50%) rotate(-1deg);
  }
  .hero-eye-label {
    top: 58%;
    width: min(13.5vw, 86px);
    height: min(7.2vw, 46px);
  }
  .hero-eye-label--agent { left: 44%; }
  .hero-eye-label--human { left: 56%; }
  .hero-eye-label span { font-size: clamp(9px, 1.75vw, 13px); }
  .hero-eye-label small {
    font-size: clamp(5px, 1vw, 8px);
    margin-top: 3px;
  }
  .hero-action-card--running { left: 42%; top: 63%; }
  .hero-action-card--growth { left: 20%; top: 71%; }
  .agents-screen { padding-bottom: 56px; }
  .agent-orbit {
    display: grid;
    width: min(760px, 100%);
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .orbit-ring,
  .agent-connector { display: none; }
  .agent-card,
  .agent-card--center,
  .agent-card--orbit {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100%;
    transform: none !important;
  }
  .agent-card--center { grid-column: 1 / -1; }
  .skills-screen { padding: 60px 0; }
  .footer-main { flex-direction: column; }
  .footer-brand { width: min(360px, 100%); flex-basis: auto; }
  .footer-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .home-container { width: min(100%, calc(100vw - 24px)); }
  .section-heading { padding-inline: 18px; }
  .section-heading h2,
  .section-row h2,
  .models-block h2 { font-size: 22px; }
  .deep-sea-hero {
    min-height: 720px;
    padding-bottom: 84px;
  }
  .hero-copy-layer {
    padding: 78px 18px 0;
  }
  .shiny-brand { font-size: 38px; }
  .hero-copy-layer h1 {
    max-width: 340px;
    font-size: clamp(48px, 15vw, 72px);
  }
  .hero-identity-actions {
    position: fixed;
    left: 50%;
    bottom: max(22px, env(safe-area-inset-bottom));
    z-index: 28;
    width: calc(100vw - 16px);
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
    margin: 0;
    transform: translateX(-50%);
  }
  .hero-identity-actions button {
    width: calc((100vw - 22px) / 2);
    max-width: 188px;
    min-width: 0;
    min-height: 52px;
    padding: 0 4px;
    font-size: 16px;
    letter-spacing: 0;
  }
  .hero-octo {
    top: 61%;
    width: min(96vw, 460px);
  }
  .hero-model-stage.is-model-visible .hero-octo-fallback {
    opacity: 0.97;
    visibility: visible;
  }
  .hero-glasses-frame {
    top: 55%;
    width: min(38vw, 184px);
  }
  .hero-eye-label {
    top: 55%;
    width: 62px;
    height: 30px;
  }
  .hero-eye-label--agent { left: 43.5%; }
  .hero-eye-label--human { left: 56.5%; }
  .hero-eye-label span { font-size: 9px; }
  .hero-eye-label small {
    font-size: 5px;
    letter-spacing: 0.12em;
    margin-top: 2px;
  }
  .hero-social-bubbles__bubble {
    left: var(--mobile-x);
    top: var(--mobile-y);
    width: var(--mobile-size);
    height: var(--mobile-size);
  }
  .hero-model-loader {
    transform: translate3d(0, -2%, 0);
  }
  .hero-model-loader--hidden {
    transform: translate3d(0, calc(-2% - 12px), 0);
  }
  .hero-model-loader__count {
    font-size: clamp(92px, 34vw, 176px);
  }
  .hero-action-hotspot {
    left: var(--mobile-x);
    top: var(--mobile-y);
    width: 50px;
    height: 50px;
  }
  .hero-action-hotspot--growth { --mobile-x: 16%; --mobile-y: 70%; }
  .hero-action-hotspot--running { --mobile-x: 40%; --mobile-y: 71%; }
  .hero-action-card {
    left: 50% !important;
    width: min(86vw, 310px);
    min-width: 0;
    --card-anchor-x: -50%;
    --card-rotate: -1deg;
  }
  .hero-action-card--growth { display: none; }
  .hero-action-card--running {
    top: 37%;
    padding: 15px 14px 14px;
  }
  .hero-action-card__title { font-size: 15px; }
  .hero-action-card__badge { font-size: 11px; padding: 6px 7px; }
  .hero-action-running { gap: 8px; padding-top: 12px; }
  .hero-action-running__item {
    grid-template-columns: 28px minmax(0, 1fr) 21px;
    gap: 8px;
  }
  .cases-screen { padding: 56px 0; }
  .cases-track { padding-inline: 12px; }
  .case-card { width: 310px; min-height: 390px; }
  .agents-screen { padding: 56px 18px; }
  .agent-orbit {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }
  .section-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .skills-columns {
    display: grid;
    height: auto;
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .skill-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    animation: none;
  }
  .skill-card {
    min-height: 0;
    border-radius: 8px;
    padding: 11px 12px;
  }
  .skill-title {
    gap: 7px;
    margin-bottom: 6px;
    font-size: 11.5px;
    line-height: 1.25;
  }
  .skill-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    font-size: 11px;
  }
  .skill-card p {
    font-size: 10px;
    line-height: 1.42;
  }
  .models-block { margin-top: 56px; }
  .models-track { gap: 26px; }
  .pricing-screen { padding: 56px 18px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 0; }
  .faq-screen { padding: 56px 18px; }
  .faq-list {
    max-height: none;
    overflow: visible;
  }
  .footer-screen { padding: 56px 18px 0; }
  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
