@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/figtree-400.woff2") format("woff2");
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/figtree-500.woff2") format("woff2");
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/figtree-700.woff2") format("woff2");
}

@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/orbitron-500.ttf") format("truetype");
}

@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../assets/fonts/orbitron-900.ttf") format("truetype");
}

:root {
  color-scheme: dark;
  --page: #000;
  --ink: #fff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.48);
  --faint: rgba(255, 255, 255, 0.1);
  --panel: rgba(13, 13, 13, 0.8);
  --panel-solid: #080808;
  --purple: #814ac8;
  --pink: #df7afe;
  --line: #222;
  --max: 1200px;
  --page-pad: clamp(22px, 3.2vw, 48px);
  --section-nav-space: clamp(104px, 10vh, 132px);
  --hero-intro-duration: 900ms;
  --hero-text-advance: 1000ms;
  --planet-spin-delay: 0s;
  font-family:
    Figtree, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
  scroll-padding-top: calc(var(--section-nav-space) + 12px);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #000;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  margin: 0;
  padding: 0 var(--page-pad);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: headerReveal 900ms var(--hero-intro-duration) cubic-bezier(0.16, 1, 0.3, 1) both;
  transition:
    opacity 360ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.site-header.is-scroll-hidden,
.site-header.is-content-overlap-hidden,
.site-header.is-after-hero-hidden {
  opacity: 0 !important;
  pointer-events: none;
  transform: translateY(-18px) !important;
}

body.is-page-scrolling .hero-planet .framer-q5ecxp,
body.is-page-scrolling .hero-planet .framer-1mwerlq,
body.is-page-scrolling .heliox-letter,
body.is-page-scrolling .heliox-mark-word::after,
body.is-page-scrolling .badge-border-breathe,
body.is-page-scrolling .badge-search-sweep,
body.is-page-scrolling .hero-scroll-cue::before,
body.is-page-scrolling .hero-scroll-cue::after,
body.is-page-scrolling .hero-scroll-cue .scroll-cue-chevron {
  animation-play-state: paused !important;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  color: #fff;
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  filter:
    drop-shadow(0 0 5px rgba(255, 255, 255, 0.28))
    drop-shadow(0 0 12px rgba(223, 122, 254, 0.2));
}

.brand-mark::before {
  display: none;
  content: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-size: 20px;
  line-height: 1;
}

.desktop-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 3.8vw, 64px);
  margin-left: 0;
  color: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
}

.desktop-nav a,
.ghost-link {
  color: inherit;
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.ghost-link:hover {
  color: #fff;
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.auth-control {
  position: relative;
  display: inline-flex;
}

.header-action,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(223, 122, 254, 0.42);
  border-radius: 5px;
  background: linear-gradient(180deg, var(--pink), var(--purple));
  color: #fff;
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(129, 74, 200, 0.36);
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms ease;
}

.primary-button:hover,
.header-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(223, 122, 254, 0.36);
}

.site-header .header-action {
  position: relative;
  overflow: hidden;
  border-color: rgba(212, 209, 224, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.03) 42%, rgba(0, 0, 0, 0.08)),
    radial-gradient(120% 180% at 50% 120%, rgba(129, 74, 200, 0.18), transparent 60%),
    linear-gradient(135deg, rgba(7, 7, 11, 0.96), rgba(16, 14, 23, 0.96) 54%, rgba(5, 5, 9, 0.98));
  text-shadow: 0 1px 8px rgba(235, 230, 255, 0.16);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.045),
    0 9px 24px rgba(0, 0, 0, 0.42),
    0 0 14px rgba(129, 74, 200, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -10px 18px rgba(129, 74, 200, 0.09);
}

.site-header .header-action::before,
.site-header .header-action::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.site-header .header-action::before {
  inset: 1px;
  border-radius: 4px;
  background: linear-gradient(105deg, transparent 0 32%, rgba(255, 255, 255, 0.13) 47%, rgba(255, 255, 255, 0.035) 57%, transparent 74% 100%);
  opacity: 0.42;
}

.site-header .header-action::after {
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235, 226, 255, 0.48), rgba(129, 74, 200, 0.28), transparent);
  opacity: 0.68;
}

.site-header .header-action:hover {
  border-color: rgba(235, 231, 246, 0.52);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.055),
    0 11px 28px rgba(0, 0, 0, 0.44),
    0 0 18px rgba(129, 74, 200, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -10px 18px rgba(129, 74, 200, 0.11);
}

.site-header .header-action-accent {
  border-color: rgba(199, 196, 211, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(4, 4, 8, 0.76);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035),
    0 8px 22px rgba(0, 0, 0, 0.36),
    0 0 12px rgba(129, 74, 200, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.auth-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 30;
  min-width: 174px;
  padding: 10px;
  border: 1px solid rgba(212, 209, 224, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(5, 5, 9, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035),
    0 18px 50px rgba(0, 0, 0, 0.52),
    0 0 24px rgba(129, 74, 200, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.auth-menu[hidden] {
  display: none;
}

.auth-menu-login {
  width: 252px;
}

.auth-menu-login label {
  display: grid;
  gap: 6px;
  margin-bottom: 9px;
  color: rgba(235, 236, 246, 0.72);
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}

.auth-menu-login input {
  width: 100%;
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font: inherit;
  outline: none;
}

.auth-menu-login input:focus {
  border-color: rgba(235, 226, 255, 0.42);
  box-shadow: 0 0 0 1px rgba(129, 74, 200, 0.18);
}

.auth-submit,
.auth-menu-signup a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  border: 1px solid rgba(212, 209, 224, 0.28);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.022)),
    rgba(8, 8, 12, 0.86);
  color: #fff;
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
}

.auth-submit {
  cursor: pointer;
}

.auth-menu-signup {
  display: grid;
  gap: 8px;
}

.auth-menu-signup a:hover,
.auth-submit:hover {
  border-color: rgba(235, 226, 255, 0.46);
  box-shadow: 0 0 16px rgba(129, 74, 200, 0.12);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}

.preview-main {
  position: relative;
  width: 100%;
  margin: 0;
}

.preview-placeholder {
  position: relative;
  display: flex;
  --intro-big-rotation: 0deg;
  --intro-small-rotation: 0deg;
  --orbit-big-delay: calc(var(--planet-spin-delay) - var(--hero-intro-duration));
  --orbit-small-delay: calc(var(--planet-spin-delay) - var(--hero-intro-duration));
  min-height: 100vh;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 180px 40px 100px;
  overflow: hidden;
  background: #000;
}

body:not(.is-hero-intro-complete) .site-header,
.preview-placeholder:not(.is-hero-intro-complete) .placeholder-copy,
.preview-placeholder:not(.is-hero-intro-complete) .hero-scroll-cue {
  visibility: hidden;
  opacity: 0;
}

.star-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  animation: starFocus 720ms 80ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.twinkle-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  animation: twinkleLayerIn 760ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.twinkle-layer canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-planet {
  position: absolute;
  z-index: 1;
  top: calc(50vh - 203px);
  left: 50%;
  width: 406px;
  height: 406px;
  transform: translateX(-50%);
  transform-origin: 50% 50%;
  pointer-events: none;
}

.planet-ribbon {
  position: absolute;
  inset: -4px;
  z-index: 1;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  overflow: visible;
  pointer-events: none;
  transform-origin: 50% 50%;
  animation: framerBigCircleSpin 10s var(--orbit-big-delay) linear infinite;
}

.preview-placeholder:not(.is-orbit-settled) .planet-ribbon {
  animation: none;
  transform: rotate(var(--intro-big-rotation));
}

.planet-ribbon path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.planet-ribbon-soft {
  stroke: url("#planetRibbonLine");
  stroke-width: 5px;
  filter: blur(3px);
  opacity: 0.18;
}

.planet-ribbon-line {
  stroke: url("#planetRibbonLine");
  stroke-width: 2.2px;
  filter: none;
  opacity: 0.82;
}

.planet-ribbon-core {
  stroke: url("#planetRibbonCore");
  stroke-width: 5.6px;
  filter: blur(0.35px);
  opacity: 0.72;
}

.hero-planet .framer-v5tokv {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 406px;
  height: 406px;
  padding: 0;
  filter: blur(4px);
  opacity: 0.42;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.hero-planet .framer-q5ecxp {
  position: relative;
  flex: 0 0 auto;
  width: 406px;
  height: 406px;
  aspect-ratio: 1 / 1;
  border-radius: 363px;
  background: linear-gradient(229deg, rgba(223, 122, 254, 0.95) 12%, rgba(201, 110, 240, 0) 25%, rgba(164, 92, 219, 0) 71%, rgba(129, 74, 200, 0.92) 88%);
  overflow: hidden;
  will-change: transform;
  animation: framerBigCircleSpin 10s var(--orbit-big-delay) linear infinite;
}

.preview-placeholder:not(.is-orbit-settled) .hero-planet .framer-q5ecxp {
  animation: none;
  transform: rotate(var(--intro-big-rotation));
}

.hero-planet .framer-1mwerlq {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  flex: 0 0 auto;
  width: 300px;
  height: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 363px;
  background: linear-gradient(141deg, rgba(223, 122, 254, 0.85) 12%, rgba(201, 110, 240, 0) 25%, rgba(164, 92, 219, 0) 71%, rgba(129, 74, 200, 0.82) 88%);
  overflow: hidden;
  transform: translate(-50%, -50%);
  will-change: transform;
  animation: framerSmallCircleSpin 12s var(--orbit-small-delay) linear infinite;
}

.preview-placeholder:not(.is-orbit-settled) .hero-planet .framer-1mwerlq {
  animation: none;
  transform: translate(-50%, -50%) rotate(var(--intro-small-rotation));
}

.hero-planet .framer-1wt1rzf {
  position: absolute;
  top: calc(50% - 194px);
  left: calc(50% - 194px);
  z-index: 2;
  width: 388px;
  height: 388px;
  border-radius: 296px;
  background: #000;
  overflow: visible;
}

.placeholder-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-22px);
}

.heliox-hero-mark {
  position: relative;
  z-index: 6;
  display: block;
  margin: 0 0 20px;
  color: #fff;
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  opacity: 0;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92),
    0 -1px 0 rgba(166, 170, 182, 0.46),
    0 0 8px rgba(255, 255, 255, 0.28),
    0 0 18px rgba(206, 190, 255, 0.16);
  text-transform: uppercase;
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.18))
    drop-shadow(0 0 16px rgba(162, 139, 206, 0.12));
  animation: helioxMarkIn 900ms calc(var(--hero-intro-duration) + 1000ms - var(--hero-text-advance)) cubic-bezier(0.16, 1, 0.3, 1) both;
}

.heliox-hero-mark::before,
.heliox-hero-mark::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.heliox-hero-mark::before {
  display: none;
}

.heliox-hero-mark::after {
  display: none;
}

.heliox-mark-word {
  position: relative;
  display: inline-block;
}

.heliox-mark-word::after {
  content: "HELIOX";
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  color: transparent;
  background:
    linear-gradient(
      100deg,
      transparent 0%,
      transparent 42%,
      rgba(186, 190, 204, 0.12) 45%,
      rgba(255, 232, 170, 0.5) 47.5%,
      rgba(255, 255, 255, 0.98) 50%,
      rgba(224, 229, 238, 0.74) 52.5%,
      rgba(156, 160, 174, 0.1) 56%,
      transparent 59%,
      transparent 100%
    );
  background-size: 380% 100%;
  background-position: -190% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.26))
    drop-shadow(0 0 5px rgba(255, 226, 165, 0.12));
  opacity: 0;
  pointer-events: none;
  text-shadow: none;
  animation: helioxLetterSweep 5.2s calc(var(--hero-intro-duration) + 1650ms - var(--hero-text-advance)) cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.heliox-mark-base {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #f7f8fb;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 -1px 0 rgba(138, 142, 154, 0.4),
    0 0 8px rgba(255, 255, 255, 0.26),
    0 0 18px rgba(164, 146, 205, 0.12);
}

.heliox-letter {
  display: inline-block;
  color: #f7f8fb;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96),
    0 -1px 0 rgba(130, 134, 146, 0.42),
    0 0 7px rgba(255, 255, 255, 0.24),
    0 0 16px rgba(164, 146, 205, 0.1);
  animation: helioxLetterMetalPulse 6.8s calc(var(--hero-intro-duration) + 1450ms - var(--hero-text-advance)) cubic-bezier(0.42, 0, 0.18, 1) infinite;
  will-change: color, text-shadow, filter;
}

.heliox-letter:nth-child(2) {
  animation-delay: calc(var(--hero-intro-duration) + 1810ms - var(--hero-text-advance));
}

.heliox-letter:nth-child(3) {
  animation-delay: calc(var(--hero-intro-duration) + 2170ms - var(--hero-text-advance));
}

.heliox-letter:nth-child(4) {
  animation-delay: calc(var(--hero-intro-duration) + 2530ms - var(--hero-text-advance));
}

.heliox-letter:nth-child(5) {
  animation-delay: calc(var(--hero-intro-duration) + 2890ms - var(--hero-text-advance));
}

.heliox-letter:nth-child(6) {
  animation-delay: calc(var(--hero-intro-duration) + 3250ms - var(--hero-text-advance));
}

.heliox-letter-orbit {
  position: absolute;
  display: none;
  inset: 0;
  z-index: 2;
  color: transparent;
  background:
    linear-gradient(
      90deg,
      #f9fbff 0%,
      #93ceff 15%,
      #fff 30%,
      #d7b2ff 44%,
      #b85dff 56%,
      #ffd0a8 72%,
      #f9fbff 100%
    );
  background-size: 185% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  -webkit-mask-position: -55% 50%;
  mask-position: -55% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 48% 100%;
  mask-size: 48% 100%;
  filter: none;
  opacity: 1;
  pointer-events: none;
  animation: helioxLetterOrbit 6.8s calc(var(--hero-intro-duration) + 1450ms - var(--hero-text-advance)) cubic-bezier(0.42, 0, 0.18, 1) infinite alternate;
}

.heliox-scanline {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  z-index: 3;
  width: 36%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(153, 91, 245, 0.15) 20%, rgba(223, 122, 254, 0.78) 48%, rgba(255, 255, 255, 0.7) 55%, transparent 100%);
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.18),
    0 0 18px rgba(223, 122, 254, 0.26);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-150%) skewX(-12deg);
  animation: helioxScanlinePulse 4.2s calc(var(--hero-intro-duration) + 1700ms - var(--hero-text-advance)) ease-in-out infinite;
}

.hero-scroll-cue {
  position: absolute;
  top: calc(50vh + 261px);
  left: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(183, 91, 239, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(223, 122, 254, 0.09), transparent 42%),
    rgba(0, 0, 0, 0.08);
  box-shadow:
    0 0 0 1px rgba(223, 122, 254, 0.12),
    0 0 20px rgba(183, 91, 239, 0.26),
    0 0 44px rgba(129, 74, 200, 0.18),
    inset 0 0 22px rgba(223, 122, 254, 0.08);
  opacity: 0;
  text-decoration: none;
  transform: translateX(-50%);
  animation: scrollCueIn 900ms calc(var(--hero-intro-duration) + 1250ms) cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-scroll-cue::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(235, 238, 247, 0.72);
  border-radius: inherit;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(145deg, rgba(245, 247, 255, 0.08), rgba(7, 7, 10, 0.36) 42%, rgba(186, 190, 205, 0.06));
  box-shadow:
    0 0 0 1px rgba(137, 140, 154, 0.34),
    0 0 18px rgba(235, 238, 247, 0.24),
    inset 0 0 15px rgba(255, 255, 255, 0.08),
    inset 0 0 2px rgba(255, 255, 255, 0.42);
}

.hero-scroll-cue::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, transparent 0deg, rgba(223, 122, 254, 0.72) 58deg, rgba(255, 255, 255, 0.52) 78deg, rgba(129, 74, 200, 0.42) 106deg, transparent 160deg, transparent 360deg);
  opacity: 0.58;
  filter: blur(0.35px);
  -webkit-mask:
    radial-gradient(circle, transparent 0 71%, #000 72% 100%);
  mask:
    radial-gradient(circle, transparent 0 71%, #000 72% 100%);
  transform: scale(0.94);
  transform-origin: center;
  animation: scrollCueOuterBreath 3.15s calc(var(--hero-intro-duration) + 1550ms) ease-in-out infinite;
}

.scroll-cue-chevron {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-right: 3px solid rgba(255, 255, 255, 0.92);
  border-bottom: 3px solid rgba(255, 255, 255, 0.92);
  filter:
    drop-shadow(0 0 5px rgba(255, 255, 255, 0.52))
    drop-shadow(0 0 13px rgba(223, 122, 254, 0.42));
  transform: rotate(45deg) translate(-2px, -2px);
  animation: scrollCueChevronGlow 2.4s calc(var(--hero-intro-duration) + 1650ms) ease-in-out infinite;
}

.workflow-scroll-cue.is-consumed,
.project-scroll-cue.is-consumed {
  visibility: hidden;
  opacity: 0 !important;
  pointer-events: none;
  animation: none !important;
  transition:
    opacity 220ms ease,
    visibility 0s linear 220ms;
}

.workflow-scroll-cue.is-consumed::after,
.project-scroll-cue.is-consumed::after,
.workflow-scroll-cue.is-consumed .scroll-cue-chevron,
.project-scroll-cue.is-consumed .scroll-cue-chevron {
  animation: none !important;
}

.section-label,
.micro-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  margin: 0 0 22px;
  padding: 0 10px;
  border: 1px solid rgba(223, 122, 254, 0.38);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(223, 122, 254, 0.74), rgba(129, 74, 200, 0.72));
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.section-label > span:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin: 0 7px 0 -10px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pink), var(--purple));
}

.placeholder-copy .section-label {
  gap: 5px;
  width: max-content;
  height: 28.8px;
  min-height: 28.8px;
  margin-bottom: 25px;
  padding: 2px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  opacity: 0.001;
  overflow: hidden;
  animation: badgeShellIn 400ms calc(var(--hero-intro-duration) + 1500ms - var(--hero-text-advance)) cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.placeholder-copy .section-label > span:first-child {
  min-height: 24.8px;
  margin: 0;
  padding: 4px 8px;
  border-radius: 12px;
}

.placeholder-copy .badge-copy {
  display: inline-block;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-5px);
  animation: badgeCopyIn 500ms calc(var(--hero-intro-duration) + 1600ms - var(--hero-text-advance)) cubic-bezier(0.16, 1, 0.3, 1) both;
}

.placeholder-copy .expert-search-badge {
  --badge-motion-delay: calc(var(--hero-intro-duration) + 2300ms - var(--hero-text-advance));
  --badge-width: clamp(190px, 23.9vw, 270px);
  --badge-height: 36px;
  --badge-border-angle: 0deg;
  position: relative;
  display: block;
  width: var(--badge-width);
  height: var(--badge-height);
  min-height: var(--badge-height);
  padding: 0;
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    radial-gradient(circle at 50% 50%, rgba(223, 122, 254, 0.055), transparent 30%),
    rgba(4, 5, 9, 0.91);
  box-shadow:
    0 0 0 1px rgba(238, 236, 255, 0.22),
    0 0 18px rgba(220, 211, 255, 0.12),
    0 0 24px rgba(129, 74, 200, 0.14),
    inset 0 0 22px rgba(255, 255, 255, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  isolation: isolate;
  overflow: visible;
  margin-bottom: 24px;
}

.placeholder-copy .expert-search-badge::before,
.placeholder-copy .expert-search-badge::after,
.badge-border-breathe {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.placeholder-copy .expert-search-badge::before {
  padding: 1.5px;
  background:
    linear-gradient(
      90deg,
      rgba(210, 211, 222, 0.55),
      rgba(255, 255, 255, 0.95) 28%,
      rgba(181, 172, 206, 0.45) 50%,
      rgba(246, 244, 255, 0.86) 72%,
      rgba(178, 171, 194, 0.5)
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.78;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.28));
}

.placeholder-copy .expert-search-badge::after {
  inset: 2.5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 22px rgba(0, 0, 0, 0.72),
    inset 0 0 14px rgba(223, 122, 254, 0.035);
}

.placeholder-copy .expert-search-badge > span:first-child {
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: inherit;
  background: transparent;
}

.badge-border-breathe {
  z-index: 1;
  padding: 1.5px;
  background:
    conic-gradient(
      from var(--badge-border-angle),
      transparent 0deg,
      rgba(129, 74, 200, 0.1) 72deg,
      rgba(223, 122, 254, 0.34) 114deg,
      rgba(255, 244, 255, 0.62) 128deg,
      rgba(223, 122, 254, 0.28) 143deg,
      transparent 190deg,
      transparent 260deg,
      rgba(129, 74, 200, 0.16) 314deg,
      rgba(223, 122, 254, 0.28) 340deg,
      transparent 360deg
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  filter: drop-shadow(0 0 7px rgba(223, 122, 254, 0.22));
  animation:
    badgeBorderFlow 9s var(--badge-motion-delay) linear infinite,
    badgeBorderBreath 4.8s var(--badge-motion-delay) ease-in-out infinite;
}

.badge-word {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #f7ffff;
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(12px, 1.55vw, 16px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.96),
    0 0 10px rgba(255, 255, 255, 0.5),
    0 0 22px rgba(223, 122, 254, 0.22),
    0 0 40px rgba(129, 74, 200, 0.14);
  -webkit-text-stroke: 0.18px rgba(255, 255, 255, 0.42);
}

.badge-word-opc {
  left: calc(50% - 34px);
  width: auto;
  transform: translate(-100%, -50%) scaleX(0.98) scaleY(0.96);
}

.badge-logo {
  position: absolute;
  z-index: 4;
  top: calc(50% + 1.5px);
  left: 50%;
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.84);
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.42))
    drop-shadow(0 0 8px rgba(223, 122, 254, 0.34));
  animation: badgeLogoIn 560ms calc(var(--hero-intro-duration) + 1650ms - var(--hero-text-advance)) cubic-bezier(0.16, 1, 0.3, 1) both;
}

.placeholder-copy .badge-word-expert {
  right: auto;
  left: calc(50% + 34px);
  width: auto;
  max-width: none;
  overflow: visible;
  opacity: 0;
  transform: translateY(-50%) scaleX(1.02) scaleY(0.96);
  animation: badgeExpertIn 500ms calc(var(--hero-intro-duration) + 1600ms - var(--hero-text-advance)) cubic-bezier(0.16, 1, 0.3, 1) both;
}

.badge-search-sweep {
  --badge-lens-x: 0px;
  --badge-lens-size: 34px;
  --badge-sweep-left: 36.72px;
  --badge-magnifier-scale: 1.75;
  --badge-lens-local-x: 0px;
  --badge-lens-local-y: 0px;
  --badge-magnifier-translate-x: -126px;
  --badge-magnifier-translate-y: -32px;
  position: absolute;
  left: var(--badge-sweep-left);
  top: 50%;
  z-index: 5;
  display: block;
  width: var(--badge-lens-size);
  height: var(--badge-lens-size);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(var(--badge-lens-x) - 28px), -50%, 0) scale(0.985);
  animation: badgeSearchSweep 5.4s var(--badge-motion-delay) cubic-bezier(0.26, 0.04, 0.14, 1) infinite both;
}

.badge-search-sweep::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2px;
  width: 76px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(170, 150, 210, 0.28), rgba(255, 255, 255, 0.58), rgba(223, 122, 254, 0.26), transparent);
  filter: blur(0.2px);
  opacity: 0.62;
  transform: translateY(-50%);
}

.badge-lens {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--badge-lens-size);
  height: var(--badge-lens-size);
  border: 1.6px solid rgba(245, 190, 255, 0.96);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.12), transparent 14%),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.035), rgba(223, 122, 254, 0.045) 48%, rgba(8, 5, 12, 0.06) 78%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 13px rgba(223, 122, 254, 0.72),
    0 0 22px rgba(129, 74, 200, 0.38),
    inset 0 0 12px rgba(255, 255, 255, 0.16);
  overflow: visible;
  backdrop-filter: none;
}

.badge-lens::before {
  content: "";
  position: absolute;
  z-index: 4;
  left: 6px;
  top: 5px;
  width: 8px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.31);
  transform: rotate(-22deg);
}

.badge-lens::after {
  content: "";
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.035), transparent 68%);
  transform: translate(-50%, -50%);
}

.badge-lens-handle {
  position: absolute;
  z-index: 5;
  left: 26px;
  top: 27px;
  width: 16px;
  height: 4px;
  border: 1px solid rgba(255, 234, 255, 0.82);
  border-radius: 999px;
  background: linear-gradient(90deg, #fff7ff, var(--pink) 46%, var(--purple) 76%, #51246f);
  box-shadow:
    0 0 9px rgba(223, 122, 254, 0.62),
    0 0 15px rgba(129, 74, 200, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.46);
  transform: rotate(45deg);
  transform-origin: left center;
}

.badge-lens-clip {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.055), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(223, 122, 254, 0.08), transparent 60%),
    rgba(4, 4, 8, 0.38);
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.08),
    inset 0 0 14px rgba(223, 122, 254, 0.08);
  isolation: isolate;
}

.badge-lens-magnified {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: var(--badge-width);
  height: var(--badge-height);
  color: #fff;
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(12px, 1.55vw, 16px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1;
  filter: brightness(1.02) contrast(1.02);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.9),
    0 0 5px rgba(255, 234, 255, 0.34),
    0 0 9px rgba(223, 122, 254, 0.2);
  -webkit-text-stroke: 0.06px rgba(255, 255, 255, 0.32);
  transform: translate3d(var(--badge-magnifier-translate-x), var(--badge-magnifier-translate-y), 0) scale(var(--badge-magnifier-scale));
  transform-origin: 0 0;
  animation: none;
  will-change: transform;
}

.badge-lens-word {
  color: #ffffff;
  font-size: inherit;
  font-weight: 900;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.9),
    0 0 5px rgba(255, 234, 255, 0.34),
    0 0 9px rgba(223, 122, 254, 0.2);
  -webkit-text-stroke: 0.06px rgba(255, 255, 255, 0.32);
}

.badge-lens-word-opc {
  position: absolute;
  top: 50%;
  left: calc(50% - 34px);
  min-width: 0;
  text-align: center;
  transform: translate(-100%, -50%) scaleX(0.98) scaleY(0.96);
}

.badge-lens-logo {
  position: absolute;
  top: calc(50% + 1.5px);
  left: 50%;
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.58))
    drop-shadow(0 0 11px rgba(223, 122, 254, 0.48));
  transform: translate(-50%, -50%);
}

.badge-lens-word-expert {
  position: absolute;
  top: 50%;
  left: calc(50% + 34px);
  min-width: 0;
  text-align: center;
  transform: translateY(-50%) scaleX(1.02) scaleY(0.96);
}

.placeholder-copy h1 {
  position: relative;
  z-index: 6;
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 1040px;
  margin: 0;
  color: #fff;
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 65px;
}

.placeholder-copy h1::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -14px -86px;
  border-radius: 28px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.34) 70%, transparent 86%);
  pointer-events: none;
}

.title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0;
}

.title-word {
  display: inline-block;
  opacity: 0.001;
  filter: blur(10px);
  transform: translateY(10px);
  animation: titleWordAppear 1450ms calc(var(--hero-intro-duration) + 1200ms - var(--hero-text-advance)) cubic-bezier(0.16, 1, 0.3, 1) both;
}

.title-line:first-child .title-word {
  animation-duration: 1700ms;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.title-line:first-child .title-word:nth-child(2) {
  animation-delay: calc(var(--hero-intro-duration) + 1320ms - var(--hero-text-advance));
}

.title-line:first-child .title-word:nth-child(3) {
  animation-delay: calc(var(--hero-intro-duration) + 1440ms - var(--hero-text-advance));
}

.title-line:nth-child(2) .title-word:nth-child(1) {
  animation-delay: calc(var(--hero-intro-duration) + 1620ms - var(--hero-text-advance));
}

.title-line:nth-child(2) .title-word:nth-child(2) {
  animation-delay: calc(var(--hero-intro-duration) + 1740ms - var(--hero-text-advance));
}

.title-line:nth-child(2) .title-word:nth-child(3) {
  animation-delay: calc(var(--hero-intro-duration) + 1860ms - var(--hero-text-advance));
}

.placeholder-copy p:not(.section-label) {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(11px, 1.05vw, 14px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.01em;
  opacity: 0.001;
  filter: blur(10px);
  transform: translateY(10px);
  animation: framerWordFadeIn 900ms calc(var(--hero-intro-duration) + 1300ms - var(--hero-text-advance)) cubic-bezier(0.16, 1, 0.3, 1) both;
}

.placeholder-copy .hero-subtitle.is-typewriter-ready {
  opacity: 1;
  filter: none;
  transform: none;
  animation: none;
}

.hero-subtitle .type-word,
.service-subtitle .type-word,
.service-copy p .type-word {
  display: inline-block;
  white-space: nowrap;
}

.hero-subtitle .type-space,
.service-subtitle .type-space,
.service-copy p .type-space {
  display: inline-block;
  width: 0.36em;
}

.hero-subtitle .type-char,
.service-subtitle .type-char,
.service-copy p .type-char {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(4px);
  will-change: opacity, filter, transform;
}

.is-typewriter-ready .type-char {
  animation: subtitleTypeChar 90ms calc(var(--typewriter-delay, 0ms) + var(--char-delay, 0ms)) cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  min-height: 40px;
  margin-top: 25px;
  padding: 2px;
  opacity: 0.001;
  animation: ctaFramerIn 1200ms calc(var(--hero-intro-duration) + 1700ms) cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-actions .primary-button,
.hero-actions .secondary-button {
  min-height: 36px;
  padding: 9px 13px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 400;
}

.hero-actions .primary-button {
  min-width: 124px;
}

.hero-actions .secondary-button {
  min-width: 111px;
}

.post-hero {
  position: relative;
  overflow: hidden;
  margin-top: -75px;
  padding: 50px 0 80px;
  background: #000;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  opacity: 0.001;
  transform: translateY(50px);
}

.trust-strip.is-visible {
  animation: trustContentIn 2000ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.trust-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.2;
}

.trust-logo-window {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  height: 50px;
  overflow: hidden;
  opacity: 0.001;
  transform: perspective(1200px) translateY(80px) scale(0.9);
  mask-image: linear-gradient(to right, transparent 0%, #000 25%, #000 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 25%, #000 75%, transparent 100%);
}

.trust-strip.is-visible .trust-logo-window {
  animation: trustLogosIn 2000ms 400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.trust-logo-track {
  display: flex;
  align-items: center;
  gap: 74px;
  width: max-content;
  height: 100%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1;
  will-change: transform;
  animation: trustLogoMarquee 18s linear infinite;
}

.trust-logo-track span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-width: 97px;
  height: 24px;
  opacity: 0.74;
}

.trust-logo-track span:nth-child(2),
.trust-logo-track span:nth-child(6) {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

.trust-logo-track span:nth-child(3),
.trust-logo-track span:nth-child(7) {
  color: rgba(255, 255, 255, 0.72);
  opacity: 0.86;
}

.trust-logo-track i {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
  opacity: 0.82;
}

.placeholder-service {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: 100%;
  scroll-margin-top: calc(var(--section-nav-space) + 12px);
  margin-top: 0;
  padding: var(--section-nav-space) 40px 0;
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  text-align: center;
  transform: translateX(-40px);
}

.placeholder-service .micro-label {
  min-height: 22px;
  margin-bottom: 15px;
  padding: 0 11px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(229, 231, 239, 0.78);
  font-size: 8px;
  opacity: 0.001;
  transform: translateY(50px);
}

.placeholder-service h2 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 3.35vw, 43px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.04;
  opacity: 0.001;
  transform: translateY(50px);
}

.placeholder-service h2 span {
  display: block;
}

.service-subtitle {
  max-width: 790px;
  margin: 16px 0 0;
  color: rgba(225, 226, 233, 0.68);
  font-size: 12px;
  line-height: 1.65;
  opacity: 0.001;
  transform: translateY(50px);
}

.service-row {
  display: grid;
  grid-template-columns: 520px 72px 520px;
  gap: 48px;
  align-items: center;
  justify-content: center;
  width: min(100%, 1208px);
  margin-top: 42px;
  text-align: left;
}

.section-divider {
  width: 100vw;
  height: 1px;
  margin: 88px 0 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.12) 12%,
    rgba(255, 255, 255, 0.16) 50%,
    rgba(255, 255, 255, 0.12) 88%,
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.035);
  transform: translateX(calc((min(100vw, 1180px) - 100vw) / 2));
}

.section-divider-final {
  margin-top: 96px;
}

.workflow-scroll-cue,
.project-scroll-cue {
  position: relative;
  z-index: 3;
  display: grid;
  width: 60px;
  height: 60px;
  margin: 70px auto 0;
  place-items: center;
  border: 1px solid rgba(183, 91, 239, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(223, 122, 254, 0.09), transparent 42%),
    rgba(0, 0, 0, 0.08);
  box-shadow:
    0 0 0 1px rgba(223, 122, 254, 0.12),
    0 0 20px rgba(183, 91, 239, 0.26),
    0 0 44px rgba(129, 74, 200, 0.18),
    inset 0 0 22px rgba(223, 122, 254, 0.08);
  opacity: 0.001;
  text-decoration: none;
  transform: translateY(8px) scale(0.92);
  will-change: opacity, transform;
}

.workflow-scroll-cue::before,
.project-scroll-cue::before {
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(235, 238, 247, 0.72);
  border-radius: inherit;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(145deg, rgba(245, 247, 255, 0.08), rgba(7, 7, 10, 0.36) 42%, rgba(186, 190, 205, 0.06));
  box-shadow:
    0 0 0 1px rgba(137, 140, 154, 0.34),
    0 0 18px rgba(235, 238, 247, 0.24),
    inset 0 0 15px rgba(255, 255, 255, 0.08),
    inset 0 0 2px rgba(255, 255, 255, 0.42);
  content: "";
}

.workflow-scroll-cue::after,
.project-scroll-cue::after {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, transparent 0deg, rgba(223, 122, 254, 0.72) 58deg, rgba(255, 255, 255, 0.52) 78deg, rgba(129, 74, 200, 0.42) 106deg, transparent 160deg, transparent 360deg);
  content: "";
  filter: blur(0.35px);
  opacity: 0.58;
  transform: scale(0.94);
  transform-origin: center;
  -webkit-mask:
    radial-gradient(circle, transparent 0 71%, #000 72% 100%);
  mask:
    radial-gradient(circle, transparent 0 71%, #000 72% 100%);
  animation: scrollCueOuterBreath 3.15s ease-in-out infinite;
}

.placeholder-service.is-row-visible .workflow-scroll-cue {
  animation: workflowCueIn 900ms 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-scroll-cue {
  margin-top: 70px;
}

#opc-project-flow.is-visible + .project-scroll-cue {
  animation: workflowCueIn 900ms 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.task-card {
  --task-row-height: 46px;
  --task-gap: 8px;
  justify-self: stretch;
  width: 520px;
  height: 362px;
  min-height: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 34%),
    #000;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.018),
    0 18px 64px rgba(0, 0, 0, 0.46),
    inset 0 0 38px rgba(255, 255, 255, 0.012);
  opacity: 0.001;
  overflow: hidden;
  transform: translateY(150px);
  will-change: opacity, transform;
}

.task-tabs {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding: 3px;
  margin-bottom: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.task-tabs span,
.service-copy > span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: rgba(244, 245, 250, 0.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.task-tabs span:first-child {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.service-copy > span {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(229, 231, 239, 0.82);
}

.task-viewport {
  position: relative;
  display: flex;
  width: 100%;
  height: calc(100% - 43px);
  padding: 10px 0;
  opacity: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 12.5%,
    rgba(0, 0, 0, 1) 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 12.5%,
    rgba(0, 0, 0, 1) 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
}

.task-card ul {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--task-gap);
  width: 100%;
  height: max-content;
  padding: 0;
  margin: 0;
  list-style: none;
  transform: translateY(0);
  will-change: transform;
}

.task-card li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: var(--task-row-height);
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.027);
  flex-shrink: 0;
  overflow: hidden;
}

.task-card li:nth-child(5n + 3) {
  border-color: rgba(188, 151, 235, 0.58);
  background:
    linear-gradient(90deg, rgba(129, 74, 200, 0.18), rgba(255, 255, 255, 0.032) 68%),
    rgba(129, 74, 200, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 0 22px rgba(129, 74, 200, 0.08);
}

.task-icon {
  position: relative;
  display: inline-flex;
  flex: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.task-icon-left {
  width: 18px;
  height: 18px;
}

.task-icon-left::before {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-top-color: rgba(188, 151, 235, 0.76);
  border-radius: 50%;
  content: "";
}

.task-card li:nth-child(5n + 3) .task-icon-left::before {
  border-color: rgba(235, 236, 246, 0.76);
  border-top-color: rgba(210, 165, 255, 0.98);
  box-shadow:
    0 0 8px rgba(223, 122, 254, 0.42),
    0 0 14px rgba(255, 255, 255, 0.16);
}

.task-icon-right {
  width: 16px;
  height: 16px;
  padding: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.task-icon-right::before {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(129, 74, 200, 0.1));
  opacity: 0.34;
  content: "";
}

.task-copy {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.task-card li span {
  color: rgba(251, 252, 255, 0.97);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.task-card small {
  color: rgba(229, 230, 239, 0.74);
  font-size: 10.5px;
  font-weight: 450;
  letter-spacing: -0.04em;
  line-height: 1.1;
  white-space: nowrap;
}

.service-connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  opacity: 0.001;
  transform: translateY(34px);
  will-change: opacity, transform;
}

.service-connector::before {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 144px;
  background: linear-gradient(180deg, transparent, rgba(225, 226, 238, 0.16), rgba(129, 74, 200, 0.22), transparent);
  box-shadow: 0 0 14px rgba(129, 74, 200, 0.12);
  content: "";
  transform: translateX(-50%);
}

.service-connector span {
  position: absolute;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(235, 236, 246, 0.72);
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.22),
    0 0 14px rgba(129, 74, 200, 0.18);
  transform: translateX(-50%);
}

.service-connector span:nth-child(1) {
  top: 38px;
}

.service-connector span:nth-child(2) {
  top: 86px;
  background: rgba(201, 164, 245, 0.78);
}

.service-connector span:nth-child(3) {
  top: 134px;
}

.placeholder-service.is-header-visible .micro-label,
.placeholder-service.is-header-visible #service-title {
  animation: serviceHeaderIn 1.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.placeholder-service.is-header-visible .service-subtitle {
  animation: serviceHeaderIn 1.32s 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.placeholder-service.is-card-visible .task-card {
  animation: serviceGraphicIn 1.45s 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.placeholder-service.is-row-visible .service-connector {
  animation: serviceConnectorIn 1.36s 160ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.placeholder-service.is-row-visible .service-copy {
  animation: serviceCopyIn 1.5s 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.placeholder-service.is-card-visible .task-card ul {
  animation: framerTaskStream 7.2s linear 540ms infinite;
}

body.is-workflow-intro-lock .hero-scroll-cue,
body.is-workflow-intro-lock .placeholder-service .workflow-scroll-cue,
body.is-workflow-intro-lock .placeholder-service .section-divider,
body.is-workflow-intro-lock .placeholder-service .project-row,
body.is-workflow-intro-lock .placeholder-service .project-scroll-cue {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  animation: none !important;
}

.placeholder-service.is-static-visible .micro-label,
.placeholder-service.is-static-visible #service-title,
.placeholder-service.is-static-visible .service-subtitle,
.placeholder-service.is-static-visible .task-card,
.placeholder-service.is-static-visible .service-connector,
.placeholder-service.is-static-visible .service-copy {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.placeholder-service.is-static-visible .service-subtitle .type-char,
.placeholder-service.is-static-visible .service-copy .type-char {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  animation: none !important;
}

.placeholder-service.is-static-visible .task-card ul {
  transform: translateY(0) !important;
  animation: none !important;
}

.service-copy h3 {
  width: 100%;
  max-width: none;
  margin: 20px 0 13px;
  color: #fff;
  font-size: clamp(23px, 2.7vw, 34px);
  letter-spacing: 0;
  line-height: 1.06;
}

.service-copy p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: rgba(225, 226, 233, 0.66);
  font-size: 12px;
  line-height: 1.68;
  text-wrap: pretty;
}

.service-copy {
  justify-self: stretch;
  width: 520px;
  opacity: 0.001;
  transform: translateY(44px);
  will-change: opacity, transform;
}

.project-row {
  display: grid;
  grid-template-columns: minmax(400px, 510px) minmax(440px, 520px);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  width: min(100%, 1180px);
  margin-top: 62px;
  padding-top: var(--section-nav-space);
  scroll-margin-top: calc(var(--section-nav-space) + 12px);
  text-align: left;
}

.expert-row {
  grid-template-columns: minmax(440px, 520px) minmax(400px, 510px);
  margin-top: 74px;
}

.expert-row .project-copy {
  order: 2;
  justify-self: start;
}

.project-copy {
  opacity: 0.001;
  transform: translateY(50px);
  will-change: opacity, transform;
}

.project-label,
.project-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 245, 250, 0.92);
  font-size: 9px;
  font-weight: 520;
  line-height: 1;
}

.project-copy h3 {
  max-width: 510px;
  margin: 18px 0 11px;
  color: #fff;
  font-size: clamp(24px, 2.32vw, 33px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.08;
}

.project-copy p {
  max-width: 500px;
  margin: 0;
  color: rgba(231, 232, 239, 0.75);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.62;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 19px;
}

.project-tags span {
  min-height: 26px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.9);
  font-size: 9px;
  transition:
    border-color 320ms ease-in-out,
    background 320ms ease-in-out,
    box-shadow 320ms ease-in-out,
    filter 320ms ease-in-out;
}

.project-tags span:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 14px rgba(129, 74, 200, 0.08);
  filter: brightness(1.03);
}

.project-panel {
  width: min(100%, 520px);
  min-height: 340px;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.03), transparent 42%),
    rgba(255, 255, 255, 0.028);
  background-position: 50% 16%, 0 0;
  background-size: 120% 120%, auto;
  box-shadow:
    0 28px 74px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(129, 74, 200, 0.08),
    inset 0 0 34px rgba(255, 255, 255, 0.014);
  opacity: 0.001;
  overflow: hidden;
  transform: translateY(150px);
  will-change: opacity, transform;
}

.expert-panel {
  order: 1;
  justify-self: start;
}

.project-screen {
  position: relative;
  min-height: 302px;
  padding: 15px 15px 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%),
    #000;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 74%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 74%, transparent 100%);
}

.project-screen::before {
  position: absolute;
  right: 16px;
  left: 16px;
  z-index: 2;
  height: 76px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
  content: "";
  pointer-events: none;
}

.project-screen::before {
  bottom: 0;
}

.project-greeting {
  position: relative;
  z-index: 1;
  margin-bottom: 11px;
  opacity: 0.001;
  transform: translateY(12px);
}

.project-greeting h4 {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1;
}

.project-greeting p {
  margin: 0;
  color: rgba(232, 233, 241, 0.76);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.project-graph {
  position: relative;
  z-index: 1;
  padding: 10px 10px 13px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.034);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.012);
  opacity: 0.001;
  transform: translateY(18px);
  transition:
    border-color 420ms ease-in-out,
    background 420ms ease-in-out,
    box-shadow 420ms ease-in-out;
}

.project-ongoing {
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.78) 28%, #000 62%, #000 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.78) 28%, #000 62%, #000 100%);
}

.project-row.is-visible .project-graph:hover {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.042);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.016),
    0 0 20px rgba(129, 74, 200, 0.08);
}

.project-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 600;
}

.project-mini-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
}

.project-slider-icon::before,
.project-slider-icon::after {
  position: absolute;
  width: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.76);
  content: "";
}

.project-slider-icon::before {
  top: 8px;
  transform: rotate(16deg);
}

.project-slider-icon::after {
  bottom: 8px;
  transform: rotate(-16deg);
}

.project-brief-icon::before {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 2px;
  content: "";
}

.project-calendar-icon::before {
  width: 11px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 2px;
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.12);
  content: "";
}

.project-video-icon::before {
  width: 10px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1px;
  content: "";
}

.project-link-icon::before {
  width: 11px;
  height: 1px;
  background: rgba(255, 255, 255, 0.54);
  content: "";
  transform: rotate(-28deg);
}

.project-detail,
.project-meeting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-top: 9px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.032);
  overflow: hidden;
  opacity: 0.001;
  transform: translateY(14px);
  transition:
    border-color 360ms ease-in-out,
    background 360ms ease-in-out,
    box-shadow 360ms ease-in-out,
    filter 360ms ease-in-out;
}

.project-detail {
  position: relative;
}

.project-detail::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.1) 42%, transparent 62%);
  content: "";
  opacity: 0;
  transform: translateX(-110%);
}

.project-row.is-visible .project-detail:hover,
.project-row.is-visible .project-meeting:hover,
.project-row.is-visible .project-schedule-top:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 18px rgba(129, 74, 200, 0.08);
  filter: brightness(1.035);
}

.project-card-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.project-card-left div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.project-card-left strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 620;
  line-height: 1.1;
  white-space: nowrap;
}

.project-card-left small {
  color: rgba(229, 230, 238, 0.58);
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.project-progress-ring {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #171717 45%, transparent 47%),
    conic-gradient(rgba(255, 255, 255, 0.72) 0 260deg, rgba(255, 255, 255, 0.14) 260deg 360deg);
  opacity: 0.82;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.1));
}

.project-divider {
  width: 100%;
  height: 1px;
  margin: 13px 0 9px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  opacity: 0.48;
  transform: scaleX(0.45);
  transform-origin: center;
}

.project-schedule-top {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.036);
  opacity: 0.001;
  transform: translateY(14px);
  transition:
    border-color 360ms ease-in-out,
    background 360ms ease-in-out,
    box-shadow 360ms ease-in-out,
    filter 360ms ease-in-out;
}

.project-days {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 11px;
  color: rgba(229, 230, 238, 0.62);
  font-size: 8px;
  line-height: 1;
}

.project-days span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 21px;
  min-height: 17px;
  border-radius: 3px;
}

.project-days span:first-child {
  background: rgba(129, 74, 200, 0.88);
  color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 14px rgba(129, 74, 200, 0.22);
  animation: projectDatePillGlow 6.8s ease-in-out infinite;
}

.project-meetings {
  display: grid;
  gap: 6px;
  margin-top: 7px;
}

.project-meeting {
  min-height: 40px;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.018);
}

.project-meeting:nth-child(2) {
  opacity: 0.001;
}

.project-menu-dot {
  position: relative;
  flex: 0 0 auto;
  width: 12px;
  height: 16px;
  opacity: 0.5;
}

.project-menu-dot::before {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 5px 0 rgba(255, 255, 255, 0.46), 0 10px 0 rgba(255, 255, 255, 0.46);
  content: "";
  transform: translateX(-50%);
}

.project-row.is-visible .project-copy {
  animation: serviceHeaderIn 1.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-row.is-visible .project-panel {
  animation:
    serviceGraphicIn 1.45s 260ms cubic-bezier(0.16, 1, 0.3, 1) both,
    projectPanelBreath 6.8s 1900ms ease-in-out infinite;
}

.project-row.is-visible .project-greeting {
  animation: projectInnerIn 920ms 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-row.is-visible .project-graph {
  animation: projectInnerIn 1080ms 860ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-row.is-visible .project-detail {
  animation: projectInnerIn 860ms 1060ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-row.is-visible .project-detail::after {
  animation: projectShimmer 2.8s 1840ms cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.project-row.is-visible .project-divider {
  animation: projectDividerIn 900ms 1260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-row.is-visible .project-schedule-top {
  animation: projectInnerIn 860ms 1380ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-row.is-visible .project-meeting:nth-child(1) {
  animation: projectInnerIn 840ms 1540ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-row.is-visible .project-meeting:nth-child(2) {
  animation: projectInnerIn 840ms 1660ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-row.is-visible .project-progress-ring {
  animation:
    projectProgressSpin 7.2s 1800ms linear infinite,
    projectProgressBreath 5.6s 1800ms ease-in-out infinite;
}

.project-row.is-static-visible .project-copy,
.project-row.is-static-visible .project-panel,
.project-row.is-static-visible .project-greeting,
.project-row.is-static-visible .project-graph,
.project-row.is-static-visible .project-detail,
.project-row.is-static-visible .project-divider,
.project-row.is-static-visible .project-schedule-top,
.project-row.is-static-visible .project-meeting {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.project-row.is-static-visible .project-panel,
.project-row.is-static-visible .project-progress-ring,
.project-row.is-static-visible .project-days span:first-child,
.project-row.is-static-visible .project-detail::after {
  animation: none !important;
}

.project-row.is-static-visible .project-detail::after {
  opacity: 0 !important;
  transform: translateX(-110%) !important;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 28px var(--page-pad) 28px;
  border-top: 0;
  background: #000;
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
}

.footer-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 58px;
}

.footer-cta .section-label {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--muted);
}

.site-footer[data-footer-reveal] .footer-cta .section-label,
.site-footer[data-footer-reveal] .footer-cta h2,
.site-footer[data-footer-reveal] .footer-actions,
.site-footer[data-footer-reveal] .trust-strip,
.site-footer[data-footer-reveal] .footer-grid {
  opacity: 0.001;
  transform: translateY(50px);
  will-change: opacity, transform;
}

.site-footer.is-visible .footer-cta .section-label {
  animation: serviceHeaderIn 1.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-footer.is-visible .footer-cta h2 {
  animation: serviceHeaderIn 1.32s 80ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-footer.is-visible .footer-actions {
  animation: footerActionsIn 1.45s 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-footer.is-visible .trust-strip {
  animation: serviceHeaderIn 1.42s 430ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-footer.is-visible .footer-grid {
  animation: serviceGraphicIn 1.45s 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-footer.is-static-visible .footer-cta .section-label,
.site-footer.is-static-visible .footer-cta h2,
.site-footer.is-static-visible .footer-actions,
.site-footer.is-static-visible .trust-strip,
.site-footer.is-static-visible .trust-logo-window,
.site-footer.is-static-visible .footer-grid {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.footer-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 5.2vw, 66px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.footer-cta h2 span {
  display: block;
  white-space: nowrap;
}

.footer-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding-bottom: 4px;
  transform: translateX(-2.5cm);
}

.site-footer[data-footer-reveal] .footer-actions {
  transform: translate(-2.5cm, 50px);
}

.site-footer.is-static-visible .footer-actions {
  transform: translateX(-2.5cm) !important;
}

.footer-action-button {
  min-width: 334px;
  min-height: 58px;
  padding: 0 36px;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.034);
  color: rgba(245, 246, 252, 0.92);
  font-family: Orbitron, Figtree, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.025),
    0 0 18px rgba(129, 74, 200, 0.08);
}

.footer-action-button-accent {
  border-color: rgba(201, 164, 245, 0.32);
  background:
    linear-gradient(180deg, rgba(201, 164, 245, 0.14), rgba(129, 74, 200, 0.08)),
    rgba(255, 255, 255, 0.034);
  box-shadow:
    inset 0 0 18px rgba(223, 122, 254, 0.04),
    0 0 22px rgba(129, 74, 200, 0.14);
}

.footer-action-button:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.044);
}

.footer-action-button-accent:hover {
  border-color: rgba(223, 122, 254, 0.46);
}

.footer-button {
  flex: 0 0 auto;
}

.site-footer > .trust-strip {
  width: 100%;
  margin: 0 auto 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.35fr) repeat(2, minmax(160px, 0.42fr));
  gap: clamp(54px, 9vw, 156px);
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.78;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 15px;
}

.footer-column h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.footer-column a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.36;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 44px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

@media (max-width: 900px) {
  :root {
    --section-nav-space: 92px;
  }

  .site-header {
    gap: 16px;
    overflow: visible;
    scrollbar-width: none;
  }

  .site-header::-webkit-scrollbar {
    display: none;
  }

  .desktop-nav {
    position: static;
    transform: none;
    gap: 16px;
    margin-left: 18px;
  }

  .preview-placeholder {
    min-height: 100vh;
    height: 100vh;
    padding: 180px 24px 100px;
  }

  .trust-strip {
    margin-top: 0;
  }

  .placeholder-service {
    margin-top: 0;
    padding-top: var(--section-nav-space);
    transform: none;
  }

  .service-row,
  .project-row,
  .footer-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    gap: 30px;
    margin-top: 36px;
  }

  .workflow-scroll-cue,
  .project-scroll-cue {
    width: 54px;
    height: 54px;
    margin-top: 56px;
  }

  .workflow-scroll-cue::before,
  .project-scroll-cue::before {
    inset: 10px;
  }

  .project-row {
    gap: 34px;
    margin-top: 64px;
    padding-top: var(--section-nav-space);
  }

  .expert-row {
    margin-top: 72px;
  }

  .expert-row .project-copy {
    order: initial;
    justify-self: stretch;
  }

  .expert-panel {
    order: initial;
    justify-self: center;
  }

  .project-panel {
    justify-self: center;
  }

  .service-connector {
    display: none;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-actions {
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    transform: none;
  }

  .site-footer[data-footer-reveal] .footer-actions,
  .site-footer.is-static-visible .footer-actions {
    transform: none !important;
  }

  .site-footer.is-visible .footer-actions {
    animation: serviceGraphicIn 1.45s 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .footer-action-button {
    min-width: 0;
    width: 100%;
  }

  .section-divider {
    width: calc(100vw - 80px);
    transform: none;
  }
}

@media (max-width: 560px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .site-header {
    min-height: 54px;
  }

  .preview-placeholder {
    min-height: 841px;
    padding: 180px 24px 100px;
  }

  .placeholder-copy {
    transform: translateY(-12px);
  }

  .heliox-hero-mark {
    margin-bottom: 18px;
    font-size: 28px;
    letter-spacing: 0.05em;
  }

  .heliox-hero-mark::before,
  .heliox-hero-mark::after {
    display: none;
  }

  .heliox-scanline {
    width: 36%;
  }

  .hero-scroll-cue {
    top: calc(50vh + 198px);
    width: 49px;
    height: 49px;
  }

  .hero-scroll-cue::before {
    inset: 9px;
  }

  .scroll-cue-chevron {
    width: 10px;
    height: 10px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .placeholder-copy h1 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.18;
  }

  .placeholder-copy p:not(.section-label),
  .service-subtitle,
  .service-copy p,
  .project-copy p {
    font-size: 12px;
  }

  .project-copy h3 {
    font-size: 29px;
    white-space: normal;
  }

  .project-panel {
    min-height: 326px;
  }

  .project-screen {
    min-height: 288px;
    padding: 14px 12px 24px;
  }

  .project-card-left strong {
    white-space: normal;
  }

  .project-days {
    gap: 5px;
    justify-content: space-between;
  }

  .hero-planet {
    top: calc(50% - 203px);
    width: 406px;
    height: 406px;
    transform: translateX(-50%) scale(0.68);
  }

  .trust-logo-window {
    max-width: min(700px, calc(100vw - 48px));
  }

  .trust-logo-track {
    gap: 44px;
  }

  .footer-cta h2 {
    font-size: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .heliox-hero-mark {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .site-header,
  .star-field,
  .twinkle-layer,
  .placeholder-copy,
  .placeholder-copy .section-label,
  .placeholder-copy .badge-copy,
  .placeholder-copy .badge-word-expert,
  .title-word,
  .placeholder-copy p:not(.section-label),
  .hero-actions,
  .hero-scroll-cue,
  .workflow-scroll-cue,
  .post-hero,
  .placeholder-service .micro-label,
  .placeholder-service h2,
  .service-subtitle,
  .task-card,
  .task-viewport,
  .service-connector,
  .service-copy,
  .project-copy,
  .project-panel,
  .project-greeting,
  .project-graph,
  .project-detail,
  .project-schedule-top,
  .project-meeting,
  .trust-strip,
  .trust-logo-window {
    visibility: visible;
    max-width: none;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .heliox-letter {
    color: #fff;
    filter: none;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 12px rgba(255, 255, 255, 0.5),
      0 0 26px rgba(178, 96, 255, 0.12);
  }

  .hero-scroll-cue {
    opacity: 1;
  }

  .workflow-scroll-cue {
    opacity: 1;
  }

  [data-typewriter].is-typewriter-ready .type-char {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .task-card ul {
    transform: none;
  }
}

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFocus {
  0% {
    opacity: 0.72;
    filter: blur(10px);
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes starFocus {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes twinkleLayerIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes badgeShellIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes helioxMarkIn {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(8px) scale(0.985);
  }

  to {
    opacity: 0.98;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes helioxHeroAuraBreath {
  0%,
  100% {
    opacity: 0.68;
    transform: scaleX(0.96);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.03);
  }
}

@keyframes helioxLetterOrbit {
  0% {
    opacity: 0.72;
    background-position: 0% 50%;
    -webkit-mask-position: -55% 50%;
    mask-position: -55% 50%;
  }

  12% {
    opacity: 0.94;
  }

  46% {
    opacity: 1;
    background-position: 55% 50%;
    -webkit-mask-position: 50% 50%;
    mask-position: 50% 50%;
  }

  74% {
    opacity: 0.94;
  }

  100% {
    opacity: 0.76;
    background-position: 100% 50%;
    -webkit-mask-position: 155% 50%;
    mask-position: 155% 50%;
  }
}

@keyframes helioxLetterMetalPulse {
  0%,
  8%,
  34%,
  100% {
    color: #f7f8fb;
    filter: brightness(1);
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95),
      0 -1px 0 rgba(138, 142, 154, 0.4),
      0 0 7px rgba(255, 255, 255, 0.2),
      0 0 14px rgba(164, 146, 205, 0.08);
  }

  12% {
    color: #fffdf4;
    filter: brightness(1.24) saturate(1.02);
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 1),
      0 -1px 0 rgba(188, 170, 126, 0.36),
      0 0 8px rgba(255, 244, 204, 0.36),
      0 0 14px rgba(255, 236, 178, 0.16);
  }

  18% {
    color: #ffffff;
    filter: brightness(1.34) saturate(1);
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 1),
      0 -1px 0 rgba(164, 168, 178, 0.42),
      0 0 9px rgba(255, 255, 255, 0.42),
      0 0 16px rgba(216, 220, 232, 0.18);
  }

  24% {
    color: #f3f5f8;
    filter: brightness(1.16) saturate(0.98);
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92),
      0 -1px 0 rgba(120, 124, 136, 0.38),
      0 0 7px rgba(255, 255, 255, 0.22),
      0 0 12px rgba(164, 146, 205, 0.1);
  }

  29% {
    color: #fff8e2;
    filter: brightness(1.12) saturate(1.02);
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.94),
      0 -1px 0 rgba(184, 158, 104, 0.3),
      0 0 7px rgba(255, 236, 178, 0.2),
      0 0 12px rgba(255, 236, 178, 0.1);
  }
}

@keyframes helioxChromaticFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  45% {
    background-position: 100% 50%;
  }
}

@keyframes helioxLetterSweep {
  0%,
  18% {
    opacity: 0;
    background-position: -190% 50%;
  }

  34% {
    opacity: 0.88;
  }

  52% {
    opacity: 0.78;
    background-position: 50% 50%;
  }

  70% {
    opacity: 0.9;
    background-position: 170% 50%;
  }

  86%,
  100% {
    opacity: 0;
    background-position: 220% 50%;
  }
}

@keyframes helioxScanlinePulse {
  0% {
    opacity: 0;
    transform: translateX(-150%) skewX(-12deg);
  }

  18% {
    opacity: 0;
  }

  44% {
    opacity: 0.48;
  }

  62% {
    opacity: 0.7;
    transform: translateX(255%) skewX(-12deg);
  }

  84%,
  100% {
    opacity: 0;
    transform: translateX(300%) skewX(-12deg);
  }
}

@keyframes scrollCueIn {
  from {
    opacity: 0;
    transform: translate(-50%, 8px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes workflowCueIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes scrollCueOuterBreath {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.86;
    transform: scale(1.18);
  }
}

@keyframes scrollCueChevronGlow {
  0%,
  100% {
    opacity: 0.62;
    filter:
      drop-shadow(0 0 3px rgba(255, 255, 255, 0.32))
      drop-shadow(0 0 7px rgba(223, 122, 254, 0.24));
  }

  50% {
    opacity: 1;
    filter:
      drop-shadow(0 0 6px rgba(255, 255, 255, 0.7))
      drop-shadow(0 0 15px rgba(223, 122, 254, 0.46));
  }
}

@keyframes badgeCopyIn {
  from {
    max-width: 0;
    opacity: 0;
    transform: translateX(-5px);
  }

  to {
    max-width: 182px;
    opacity: 1;
    transform: translateX(0);
  }
}

@property --badge-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@property --badge-lens-x {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px;
}

@keyframes badgeExpertIn {
  from {
    opacity: 0;
    transform: translate(-5px, -50%) scaleX(1.02) scaleY(0.96);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%) scaleX(1.02) scaleY(0.96);
  }
}

@keyframes badgeLogoIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes badgeBorderFlow {
  to {
    --badge-border-angle: 360deg;
  }
}

@keyframes badgeBorderBreath {
  0%,
  100% {
    opacity: 0.36;
    filter: drop-shadow(0 0 7px rgba(223, 122, 254, 0.22));
  }

  48% {
    opacity: 0.76;
    filter: drop-shadow(0 0 17px rgba(223, 122, 254, 0.46));
  }
}

@keyframes badgeSearchSweep {
  0%,
  16.667% {
    --badge-lens-x: 0px;
    opacity: 0;
    transform: translate3d(calc(var(--badge-lens-x) - 28px), -50%, 0) scale(0.985);
  }

  28.667% {
    --badge-lens-x: 0px;
    opacity: 1;
    transform: translate3d(var(--badge-lens-x), -50%, 0) scale(1);
  }

  78% {
    --badge-lens-x: calc(var(--badge-width) - 96px);
    opacity: 1;
    transform: translate3d(var(--badge-lens-x), -50%, 0) scale(1);
  }

  100% {
    --badge-lens-x: calc(var(--badge-width) - 70px);
    opacity: 0;
    transform: translate3d(var(--badge-lens-x), -50%, 0) scale(0.985);
  }
}

@keyframes badgeMagnifiedWord {
  0%,
  16.667% {
    opacity: 0;
  }

  28.667% {
    opacity: 1;
  }

  78%,
  100% {
    opacity: 1;
  }
}

@keyframes titleWordAppear {
  from {
    opacity: 0.001;
    filter: blur(10px);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes framerWordFadeIn {
  from {
    opacity: 0.001;
    filter: blur(10px);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes subtitleTypeChar {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes ctaFramerIn {
  from {
    opacity: 0.001;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trustContentIn {
  from {
    opacity: 0.001;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trustLogosIn {
  from {
    opacity: 0.001;
    transform: perspective(1200px) translateY(80px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: perspective(1200px) translateY(0) scale(1);
  }
}

@keyframes trustLogoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 37px));
  }
}

@keyframes framerBigCircleSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes framerSmallCircleSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes chipIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleResolve {
  0% {
    opacity: 0;
    filter: blur(16px);
    transform: translateY(22px) scale(1.08);
  }

  60% {
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceHeaderIn {
  from {
    opacity: 0.001;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceGraphicIn {
  from {
    opacity: 0.001;
    transform: translateY(150px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes footerActionsIn {
  from {
    opacity: 0.001;
    transform: translate(-2.5cm, 150px);
  }

  to {
    opacity: 1;
    transform: translate(-2.5cm, 0);
  }
}

@keyframes serviceConnectorIn {
  from {
    opacity: 0.001;
    transform: translateY(34px);
  }

  to {
    opacity: 0.72;
    transform: translateY(0);
  }
}

@keyframes serviceCopyIn {
  from {
    opacity: 0.001;
    transform: translateY(44px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes projectInnerIn {
  from {
    opacity: 0.001;
    filter: blur(8px);
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes projectDividerIn {
  from {
    opacity: 0;
    transform: scaleX(0.45);
  }

  to {
    opacity: 0.48;
    transform: scaleX(1);
  }
}

@keyframes projectShimmer {
  0%,
  34% {
    opacity: 0;
    transform: translateX(-110%);
  }

  45% {
    opacity: 0.55;
  }

  72%,
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes projectProgressSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes projectPanelBreath {
  0%,
  100% {
    background-position: 50% 16%, 0 0;
    box-shadow:
      0 28px 74px rgba(0, 0, 0, 0.42),
      0 0 30px rgba(129, 74, 200, 0.08),
      inset 0 0 34px rgba(255, 255, 255, 0.014);
    filter: brightness(1);
  }

  50% {
    background-position: 52% 14%, 0 0;
    box-shadow:
      0 28px 74px rgba(0, 0, 0, 0.42),
      0 0 38px rgba(129, 74, 200, 0.16),
      inset 0 0 34px rgba(255, 255, 255, 0.018);
    filter: brightness(1.018);
  }
}

@keyframes projectProgressBreath {
  0%,
  100% {
    opacity: 0.82;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.1));
  }

  50% {
    opacity: 0.94;
    filter:
      drop-shadow(0 0 5px rgba(255, 255, 255, 0.14))
      drop-shadow(0 0 7px rgba(129, 74, 200, 0.12));
  }
}

@keyframes projectDatePillGlow {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(129, 74, 200, 0.18);
    filter: brightness(1);
  }

  50% {
    box-shadow: 0 0 16px rgba(129, 74, 200, 0.28);
    filter: brightness(1.025);
  }
}

@keyframes taskMaskFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes framerTaskStream {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(
      0,
      calc(-5 * (var(--task-row-height) + var(--task-gap))),
      0
    );
  }
}
