:root {
  --bk-base: #020912;
  --bk-mid: #06213a;
  --bk-glow: #1ea4ff;
  --px-base: #041225;
  --px-mid: #0a2e57;
  --px-glow: #27a8ff;
  --mx: 0;
  --my: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Space Grotesk", sans-serif;
  background: transparent;
  color: #dfe9ff;
  overflow-x: hidden;
  position: relative;
}

html {
  background: #02060c;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 26px,
      #4aa7ff12 26px,
      #4aa7ff12 27px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 26px,
      #4aa7ff0d 26px,
      #4aa7ff0d 27px
    );
}

body::after {
  content: "0x7f 0x2a 0x9c 0x11 0xee 0x44 0x8d 0x30 0xa1 0x5f";
  position: fixed;
  left: 1.1rem;
  bottom: 1rem;
  z-index: 2;
  color: #78c7ff40;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  pointer-events: none;
  text-transform: uppercase;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    radial-gradient(circle at center, #104885 0%, #06172f 38%, #02060c 100%);
  overflow: hidden;
}

.intro-overlay::before {
  content: "";
  position: absolute;
  inset: -20% -40%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 35%,
    #8fd1ff2a 49%,
    #c6e8ff55 50%,
    #8fd1ff2a 51%,
    transparent 65%,
    transparent 100%
  );
  animation: introSweep 1.4s ease-out infinite;
}

.intro-core {
  width: min(22vw, 170px);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid #89ceff7a;
  box-shadow:
    0 0 0 10px #4daeff14,
    0 0 50px #2f98ff77,
    inset 0 0 28px #67c0ff52;
  animation: introPulseCore 1.2s ease-in-out infinite;
}

.intro-overlay p {
  position: absolute;
  bottom: 16%;
  margin: 0;
  color: #9cd4ff;
  font-size: 0.78rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  text-shadow: 0 0 18px #4eaeff61;
}

.is-entering .navbar,
.is-entering .floating-logos,
.is-entering .center-copy,
.is-entering .ambient,
.is-entering .split-divider {
  opacity: 0;
  transform: translateY(20px);
}

.is-ready .navbar {
  animation: enterRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.is-ready .floating-logos {
  animation: enterFade 0.95s ease forwards;
  animation-delay: 0.08s;
}

.is-ready .center-copy {
  animation: enterRiseCenter 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.14s;
}

.is-ready .ambient,
.is-ready .split-divider {
  animation: enterFade 1.1s ease forwards;
  animation-delay: 0.22s;
}

.is-ready .intro-overlay {
  animation: introDismiss 0.85s ease forwards;
  animation-delay: 0.28s;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: linear-gradient(180deg, #020913ed 0%, #020913bf 70%, #0209132a 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #4ca7ff42;
  box-shadow: 0 10px 30px #000a;
  overflow: hidden;
}

.nav-binary {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.14rem;
  pointer-events: none;
  z-index: 0;
}

.binary-row {
  overflow: hidden;
  white-space: nowrap;
}

.binary-track {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  animation: binaryMarquee 18s linear infinite;
  transform: translate3d(0, 0, 0);
}

.binary-track span {
  display: inline-block;
  white-space: nowrap;
  color: #70c2ff40;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  padding-right: 2.2rem;
  text-shadow: 0 0 10px #3da5ff2b;
}

.speed-b .binary-track {
  animation-duration: 23s;
  animation-direction: reverse;
}

.speed-c .binary-track {
  animation-duration: 15s;
}

.speed-b .binary-track span {
  color: #8ad0ff52;
}

.speed-c .binary-track span {
  color: #5eb8ff30;
}

.nav-brand {
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  max-width: min(42vw, 220px);
}

.nav-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(30px, 3.5vw, 44px);
  object-fit: contain;
  object-position: left center;
  border-radius: 0.35rem;
  border: 1px solid #59b5ff57;
  box-shadow: 0 0 14px #2f95ff2f;
}

.nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
}

.tech-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #66beff72;
  background: linear-gradient(135deg, #071d31d8 0%, #0a2a45d8 55%, #081c2fd8 100%);
  color: #d8ecff;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 1px #8dd1ff1f inset,
    0 0 18px #2f9fff1f;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, filter 0.18s ease;
}

.tech-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 2px,
      #9ad7ff14 2px,
      #9ad7ff14 3px
    ),
    linear-gradient(120deg, transparent 0%, #b9e5ff33 47%, #e6f6ff55 50%, #b9e5ff33 53%, transparent 100%);
  transform: translateX(-120%);
  animation: techSweep 3.6s linear infinite;
  pointer-events: none;
}

.tech-btn::after {
  content: "[0101]";
  position: absolute;
  right: 0.5rem;
  bottom: 0.16rem;
  font-size: 0.48rem;
  letter-spacing: 0.09em;
  color: #95d4ff5e;
  pointer-events: none;
  animation: btnGlyph 2.4s steps(2, end) infinite;
}

.tech-btn:hover {
  color: #f2f9ff;
  transform: translateY(-1px);
  border-color: #b4e2ff;
  box-shadow:
    0 0 0 1px #a3dbff73 inset,
    0 0 24px #69beff72,
    0 0 38px #4caeff3b;
  filter: brightness(1.08);
}

.tech-btn:active {
  transform: translateY(0) scale(0.98);
  border-color: #d7eeff;
  box-shadow:
    0 0 0 1px #d8efff7a inset,
    0 0 34px #8cd4ff85,
    0 0 56px #5ab8ff57;
  animation: btnPressFlash 0.24s steps(2, end) 1;
}

.tech-btn:hover::before {
  animation-duration: 1.05s;
}

.tech-btn:active::before {
  animation-duration: 0.32s;
}

.tech-btn:active::after {
  color: #d5efff;
  letter-spacing: 0.14em;
  opacity: 1;
}

.tech-btn:hover::after {
  content: "[0110]";
  color: #b6e4ff92;
}

.split-layout {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  isolation: isolate;
}

.site-split-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
}

.floating-logos {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.float-logo {
  position: fixed;
  width: min(28vw, 420px);
  height: auto;
  opacity: 0.64;
  filter: drop-shadow(0 20px 40px #0000008a);
  --lx: 0px;
  --ly: 0px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.float-logo-bkware {
  left: 21%;
  top: 58%;
  transform: translate(calc(-50% + var(--lx)), calc(-50% + var(--ly))) scale(0.84);
  opacity: 0.42;
  filter: blur(0.4px) drop-shadow(0 18px 36px #00000085);
}

.float-logo-phoenix {
  left: 75%;
  top: 54%;
  transform: translate(calc(-50% + var(--lx)), calc(-50% + var(--ly))) scale(0.86);
  width: min(22vw, 320px);
}

.bg-half {
  height: 100%;
}

.bg-bkware {
  background:
    radial-gradient(
      circle at calc(24% + (var(--mx) * 7%)) calc(35% + (var(--my) * 6%)),
      #cfad4466 0%,
      transparent 44%
    ),
    linear-gradient(110deg, #4a3900 0%, #5a4600 44%, #4a3900 100%);
  border-right: 1px solid #ffffff24;
  animation: bkFlow 13s ease-in-out infinite alternate;
}

.bg-phoenix {
  background:
    radial-gradient(
      circle at calc(52% + (var(--mx) * 8%)) calc(42% + (var(--my) * 7%)),
      #2ab0ff63 0%,
      transparent 34%
    ),
    radial-gradient(
      circle at calc(20% - (var(--mx) * 5%)) calc(90% - (var(--my) * 6%)),
      #3a89ff4f 0%,
      transparent 36%
    ),
    linear-gradient(145deg, var(--px-base) 0%, var(--px-mid) 55%, #071b34 100%);
  animation: phoenixFlow 11s ease-in-out infinite alternate;
}

.ambient {
  position: absolute;
  pointer-events: none;
  z-index: 4;
  filter: blur(24px);
  mix-blend-mode: screen;
  opacity: 0.45;
}

.ambient-top {
  top: -18vh;
  left: 12%;
  width: 76%;
  height: 28vh;
  background: radial-gradient(circle at center, #4db6ff6a 0%, transparent 68%);
  animation: driftTop 11s ease-in-out infinite;
}

.ambient-left {
  top: 20vh;
  left: 6%;
  width: 30vw;
  height: 48vh;
  background: radial-gradient(circle at 32% 50%, #cca73450 0%, transparent 74%);
  animation: driftLeft 8.5s ease-in-out infinite alternate;
}

.ambient-right {
  top: 16vh;
  right: 4%;
  width: 34vw;
  height: 54vh;
  background: radial-gradient(circle at 56% 42%, #43b4ff58 0%, transparent 72%);
  animation: driftRight 10s ease-in-out infinite;
}

.split-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 10;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #8bcfff38 15%,
    #72bfff52 50%,
    #8bcfff38 85%,
    transparent 100%
  );
  box-shadow:
    0 0 16px #3d9eff55,
    0 0 42px #2f95ff26;
  animation: dividerPulse 3.8s ease-in-out infinite;
}

.split-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    #85ccff0e 3px,
    transparent 4px
  );
  opacity: 0.22;
  animation: scanline 7s linear infinite;
}

.panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  z-index: 1;
  filter: saturate(0.82) brightness(0.62);
  transition: filter 0.45s ease, transform 0.45s ease;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
}

.panel-bkware {
  background: transparent;
  border-right: 1px solid #ffffff24;
}

.panel-phoenix {
  background: transparent;
}

.panel-logo {
  position: relative;
  z-index: 1;
  width: min(62%, 24rem);
  height: auto;
  opacity: 0.7;
  filter: drop-shadow(0 20px 38px #0000008a);
  transform: translate3d(0, 0, 0) scale(0.9);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.panel:hover .panel-logo {
  transform: translate3d(0, -10px, 0) scale(0.95);
  opacity: 0.84;
}

.logo-bkware {
  max-width: 22rem;
}

.logo-phoenix {
  max-width: 18rem;
}

.center-copy {
  position: absolute;
  top: clamp(96px, 16vh, 168px);
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 15;
  margin: 0;
  padding: 1.25rem 1.35rem;
  border: 1px solid #58b5ff55;
  background:
    linear-gradient(145deg, #03101fcf 0%, #041529db 60%, #03101fcf 100%);
  border-radius: 1rem;
  backdrop-filter: blur(14px);
  width: min(92vw, 700px);
  box-shadow:
    0 24px 50px #00000085,
    0 0 0 1px #4ea7ff33 inset,
    0 0 30px #1f87ff24;
  animation: panelPulse 3.2s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.center-copy::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #5ab3ff24;
  border-radius: 0.75rem;
  pointer-events: none;
}

.center-copy::after {
  content: "INIT://LEN_PROFILE v1.0  AUTH:OK  STATUS:ONLINE";
  position: absolute;
  right: 0.85rem;
  bottom: 0.7rem;
  color: #78c5ff5e;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  pointer-events: none;
}

.center-copy p {
  margin: 0.65rem 0 0;
  color: #cae1ff;
  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  text-align: left;
}

.center-copy .intro {
  margin: 0;
  color: #78c5ff;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  text-shadow: 0 0 12px #2f93ff5f;
}

.center-copy h1 {
  margin: 0.35rem 0 0.3rem;
  color: transparent;
  background: linear-gradient(90deg, #d9e9ff 0%, #8ecbff 45%, #d9e9ff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  animation: textShimmer 6s ease-in-out infinite;
}

.center-copy h1,
.center-copy p,
.center-copy .intro {
  transform: translateZ(1px);
}

.center-copy .intro {
  animation: introPulse 2.8s ease-in-out infinite;
}

.about-line {
  opacity: 0;
  animation: textRise 0.85s ease forwards;
}

.line-a {
  animation-delay: 0.15s;
}

.line-b {
  animation-delay: 0.35s;
}

.panel-bkware::before {
  background: none;
  opacity: 0;
}

.panel-phoenix::before {
  background:
    radial-gradient(circle at 50% 50%, #7ec6ff2a 0%, transparent 58%),
    linear-gradient(120deg, #8ad7ff14 0%, transparent 45% 55%, #8ad7ff14 100%);
}

.story-section {
  position: relative;
  z-index: 6;
  padding: clamp(5rem, 8vw, 8rem) 0 8rem;
  background: transparent;
}

.story-grid {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: block;
}

.story-steps {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.1rem 0 0.2rem;
}

.story-steps::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #7bc7ff4d 12%,
    #7bc7ff80 50%,
    #7bc7ff4d 88%,
    transparent 100%
  );
  box-shadow: 0 0 16px #4caeff4d;
  pointer-events: none;
}

.story-step {
  position: relative;
  width: min(560px, 86vw);
  min-height: 70vh;
  display: grid;
  align-content: center;
  padding: 1.1rem 1.15rem;
  border: 1px solid #4fa4e933;
  border-radius: 0.95rem;
  background: linear-gradient(145deg, #03101f99 0%, #041326ad 100%);
  transform: translateY(20px) scale(0.985);
  opacity: 0.42;
  transition: transform 0.45s ease, opacity 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.story-step::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #8bd0ff;
  box-shadow: 0 0 14px #64bcff9c;
  transform: translateY(-50%);
}

.story-step:nth-child(2n) {
  margin-left: calc(50% + 22px);
  margin-right: auto;
}

.story-step:nth-child(2n)::before {
  left: -28px;
}

.story-step:nth-child(2n + 1) {
  margin-right: calc(50% + 22px);
  margin-left: auto;
}

.story-step:nth-child(2n + 1)::before {
  right: -28px;
}

.story-step h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  color: #e6f2ff;
}

.story-step p {
  margin: 0.7rem 0 0;
  color: #c1d8f5;
  line-height: 1.55;
}

.story-step.is-active {
  opacity: 1;
  transform: translateY(0) scale(1.01);
  border-color: #67beff8f;
  box-shadow:
    0 18px 38px #00000073,
    0 0 0 1px #64bbff3f inset,
    0 0 24px #47abff2e;
}

.contact-section {
  position: relative;
  z-index: 7;
  padding: 2rem 0 4.5rem;
}

.contact-card {
  width: min(760px, 92vw);
  margin: 0 auto;
  border: 1px solid #62bcff66;
  border-radius: 1rem;
  padding: 1.25rem;
  background: linear-gradient(145deg, #03101fcf 0%, #041529db 60%, #03101fcf 100%);
  box-shadow:
    0 20px 44px #00000080,
    0 0 0 1px #62bcff2f inset,
    0 0 26px #2e9fff26;
}

.contact-card h2 {
  margin: 0;
  color: #e7f3ff;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.contact-card p {
  margin: 0.45rem 0 0.95rem;
  color: #c6dcf6;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #4fa9ee4d;
  border-radius: 0.7rem;
  background: #071a2ca8;
  color: #dff0ff;
  padding: 0.72rem 0.85rem;
  font: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9dc2e9;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #73c4ff9c;
  box-shadow: 0 0 0 2px #57b3ff2e;
}

.contact-form button {
  justify-self: center;
  min-width: 220px;
  padding-inline: 1.15rem;
}

.contact-status {
  margin: 0.75rem 0 0;
  min-height: 1.2em;
  text-align: center;
  color: #9ed1fb;
  font-size: 0.95rem;
}

.contact-form button:disabled {
  opacity: 0.65;
  cursor: wait;
}

@keyframes scanline {
  0% {
    transform: translateY(-24px);
  }
  100% {
    transform: translateY(24px);
  }
}

@keyframes introSweep {
  0% {
    transform: translate3d(-12%, -10%, 0) rotate(0deg);
    opacity: 0.6;
  }
  100% {
    transform: translate3d(12%, 10%, 0) rotate(1.5deg);
    opacity: 1;
  }
}

@keyframes introPulseCore {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.75;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes introDismiss {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes enterRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enterRiseCenter {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes enterFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes dividerPulse {
  0%,
  100% {
    opacity: 0.5;
    box-shadow:
      0 0 16px #3d9eff55,
      0 0 42px #2f95ff26;
  }
  50% {
    opacity: 0.95;
    box-shadow:
      0 0 24px #7ec6ff85,
      0 0 68px #3da6ff4a;
  }
}

@keyframes panelPulse {
  0%,
  100% {
    box-shadow:
      0 24px 50px #00000085,
      0 0 0 1px #4ea7ff33 inset,
      0 0 26px #1f87ff20;
  }
  50% {
    box-shadow:
      0 24px 50px #00000085,
      0 0 0 1px #66c0ff55 inset,
      0 0 40px #34a0ff3f;
  }
}

@keyframes binaryMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes techSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes btnGlyph {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(0);
  }
  50% {
    opacity: 0.95;
    transform: translateY(-1px);
  }
}

@keyframes btnPressFlash {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.35) contrast(1.12);
  }
  100% {
    filter: brightness(1);
  }
}

@keyframes bkFlow {
  0% {
    background-position: 0% 0%, 0% 0%;
  }
  100% {
    background-position: 8% 5%, 100% 0%;
  }
}

@keyframes phoenixFlow {
  0% {
    background-position: 50% 42%, 20% 90%, 0% 0%;
  }
  100% {
    background-position: 58% 49%, 14% 84%, 100% 100%;
  }
}

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

@keyframes introPulse {
  0%,
  100% {
    opacity: 0.8;
    text-shadow: 0 0 10px #2f93ff4a;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 16px #57b3ff75;
  }
}

@keyframes textRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes driftTop {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.42;
  }
  50% {
    transform: translate3d(0, 14px, 0) scale(1.02);
    opacity: 0.62;
  }
}

@keyframes driftLeft {
  0% {
    transform: translate3d(-8px, 0, 0) scale(0.96);
    opacity: 0.32;
  }
  100% {
    transform: translate3d(10px, 12px, 0) scale(1.08);
    opacity: 0.56;
  }
}

@keyframes driftRight {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.36;
  }
  50% {
    transform: translate3d(-10px, 8px, 0) scale(1.06);
    opacity: 0.62;
  }
}

@media (max-width: 920px) {
  .navbar {
    padding: 0.8rem 0.9rem;
  }

  .nav-links {
    gap: 0.7rem;
  }

  .nav-links .tech-btn {
    font-size: 0.92rem;
  }

  .binary-track span {
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    padding-right: 1.4rem;
  }

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

  .site-split-bg {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .bg-bkware {
    border-right: 0;
    border-bottom: 1px solid #ffffff24;
  }

  .float-logo-bkware {
    left: 50%;
    top: 23%;
    width: min(56vw, 340px);
    transform: translate(calc(-50% + var(--lx)), calc(-50% + var(--ly))) scale(0.8);
    opacity: 0.36;
  }

  .float-logo-phoenix {
    left: 50%;
    top: 74%;
    width: min(42vw, 220px);
    transform: translate(calc(-50% + var(--lx)), calc(-50% + var(--ly))) scale(0.84);
  }

  .split-divider {
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(
      to right,
      transparent 0%,
      #8bcfff38 15%,
      #72bfff52 50%,
      #8bcfff38 85%,
      transparent 100%
    );
  }

  .panel {
    min-height: 56vh;
  }

  .panel-bkware {
    border-right: 0;
    border-bottom: 1px solid #ffffff24;
  }

  .panel-logo {
    width: min(52vw, 17rem);
  }

  .center-copy {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    justify-self: center;
    align-self: center;
    margin: 0.8rem 0;
  }

  .center-copy p {
    white-space: normal;
  }

  .center-copy::after {
    position: static;
    display: block;
    margin-top: 0.75rem;
  }

  .ambient-left,
  .ambient-right {
    width: 56vw;
    height: 34vh;
  }

  .story-grid {
    width: min(1180px, 94vw);
  }

  .story-steps::before {
    display: none;
  }

  .story-step {
    min-height: 52vh;
    margin-inline: auto !important;
    width: min(92vw, 560px);
  }

  .story-step::before {
    display: none;
  }

  .contact-card {
    width: min(92vw, 760px);
  }

  .contact-form button {
    width: min(100%, 280px);
    justify-self: center;
  }

  .tech-btn::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-btn::before {
    animation: none !important;
  }

  .intro-overlay,
  .intro-overlay::before,
  .intro-core {
    animation: none !important;
  }

  .is-entering .navbar,
  .is-entering .floating-logos,
  .is-entering .center-copy,
  .is-entering .ambient,
  .is-entering .split-divider {
    opacity: 1;
    transform: none;
  }

  .binary-track,
  .split-layout::before,
  .ambient,
  .split-divider,
  .center-copy,
  .panel-logo,
  .panel-bkware,
  .panel-phoenix,
  .about-line,
  .center-copy .intro,
  .center-copy h1,
  .story-step {
    animation: none !important;
    transition: none !important;
  }
}
