:root {
  --ink: #001e3a;
  --blue: #2f11ca;
  --deep-blue: #16007a;
  --electric: #6a4cff;
  --white: #f8fbff;
  --line: rgba(255, 255, 255, 0.18);
  --red: #d60016;
  --hot-red: #ff001f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(106, 76, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 82% 42%, rgba(214, 0, 22, 0.24), transparent 24rem),
    linear-gradient(135deg, #16007a 0%, #2f11ca 48%, #16007a 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

img {
  display: block;
  max-width: 100%;
}

.cursor-light {
  position: fixed;
  width: 30rem;
  height: 30rem;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(106, 76, 255, 0.19), transparent 68%);
  transform: translate3d(var(--mx, 50vw), var(--my, 50vh), 0) translate(-50%, -50%);
  transition: transform 0.16s ease-out;
}

#altitude-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.68;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(22, 0, 122, 0.82), rgba(22, 0, 122, 0));
  backdrop-filter: blur(14px);
}

.brand img {
  width: clamp(8rem, 15vw, 13rem);
}

nav {
  justify-self: center;
  display: flex;
  gap: clamp(0.75rem, 2vw, 2rem);
  color: rgba(248, 251, 255, 0.76);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav a {
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.header-action,
.primary-action,
.ghost-action {
  min-height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-action,
.primary-action {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
  box-shadow: 0 0 1.4rem rgba(255, 0, 31, 0.24);
}

.ghost-action {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--blue);
  box-shadow: 0 0 1.2rem rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: end;
  padding: clamp(7rem, 10vw, 9rem) clamp(1rem, 5vw, 5rem) clamp(5rem, 9vw, 8rem);
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  perspective: 900px;
  overflow: hidden;
}

.skyline {
  position: absolute;
  inset: 0 -4vw -8vh -4vw;
  background:
    linear-gradient(to top, rgba(22, 0, 122, 0.96), rgba(47, 17, 202, 0.2) 54%, rgba(22, 0, 122, 0.78)),
    url("assets/extracted/p01_01.jpg") center / cover;
  opacity: 0.82;
  filter: saturate(1.25) contrast(1.08);
  transform: scale(1.08);
}

.glass-tower {
  position: absolute;
  top: 8vh;
  display: grid;
  gap: 0.55rem;
  transform-style: preserve-3d;
  animation: towerFloat 8s ease-in-out infinite;
}

.tower-a {
  left: 7vw;
  width: min(36vw, 34rem);
  transform: rotateY(-24deg) rotateZ(-6deg);
}

.tower-b {
  right: 4vw;
  top: 16vh;
  width: min(28vw, 25rem);
  transform: rotateY(22deg) rotateZ(8deg);
  animation-delay: -3s;
}

.glass-tower span {
  height: clamp(4.8rem, 10vh, 7.5rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 36%),
    rgba(106, 76, 255, 0.13);
  box-shadow: inset 0 0 2.5rem rgba(255, 255, 255, 0.08), 0 2rem 6rem rgba(22, 0, 122, 0.42);
  backdrop-filter: blur(7px);
}

.rope {
  position: absolute;
  top: -8vh;
  width: 2px;
  height: 120vh;
  background: linear-gradient(to bottom, transparent, rgba(248, 251, 255, 0.8), transparent);
  box-shadow: 0 0 18px rgba(106, 76, 255, 0.92);
  animation: ropeSwing 6s ease-in-out infinite;
}

.rope-one {
  left: 58vw;
  transform: rotate(9deg);
}

.rope-two {
  left: 69vw;
  transform: rotate(-7deg);
  animation-delay: -2s;
}

.climber {
  position: absolute;
  width: 4.8rem;
  height: 8.4rem;
  background: transparent;
  filter: drop-shadow(0 0 1.2rem rgba(106, 76, 255, 0.42));
  transform-origin: 50% 6%;
}

.climber::before,
.climber::after {
  content: "";
  position: absolute;
}

.climber::before {
  left: 2.33rem;
  top: -2.4rem;
  width: 2px;
  height: 12.4rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 0 1rem rgba(106, 76, 255, 0.84);
}

.climber::after {
  left: 1.75rem;
  top: 5.05rem;
  width: 1.35rem;
  height: 1rem;
  border: 0.16rem solid var(--white);
  border-top: 0;
  border-radius: 0 0 999px 999px;
  opacity: 0.78;
}

.climber span {
  position: absolute;
  display: block;
}

.helmet {
  left: 1.38rem;
  top: 0.1rem;
  width: 2.1rem;
  height: 1.05rem;
  border-radius: 1.1rem 1.1rem 0.25rem 0.25rem;
  background: linear-gradient(135deg, var(--hot-red), var(--red));
  border-bottom: 0.16rem solid var(--white);
  z-index: 5;
}

.head {
  left: 1.65rem;
  top: 0.95rem;
  width: 1.45rem;
  height: 1.38rem;
  border-radius: 45% 45% 52% 52%;
  background: var(--white);
  box-shadow: inset -0.22rem -0.12rem 0 rgba(47, 17, 202, 0.34);
  z-index: 4;
}

.head::after {
  content: "";
  position: absolute;
  right: 0.22rem;
  top: 0.45rem;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: var(--deep-blue);
  box-shadow: -0.45rem 0 0 var(--deep-blue);
}

.body {
  left: 1.15rem;
  top: 2.05rem;
  width: 2.55rem;
  height: 3.35rem;
  border-radius: 0.7rem 0.7rem 0.5rem 0.5rem;
  background: linear-gradient(150deg, var(--electric), var(--blue) 52%, var(--deep-blue));
  border: 0.12rem solid rgba(255, 255, 255, 0.7);
  box-shadow: inset -0.45rem 0 0 rgba(22, 0, 122, 0.55);
  z-index: 3;
}

.body::after {
  content: "";
  position: absolute;
  left: 0.52rem;
  right: 0.52rem;
  bottom: 0.52rem;
  height: 0.22rem;
  border-radius: 999px;
  background: var(--hot-red);
}

.harness {
  z-index: 7;
  background: var(--deep-blue);
  box-shadow: 0 0 0 1px var(--white);
}

.harness-a {
  left: 1.62rem;
  top: 2.02rem;
  width: 0.22rem;
  height: 3.55rem;
  transform: rotate(-24deg);
}

.harness-b {
  left: 2.94rem;
  top: 2.02rem;
  width: 0.22rem;
  height: 3.55rem;
  transform: rotate(24deg);
}

.arm {
  top: 2.42rem;
  width: 0.55rem;
  height: 2.75rem;
  border-radius: 999px;
  background: linear-gradient(var(--electric), var(--blue));
  border: 0.08rem solid rgba(255, 255, 255, 0.6);
  transform-origin: 50% 0%;
  z-index: 2;
}

.arm::after {
  content: "";
  position: absolute;
  left: 0.05rem;
  bottom: -0.28rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--white);
}

.arm-left {
  left: 0.75rem;
  transform: rotate(33deg);
}

.arm-right {
  right: 0.62rem;
  transform: rotate(-38deg);
  z-index: 9;
}

.tool {
  right: -1.34rem;
  top: 3.38rem;
  width: 2.75rem;
  height: 0.28rem;
  border-radius: 999px;
  background: var(--red);
  transform: rotate(-24deg);
  transform-origin: 0.1rem 50%;
  z-index: 10;
}

.tool::before {
  content: "";
  position: absolute;
  left: -0.1rem;
  top: -0.12rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--white);
}

.tool::after {
  content: "";
  position: absolute;
  right: -0.22rem;
  top: -0.42rem;
  width: 0.26rem;
  height: 1.06rem;
  border-radius: 999px;
  background: var(--white);
}

.leg {
  top: 5.1rem;
  width: 0.65rem;
  height: 2.6rem;
  border-radius: 999px;
  background: linear-gradient(var(--blue), var(--deep-blue));
  border: 0.08rem solid rgba(255, 255, 255, 0.5);
  transform-origin: 50% 0%;
}

.leg::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  width: 1.05rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--deep-blue);
}

.leg-left {
  left: 1.35rem;
  transform: rotate(14deg);
}

.leg-left::after {
  right: -0.08rem;
  transform: rotate(-18deg);
}

.leg-right {
  right: 1.25rem;
  transform: rotate(-16deg);
}

.leg-right::after {
  left: -0.08rem;
  transform: rotate(18deg);
}

.climber-one {
  left: 55vw;
  top: 20vh;
  animation: climb 7s ease-in-out infinite;
}

.climber-two {
  left: 67vw;
  top: 48vh;
  scale: 0.68;
  animation: climb 9s ease-in-out infinite reverse;
}

.altitude-rings {
  position: absolute;
  inset: 18vh auto auto 50%;
  width: min(70vw, 48rem);
  aspect-ratio: 1;
  border: 1px solid rgba(106, 76, 255, 0.3);
  border-radius: 50%;
  transform: translateX(-50%) rotateX(72deg);
  animation: ringPulse 5s ease-in-out infinite;
}

.altitude-rings::before,
.altitude-rings::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(214, 0, 22, 0.44);
  border-radius: 50%;
}

.altitude-rings::after {
  inset: 31%;
  border-color: rgba(255, 0, 31, 0.42);
}

.hero-content {
  max-width: 52rem;
  min-width: 0;
  width: 100%;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 52rem;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.9vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 0 1.6rem rgba(106, 76, 255, 0.48);
}

.hero-line {
  max-width: 34rem;
  margin-bottom: 1.8rem;
  color: rgba(248, 251, 255, 0.88);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 850;
  line-height: 1.08;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  width: 2.3rem;
  height: 3.7rem;
  border: 1px solid rgba(248, 251, 255, 0.55);
  border-radius: 999px;
  transform: translateX(-50%);
  display: grid;
  place-items: start center;
  padding-top: 0.55rem;
}

.scroll-cue span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--hot-red);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.since-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(47, 17, 202, 0.26), rgba(214, 0, 22, 0.15)),
    var(--deep-blue);
}

.since-image {
  position: relative;
}

.since-image::before {
  content: "";
  position: absolute;
  inset: -1.2rem 1.2rem 1.2rem -1.2rem;
  border: 1px solid rgba(106, 76, 255, 0.6);
  border-radius: 8px;
}

.since-image img {
  position: relative;
  width: 100%;
  height: min(72svh, 42rem);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2rem 5rem rgba(22, 0, 122, 0.4);
}

.since-panel h2 {
  max-width: 58rem;
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 4vw, 4.35rem);
  line-height: 1;
}

.since-panel p:not(.eyebrow) {
  max-width: 36rem;
  color: rgba(248, 251, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.65;
}

section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(47, 17, 202, 0.14)),
    var(--deep-blue);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mission-heading {
  grid-column: 1 / -1;
  max-width: 46rem;
  margin-bottom: 1rem;
}

.mission-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 4vw, 4.3rem);
  line-height: 1;
}

.mission-card-grid {
  display: contents;
}

.mission-card,
.mascot-card {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 1.4rem 3rem rgba(22, 0, 122, 0.24);
}

.mission-card {
  min-height: 26rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.2rem, 3vw, 2.2rem);
}

.mission-card h3 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
}

.mission-card p {
  margin-bottom: 0;
  color: rgba(248, 251, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.6;
}

.mascot-card {
  position: relative;
  min-height: 26rem;
  overflow: hidden;
  background: var(--white);
  align-self: stretch;
}

.mascot-card::before {
  content: "";
  position: absolute;
  inset: auto 8% -18% 8%;
  height: 44%;
  border-radius: 50%;
  background: rgba(47, 17, 202, 0.14);
}

.mascot-card img {
  position: absolute;
  left: 50%;
  bottom: -4%;
  width: min(110%, 24rem);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 1.2rem 1.6rem rgba(22, 0, 122, 0.28));
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.7fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.about h2,
.section-heading h2,
.process-copy h2,
.contact h2 {
  max-width: 64rem;
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.about p:not(.eyebrow),
.process p,
.service-card p,
.contact p {
  color: rgba(248, 251, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.65;
}

.kinetic-photo {
  position: relative;
  min-height: 34rem;
  transform-style: preserve-3d;
}

.kinetic-photo img {
  width: 100%;
  height: 34rem;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(1.13) contrast(1.05);
  transform: rotate(-3deg);
  box-shadow: 0 2rem 6rem rgba(22, 0, 122, 0.42);
}

.kinetic-photo span {
  position: absolute;
  right: var(--x);
  top: var(--y);
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(22, 0, 122, 0.72);
  color: var(--white);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: badgeFloat 4s ease-in-out infinite;
}

.kinetic-photo span:nth-of-type(1) {
  --x: 63%;
  --y: 8%;
}

.kinetic-photo span:nth-of-type(2) {
  --x: 4%;
  --y: 48%;
  animation-delay: -1.4s;
}

.kinetic-photo span:nth-of-type(3) {
  --x: 24%;
  --y: 84%;
  animation-delay: -2.6s;
}

.values {
  overflow: hidden;
  padding-block: 1.35rem;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.value-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: marquee 24s linear infinite;
}

.value-track span {
  color: rgba(248, 251, 255, 0.92);
  font-size: clamp(1.3rem, 3vw, 3rem);
  font-weight: 950;
  text-transform: uppercase;
}

.value-track span:nth-child(3n) {
  color: var(--electric);
}

.value-track span:nth-child(4n) {
  color: var(--hot-red);
}

.services {
  overflow: hidden;
}

.section-heading {
  margin-bottom: 2rem;
}

.service-orbit {
  display: grid;
  grid-template-columns: repeat(6, minmax(18rem, 1fr));
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.service-card {
  min-height: 31rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  scroll-snap-align: start;
  transform-style: preserve-3d;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  border-color: rgba(106, 76, 255, 0.65);
  background: rgba(47, 17, 202, 0.16);
  transform: translateY(-0.8rem) rotateX(4deg);
}

.service-card img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.35rem;
  line-height: 1.05;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  background: linear-gradient(90deg, rgba(214, 0, 22, 0.15), rgba(47, 17, 202, 0.14));
}

.steps {
  display: grid;
  gap: 0.8rem;
}

.step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0.35rem 1rem;
  padding: 1.2rem;
  border-left: 2px solid var(--electric);
  background: rgba(22, 0, 122, 0.5);
}

.step span {
  grid-row: span 2;
  color: var(--hot-red);
  font-size: 2.2rem;
  font-weight: 950;
}

.step strong {
  font-size: 1.2rem;
}

.step p {
  margin-bottom: 0;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr 0.8fr;
  gap: 1rem;
  align-items: end;
}

.gallery img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1.8rem 4rem rgba(22, 0, 122, 0.32);
}

.gallery .tall {
  height: 34rem;
}

.clients {
  background: var(--white);
  color: var(--ink);
}

.clients .eyebrow {
  color: var(--red);
}

.clients .section-heading h2 {
  max-width: 54rem;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1rem;
  align-items: center;
}

.logo-wall img {
  width: 100%;
  height: 6.6rem;
  object-fit: contain;
  padding: 1rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(47, 17, 202, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-wall img:hover {
  transform: translateY(-0.4rem) scale(1.03);
  border-color: rgba(214, 0, 22, 0.32);
  box-shadow: 0 1rem 2.5rem rgba(47, 17, 202, 0.18);
}

.contact {
  min-height: 76vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: url("assets/extracted/p31_01.jpg") center / cover;
  opacity: 0.16;
  transform: rotate(-3deg) scale(1.08);
}

.contact-card {
  position: relative;
  width: min(100%, 52rem);
  padding: clamp(1.4rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(22, 0, 122, 0.78);
  backdrop-filter: blur(18px);
  text-align: center;
}

.contact-card a {
  display: block;
  margin: 0.35rem 0;
  color: var(--electric);
  font-size: clamp(1.4rem, 4vw, 3.8rem);
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(2.3rem) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes towerFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -1.8rem;
  }
}

@keyframes ropeSwing {
  0%,
  100% {
    rotate: 0deg;
  }
  50% {
    rotate: 4deg;
  }
}

@keyframes climb {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5.4rem;
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.38;
    scale: 0.92;
  }
  50% {
    opacity: 0.8;
    scale: 1.04;
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-1rem) rotate(2deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .about,
  .process,
  .since-section,
  .mission-vision {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: end;
    padding-top: 6rem;
  }

  .tower-a {
    width: 68vw;
    left: -14vw;
  }

  .tower-b {
    width: 54vw;
    right: -18vw;
  }

  .climber-one {
    left: 57vw;
  }

  .climber-two {
    left: 75vw;
  }

  .mission-vision {
    gap: 0.7rem;
  }

  .mission-card-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    order: 2;
  }

  .mascot-card {
    min-height: 32rem;
    order: 1;
  }

  .mascot-card img {
    bottom: 0;
    width: auto;
    height: 100%;
  }

  .mission-card {
    min-height: 18rem;
  }

  .kinetic-photo,
  .kinetic-photo img {
    min-height: 26rem;
    height: 26rem;
  }

  .service-orbit {
    grid-template-columns: repeat(6, minmax(16.5rem, 82vw));
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery img,
  .gallery .tall {
    height: 19rem;
  }
}

@media (max-width: 560px) {
  .header-action {
    min-height: 2.35rem;
    padding-inline: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9.6vw, 3.15rem);
    text-shadow: 0 0 0.8rem rgba(106, 76, 255, 0.55);
  }

  .hero-line {
    max-width: 20rem;
    font-size: 1.28rem;
  }

  .hero-actions a {
    width: 100%;
  }

  .ghost-action {
    background: var(--white);
    color: var(--blue);
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img,
  .gallery .tall {
    height: 24rem;
  }
}

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