:root {
  --bg-top: #04101a;
  --bg-mid: #082032;
  --bg-bottom: #05080d;
  --text: #eef7ff;
  --muted: rgba(230, 240, 251, 0.75);
  --line: rgba(180, 223, 255, 0.18);
  --glow-cyan: #75f5ff;
  --glow-gold: #ffd981;
  --glow-mint: #86f2c2;
  --glow-coral: #ff8c72;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-top), var(--bg-mid) 55%, var(--bg-bottom));
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(117, 245, 255, 0.16), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(255, 140, 114, 0.14), transparent 24%),
    radial-gradient(circle at 50% 75%, rgba(134, 242, 194, 0.11), transparent 30%),
    linear-gradient(180deg, var(--bg-top), var(--bg-mid) 55%, var(--bg-bottom));
}

.mesh,
#particle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mesh {
  z-index: 0;
  opacity: 0.6;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 80%);
}

#particle-field {
  z-index: 1;
  overflow: hidden;
}

.poster {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 3rem) 0 2rem;
}

.hero {
  max-width: 780px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(117, 245, 255, 0.9);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
  text-shadow:
    0 0 24px rgba(117, 245, 255, 0.15),
    0 0 38px rgba(255, 217, 129, 0.12);
}

.tagline {
  margin: 1rem 0 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: rgba(255, 239, 209, 0.95);
}

.lead {
  margin: 0 auto;
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-chips span {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(184, 230, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 20, 31, 0.48);
  backdrop-filter: blur(14px);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 247, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.showcase {
  position: relative;
  min-height: clamp(800px, 88vh, 980px);
  border: 1px solid var(--line);
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 28, 40, 0.86), rgba(6, 14, 22, 0.95)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 38%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.32);
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(117, 245, 255, 0.08), transparent 20%),
    repeating-linear-gradient(90deg, transparent 0 84px, rgba(144, 220, 255, 0.05) 85px),
    repeating-linear-gradient(180deg, transparent 0 84px, rgba(144, 220, 255, 0.04) 85px);
  opacity: 0.8;
}

.showcase::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 8%;
  height: 180px;
  background: radial-gradient(circle, rgba(117, 245, 255, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.showcase-tilt {
  position: relative;
  min-height: clamp(800px, 88vh, 980px);
  padding: clamp(1.3rem, 2vw, 2rem);
  transform:
    perspective(1500px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.shard-canopy {
  position: absolute;
  inset: 1.2rem 5% auto;
  height: 28%;
  pointer-events: none;
}

.shard {
  position: absolute;
  top: 0;
  border: 1px solid rgba(194, 234, 255, 0.26);
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.2), rgba(117, 245, 255, 0.05));
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 30px rgba(0, 0, 0, 0.16);
  animation: shard-float 8s ease-in-out infinite;
}

.shard-one {
  left: 0;
  width: clamp(110px, 14vw, 190px);
  height: clamp(150px, 18vw, 220px);
  clip-path: polygon(12% 0, 100% 18%, 86% 100%, 0 84%);
}

.shard-two {
  left: 14%;
  width: clamp(120px, 15vw, 200px);
  height: clamp(160px, 18vw, 230px);
  clip-path: polygon(22% 0, 100% 0, 82% 100%, 0 66%);
  animation-delay: -1.2s;
}

.shard-three {
  left: 32%;
  width: clamp(110px, 13vw, 170px);
  height: clamp(130px, 15vw, 190px);
  clip-path: polygon(18% 0, 100% 12%, 78% 100%, 0 72%);
  animation-delay: -2.1s;
}

.shard-four {
  right: 28%;
  width: clamp(130px, 15vw, 190px);
  height: clamp(150px, 17vw, 220px);
  clip-path: polygon(28% 0, 100% 22%, 70% 100%, 0 76%);
  animation-delay: -0.8s;
}

.shard-five {
  right: 12%;
  width: clamp(110px, 14vw, 180px);
  height: clamp(140px, 16vw, 200px);
  clip-path: polygon(20% 0, 100% 12%, 84% 100%, 0 88%);
  animation-delay: -1.8s;
}

.shard-six {
  right: 0;
  width: clamp(90px, 12vw, 160px);
  height: clamp(130px, 15vw, 200px);
  clip-path: polygon(36% 0, 100% 18%, 68% 100%, 0 76%);
  animation-delay: -2.8s;
}

.floating-icons {
  position: absolute;
  inset: 6% 4% 36%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.float-token {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--rgb), 0.3);
  background: rgba(6, 16, 24, 0.45);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 249, 255, 0.8);
  box-shadow: 0 0 22px rgba(var(--rgb), 0.14);
  will-change: transform, opacity;
  animation: token-drift var(--duration) ease-in-out infinite;
  animation-delay: calc(var(--delay) * -1s);
}

.connector {
  position: absolute;
  top: 44%;
  width: 22%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(117, 245, 255, 0.8), transparent);
  filter: drop-shadow(0 0 12px rgba(117, 245, 255, 0.4));
  z-index: 2;
}

.connector::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 18px rgba(117, 245, 255, 0.75);
}

.connector-left {
  left: 18%;
  transform: rotate(-6deg);
}

.connector-left::after {
  right: 24%;
}

.connector-right {
  right: 18%;
  transform: rotate(6deg);
}

.connector-right::after {
  left: 24%;
}

.developers {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: end;
  min-height: clamp(620px, 72vh, 760px);
  padding: 6.3rem 1rem 12rem;
}

.developer {
  position: relative;
  text-align: center;
  z-index: 3;
}

.developer::before {
  content: "";
  position: absolute;
  inset: 4rem 18% auto;
  height: 52%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.2), transparent 68%);
  filter: blur(30px);
  z-index: -1;
}

.developer-left,
.developer-right {
  padding-top: 4rem;
}

.developer-left {
  justify-self: start;
}

.developer-right {
  justify-self: end;
}

.developer-badge {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  background: rgba(9, 22, 34, 0.5);
  backdrop-filter: blur(10px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 250, 255, 0.84);
}

.developer-visual {
  animation: bob 7s ease-in-out infinite;
}

.portrait-card {
  position: relative;
  display: block;
  width: min(100%, 330px);
  aspect-ratio: 2 / 3;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(214, 237, 255, 0.2);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(245, 249, 255, 0.08), rgba(8, 17, 26, 0.08)),
    rgba(9, 20, 30, 0.44);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 46px rgba(var(--accent-rgb), 0.12),
    0 22px 28px rgba(0, 0, 0, 0.28);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.portrait-halo {
  position: absolute;
  inset: auto 12% -8%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.38), transparent 70%);
  filter: blur(22px);
  z-index: 1;
}

.portrait-sheen {
  position: absolute;
  inset: 0 auto 0 0;
  width: 45%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.06) 36%,
    transparent 72%
  );
  clip-path: polygon(0 0, 72% 0, 40% 100%, 0 100%);
  opacity: 0.75;
  z-index: 2;
  pointer-events: none;
}

.character-photo {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.02);
}

.developer-right .developer-visual {
  animation-delay: -1.4s;
}

.developer-left .developer-visual {
  animation-delay: -0.8s;
}

.developer-copy {
  max-width: 320px;
  margin: 0.65rem auto 0;
  padding: 1rem 1.1rem 1.15rem;
  border: 1px solid rgba(184, 223, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 20, 30, 0.55), rgba(7, 15, 23, 0.82));
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.developer h2 {
  margin: 0 0 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
}

.developer p {
  margin: 0;
  line-height: 1.55;
  color: var(--muted);
}

.character-svg .aura {
  fill: rgba(var(--accent-rgb), 0.16);
}

.character-svg .skin {
  fill: var(--skin);
}

.character-svg .hair {
  fill: var(--hair);
}

.character-svg .outfit {
  fill: var(--outfit);
}

.character-svg .outfit-deep {
  fill: var(--outfit-deep);
}

.character-svg .eye {
  fill: #1b212a;
}

.character-svg .mouth {
  fill: none;
  stroke: rgba(31, 36, 46, 0.45);
  stroke-linecap: round;
  stroke-width: 2.4;
}

.character-svg .accent-line {
  fill: none;
  stroke: rgba(var(--accent-rgb), 0.9);
  stroke-linecap: round;
  stroke-width: 4;
}

.character-svg .laptop {
  fill: rgba(9, 20, 30, 0.95);
  stroke: rgba(185, 230, 255, 0.24);
  stroke-width: 2;
}

.character-svg .screen-glow {
  fill: rgba(var(--accent-rgb), 0.12);
  stroke: rgba(var(--accent-rgb), 0.38);
  stroke-width: 1.5;
}

.character-svg .sticker {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1;
}

.character-svg .sticker-one {
  fill: #f4f8ff;
}

.character-svg .sticker-two {
  fill: #ff8c72;
}

.character-svg .sticker-three {
  fill: #86f2c2;
}

.character-svg .sticker-four {
  fill: #79ceff;
}

.character-svg .sticker-text {
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.character-svg .sticker-text.dark {
  fill: #112132;
}

.character-svg .sticker-text.light {
  fill: #f7fbff;
}

.character-svg .keyboard-light {
  fill: rgba(255, 255, 255, 0.14);
}

.character-svg .bracelet {
  fill: none;
  stroke: rgba(var(--accent-rgb), 0.95);
  stroke-linecap: round;
  stroke-width: 4;
}

.character-svg .code-thread {
  fill: none;
  stroke: rgba(var(--accent-rgb), 0.58);
  stroke-dasharray: 5 8;
  stroke-width: 2.5;
}

.central-core {
  position: absolute;
  left: calc(50% + var(--core-shift-x, 0px));
  top: calc(46.5% + var(--core-shift-y, 0px));
  width: clamp(190px, 23vw, 290px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  z-index: 5;
  pointer-events: none;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(240, 247, 255, 0.14);
  box-shadow: 0 0 28px rgba(117, 245, 255, 0.12);
}

.ring-one {
  animation: pulse 5s ease-in-out infinite;
}

.ring-two {
  inset: 10%;
  border-color: rgba(255, 217, 129, 0.3);
  animation: pulse 5s ease-in-out infinite -1.4s;
}

.ring-three {
  inset: 22%;
  border-style: dashed;
  border-color: rgba(134, 242, 194, 0.28);
  animation: spin 18s linear infinite;
}

.core-panel {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0.55rem;
  width: 74%;
  aspect-ratio: 1;
  padding: 1rem;
  border: 1px solid rgba(184, 223, 255, 0.3);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(11, 27, 39, 0.78), rgba(7, 17, 28, 0.92));
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 0 40px rgba(117, 245, 255, 0.12),
    0 0 70px rgba(117, 245, 255, 0.14);
}

.core-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.18), transparent 55%);
}

.core-symbol,
.core-text {
  position: relative;
}

.core-symbol {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 6.4vw, 4.7rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  color: #f7fbff;
  text-shadow:
    0 0 20px rgba(117, 245, 255, 0.58),
    0 0 32px rgba(255, 217, 129, 0.36);
}

.core-text {
  max-width: 14ch;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  color: rgba(241, 247, 255, 0.72);
}

.growth-bed {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  z-index: 1;
  pointer-events: none;
}

.growth-bed::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 78%;
  background: linear-gradient(180deg, transparent, rgba(4, 10, 14, 0.72) 18%, rgba(3, 6, 9, 0.96));
}

.growth-bed::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(134, 242, 194, 0.6),
    rgba(117, 245, 255, 0.6),
    rgba(255, 217, 129, 0.55),
    transparent
  );
}

.root,
.node,
.plant,
.mushroom {
  position: absolute;
  bottom: 18px;
}

.root {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--root-rgb), 0.72), transparent);
  filter: drop-shadow(0 0 8px rgba(var(--root-rgb), 0.42));
}

.root-one {
  left: 16%;
  width: 28%;
  transform: rotate(10deg);
  --root-rgb: 117, 245, 255;
}

.root-two {
  left: 42%;
  width: 22%;
  transform: rotate(-12deg);
  --root-rgb: 255, 217, 129;
}

.root-three {
  right: 14%;
  width: 24%;
  transform: rotate(8deg);
  --root-rgb: 134, 242, 194;
}

.node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.node-one {
  left: 41%;
  bottom: 62px;
  background: var(--glow-cyan);
  box-shadow: 0 0 18px rgba(117, 245, 255, 0.8);
}

.node-two {
  left: 56%;
  bottom: 78px;
  background: var(--glow-gold);
  box-shadow: 0 0 18px rgba(255, 217, 129, 0.8);
}

.node-three {
  right: 23%;
  bottom: 58px;
  background: var(--glow-mint);
  box-shadow: 0 0 18px rgba(134, 242, 194, 0.8);
}

.plant {
  width: 14px;
  height: 118px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(168, 255, 220, 0.2), rgba(53, 151, 114, 0.9));
  transform-origin: bottom center;
  filter: drop-shadow(0 0 18px rgba(134, 242, 194, 0.18));
  animation: sway var(--sway, 6s) ease-in-out infinite;
}

.plant::before,
.plant::after {
  content: "";
  position: absolute;
  height: 18px;
  border-top: 1px solid rgba(184, 243, 222, 0.52);
}

.plant::before {
  bottom: 24px;
  left: -18px;
  width: 42px;
  border-left: 1px solid rgba(184, 243, 222, 0.4);
  border-radius: 100% 0 0 0;
  transform: rotate(-24deg);
}

.plant::after {
  bottom: 52px;
  right: -18px;
  width: 42px;
  border-right: 1px solid rgba(117, 245, 255, 0.4);
  border-radius: 0 100% 0 0;
  transform: rotate(24deg);
}

.plant-one {
  left: 8%;
  height: 96px;
}

.plant-two {
  left: 27%;
  height: 118px;
}

.plant-three {
  left: 49%;
  height: 128px;
}

.plant-four {
  right: 28%;
  height: 112px;
}

.plant-five {
  right: 10%;
  height: 90px;
}

.mushroom {
  width: 68px;
  height: 96px;
  transform-origin: center bottom;
  animation: sway var(--sway, 7s) ease-in-out infinite;
}

.mushroom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 34px;
  border-radius: 48px 48px 24px 24px;
  background: linear-gradient(180deg, rgba(255, 217, 129, 0.96), rgba(255, 140, 114, 0.82));
  box-shadow:
    0 0 28px rgba(255, 140, 114, 0.22),
    0 0 16px rgba(255, 217, 129, 0.22);
}

.mushroom::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  width: 16px;
  height: 64px;
  transform: translateX(-50%);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.94), rgba(180, 221, 255, 0.46));
}

.mushroom span {
  position: absolute;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.55);
}

.mushroom span:first-child {
  left: 18px;
}

.mushroom span:last-child {
  right: 18px;
}

.mushroom-one {
  left: 16%;
  bottom: 20px;
}

.mushroom-two {
  left: 45%;
  bottom: 20px;
}

.mushroom-three {
  right: 18%;
  bottom: 20px;
}

.particle {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  width: calc(var(--size) * 1px);
  height: calc(var(--size) * 1px);
  border-radius: 50%;
  background: rgba(var(--rgb), 0.28);
  box-shadow: 0 0 18px rgba(var(--rgb), 0.22);
  animation: particle-drift var(--duration) linear infinite;
  animation-delay: calc(var(--delay) * -1s);
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shard-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(8px) rotate(2deg);
  }
}

@keyframes token-drift {
  0%,
  100% {
    opacity: 0.72;
    transform: translate3d(0, 0, 0) scale(0.94);
  }

  25% {
    opacity: 0.96;
    transform: translate3d(
      calc(var(--travel-x) * 0.55px),
      calc(var(--travel-y) * 0.35px),
      0
    ) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate3d(calc(var(--travel-x) * 1px), calc(var(--travel-y) * 1px), 0) scale(1.04);
  }

  75% {
    opacity: 0.94;
    transform: translate3d(
      calc(var(--travel-x) * -0.28px),
      calc(var(--travel-y) * 0.7px),
      0
    ) scale(0.99);
  }
}

@keyframes particle-drift {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.7);
  }

  12% {
    opacity: 1;
  }

  50% {
    transform: translate3d(calc(var(--travel-x) * 1px), calc(var(--travel-y) * 1px), 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(calc(var(--travel-x) * 2px), calc(var(--travel-y) * 2px), 0) scale(0.76);
  }
}

@keyframes sway {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }

  50% {
    transform: rotate(3deg) translateY(-4px);
  }
}

@media (max-width: 1024px) {
  .showcase {
    min-height: 1450px;
  }

  .showcase-tilt {
    min-height: 1450px;
  }

  .developers {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.6rem;
    padding: 11rem 0 12rem;
  }

  .developer-left,
  .developer-right {
    padding-top: 0;
  }

  .connector {
    display: none;
  }

  .central-core {
    top: 18%;
  }

  .shard-canopy {
    height: 20%;
  }

  .floating-icons {
    inset: 5% 3% 56%;
  }
}

@media (max-width: 720px) {
  .poster {
    width: min(100%, calc(100% - 1rem));
    padding-top: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .tagline {
    font-size: 1.1rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .hero-chips {
    gap: 0.55rem;
  }

  .hero-chips span {
    font-size: 0.72rem;
    padding: 0.62rem 0.82rem;
  }

  .showcase,
  .showcase-tilt {
    min-height: 1380px;
  }

  .developer-copy {
    max-width: 92%;
  }

  .central-core {
    width: 210px;
  }

  .growth-bed {
    height: 22%;
  }
}

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

  .showcase-tilt {
    transform: none !important;
  }
}
