:root {
  --font-display: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Space Grotesk", "Avenir", "Segoe UI", sans-serif;
  --text-strong: #f7fbff;
  --text-soft: #dce6f5;
  --panel: rgba(10, 17, 33, 0.38);
  --panel-border: rgba(255, 255, 255, 0.34);
  --glass-highlight: rgba(255, 255, 255, 0.5);
  --glass-deep-shadow: rgba(3, 9, 24, 0.5);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --shadow-soft: 0 26px 65px rgba(2, 8, 22, 0.5);
  --action: #ffd69f;
  --action-dark: #182132;
  --pointer-x: 0;
  --pointer-y: 0;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-strong);
  background: #070b16;
  overflow-x: hidden;
  color-scheme: dark;
}

a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 60;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: 0 50%;
  transform: scaleX(var(--scroll-progress));
  background: linear-gradient(90deg, #ffe0b4 0%, #7fddff 52%, #b8f3df 100%);
  box-shadow: 0 0 18px rgba(165, 219, 255, 0.55);
  transition: transform 0.12s linear;
}

.page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding: 44px 20px 64px;
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -4;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.5;
  animation: pulseFloat 16s ease-in-out infinite alternate;
  will-change: transform;
}

.page::before {
  width: 46vw;
  height: 46vw;
  left: -14vw;
  top: -10vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 68%);
}

.page::after {
  width: 42vw;
  height: 42vw;
  right: -10vw;
  top: 22vh;
  animation-delay: 2.5s;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 68%);
}

.page-hub {
  --action: #ffdbaf;
  --action-dark: #261f17;
  background:
    radial-gradient(circle at 13% 18%, rgba(255, 161, 97, 0.24), transparent 50%),
    radial-gradient(circle at 86% 16%, rgba(97, 213, 255, 0.25), transparent 52%),
    linear-gradient(160deg, #050913 0%, #0f1d35 52%, #070e20 100%);
}

.app-aerojinx {
  --action: #ffd18d;
  --action-dark: #2a1608;
  background:
    radial-gradient(circle at 14% 17%, rgba(255, 151, 76, 0.29), transparent 48%),
    radial-gradient(circle at 86% 16%, rgba(255, 220, 98, 0.2), transparent 50%),
    linear-gradient(152deg, #1a100c 0%, #101624 50%, #080f1c 100%);
}

.app-aeroweb {
  --action: #b6f0de;
  --action-dark: #092126;
  background:
    radial-gradient(circle at 15% 15%, rgba(111, 233, 197, 0.28), transparent 50%),
    radial-gradient(circle at 86% 16%, rgba(122, 192, 255, 0.24), transparent 50%),
    linear-gradient(160deg, #061814 0%, #0e1f34 48%, #091623 100%);
}

.bg-noise,
.mesh,
.orb {
  position: fixed;
  pointer-events: none;
  z-index: -2;
}

.bg-noise {
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.18) 1px, transparent 0);
  background-size: 3px 3px;
  mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent 80%);
}

.mesh {
  inset: -6%;
  z-index: -3;
  opacity: 0.42;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.23), transparent 30%),
    radial-gradient(circle at 80% 64%, rgba(255, 255, 255, 0.13), transparent 28%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 54%);
  filter: blur(30px) saturate(132%);
  animation: liquidShift 17s ease-in-out infinite alternate;
  will-change: transform;
}

.orb {
  border-radius: 50%;
  filter: blur(14px);
  animation: drift 12s ease-in-out infinite alternate;
  will-change: transform;
}

.orb-left {
  left: -110px;
  top: 12vh;
  width: 260px;
  height: 260px;
  background: rgba(255, 151, 70, 0.25);
}

.orb-right {
  right: -90px;
  top: 22vh;
  width: 230px;
  height: 230px;
  background: rgba(86, 209, 255, 0.26);
  animation-delay: 2s;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-credit {
  width: min(1120px, 100%);
  margin: 26px auto 0;
  padding: 12px 16px;
  text-align: center;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  color: rgba(242, 248, 255, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 14px 28px rgba(3, 9, 24, 0.36);
}

.top-bar,
.app-header,
.app-tile,
.feature-card,
.spotlight,
.download-block,
.team-block,
.team-note {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-border);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1) 38%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    inset 0 -22px 30px rgba(255, 255, 255, 0.03),
    var(--shadow-soft);
}

.top-bar::before,
.app-header::before,
.app-tile::before,
.feature-card::before,
.spotlight::before,
.download-block::before,
.team-block::before,
.team-note::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--glare-x, 12%) var(--glare-y, 18%), rgba(255, 255, 255, 0.42), transparent 34%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 40%);
  mix-blend-mode: screen;
  opacity: 0.64;
  transition: opacity 0.35s ease;
}

.top-bar::after,
.app-header::after,
.app-tile::after,
.feature-card::after,
.spotlight::after,
.download-block::after,
.team-block::after,
.team-note::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.34);
  opacity: 0.68;
}

.top-bar > *,
.app-header > *,
.app-tile > *,
.feature-card > *,
.spotlight > *,
.download-block > *,
.team-block > *,
.team-note > * {
  position: relative;
  z-index: 2;
}

.top-bar,
.app-header {
  width: min(1120px, 100%);
  margin: 0 auto 38px;
  padding: clamp(20px, 3vw, 34px);
  border-radius: var(--radius-xl);
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.76);
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.06;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2rem, 4.8vw, 4rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
}

.top-bar h1,
.app-header h1 {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.92) 0%, #fff0d2 22%, #c4efff 48%, #d7ffe8 74%, rgba(255, 255, 255, 0.96) 100%);
  background-size: 220% 220%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 24px rgba(112, 191, 255, 0.2));
  animation: titleSheen 12s ease-in-out infinite;
}

h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.16rem;
  letter-spacing: -0.01em;
}

.lead {
  margin: 16px 0 0;
  max-width: 60ch;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.56;
  color: var(--text-soft);
}

.app-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.team-block {
  margin-top: 20px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius-xl);
}

.download-block {
  margin-top: 20px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius-xl);
}

.team-lead {
  margin-bottom: 18px;
}

.team-grid {
  margin-top: 8px;
}

.download-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--action-dark);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), var(--action));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease, box-shadow 0.3s ease;
}

.download-btn:hover,
.download-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 30px rgba(0, 0, 0, 0.35);
}

.interactive-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.interactive-card > * {
  transform: translateZ(10px);
}

.interactive-cta {
  will-change: transform;
}

.app-tile {
  display: flex;
  gap: 18px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.app-tile:hover,
.app-tile:focus-visible {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -24px 34px rgba(255, 255, 255, 0.05),
    0 28px 55px var(--glass-deep-shadow);
}

.tile-icon {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 14px 24px rgba(0, 0, 0, 0.35);
}

.tile-body {
  display: grid;
  gap: 8px;
}

.tile-tag {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.78);
}

.tile-body p {
  margin: 0;
  color: rgba(239, 243, 255, 0.9);
  line-height: 1.5;
}

.tile-link {
  margin-top: 4px;
  font-weight: 700;
  color: var(--action);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.22);
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  text-decoration: none;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
}

.back-link:hover,
.back-link:focus-visible {
  color: #ffffff;
}

.title-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.app-icon {
  width: 92px;
  height: 92px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 18px 30px rgba(0, 0, 0, 0.35);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badges span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.83rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(14px) saturate(128%);
  -webkit-backdrop-filter: blur(14px) saturate(128%);
  animation: badgeFloat 5.5s ease-in-out infinite;
  animation-delay: calc(var(--badge-index, 0) * 0.14s);
}

.badges span:nth-child(1) {
  --badge-index: 0;
}

.badges span:nth-child(2) {
  --badge-index: 1;
}

.badges span:nth-child(3) {
  --badge-index: 2;
}

.badges span:nth-child(4) {
  --badge-index: 3;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  padding: 20px;
  background: linear-gradient(146deg, rgba(11, 19, 36, 0.44), rgba(12, 18, 34, 0.26));
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.feature-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
  color: rgba(244, 248, 255, 0.94);
}

.spotlight {
  margin-top: 20px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius-xl);
  display: grid;
  gap: 18px;
  align-items: center;
  grid-template-columns: 1fr auto;
}

.spotlight p {
  margin: 12px 0 0;
  max-width: 56ch;
  color: var(--text-soft);
  line-height: 1.55;
}

.team-note {
  margin-top: 20px;
  padding: 18px 20px;
}

.team-note p {
  margin: 0;
  max-width: 72ch;
  color: var(--text-soft);
  line-height: 1.55;
}

.cta {
  justify-self: end;
  align-self: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--action-dark);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), var(--action));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.22s ease, box-shadow 0.3s ease;
}

.cta::before {
  content: "";
  position: absolute;
  top: -45%;
  left: -36%;
  width: 44%;
  height: 190%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: translateX(-260%) rotate(18deg);
  transition: transform 0.7s ease;
  z-index: -1;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 34px rgba(0, 0, 0, 0.4);
}

.cta:hover::before,
.cta:focus-visible::before {
  transform: translateX(460%) rotate(18deg);
}

.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.animations-enabled .reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  filter: blur(8px);
}

.animations-enabled .reveal.is-visible {
  animation: rise 1s cubic-bezier(0.18, 0.74, 0.18, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}

.delay-1 {
  --reveal-delay: 0.1s;
}

.delay-2 {
  --reveal-delay: 0.2s;
}

.delay-3 {
  --reveal-delay: 0.3s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes titleSheen {
  0% {
    background-position: 0% 50%;
  }

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

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

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

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

@keyframes drift {
  from {
    transform: translate3d(calc(var(--pointer-x, 0) * -12px), calc(var(--pointer-y, 0) * -10px), 0) scale(0.96);
  }

  to {
    transform: translate3d(calc(var(--pointer-x, 0) * 10px + 18px), calc(var(--pointer-y, 0) * -8px - 20px), 0) scale(1.08);
  }
}

@keyframes liquidShift {
  from {
    transform: translate3d(calc(var(--pointer-x, 0) * 10px - 12px), calc(var(--pointer-y, 0) * 8px - 8px), 0) scale(1);
  }

  to {
    transform: translate3d(calc(var(--pointer-x, 0) * -10px + 14px), calc(var(--pointer-y, 0) * -8px + 10px), 0) scale(1.08);
  }
}

@keyframes pulseFloat {
  from {
    transform: translate3d(calc(var(--pointer-x, 0) * -6px), calc(var(--pointer-y, 0) * -6px), 0) scale(0.95);
  }

  to {
    transform: translate3d(calc(var(--pointer-x, 0) * 8px + 8px), calc(var(--pointer-y, 0) * -8px - 10px), 0) scale(1.08);
  }
}

@supports not (backdrop-filter: blur(2px)) {
  .top-bar,
  .app-header,
  .app-tile,
  .feature-card,
  .spotlight,
  .download-block,
  .team-block,
  .team-note,
  .page-credit,
  .badges span,
  .scroll-progress {
    background: rgba(13, 22, 39, 0.9);
  }
}

@media (max-width: 780px) {
  .page {
    padding: 20px 14px 44px;
  }

  .title-wrap {
    grid-template-columns: 1fr;
  }

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

  .cta {
    justify-self: start;
  }

  .app-tile {
    flex-direction: column;
  }

  .page::before,
  .page::after {
    width: 72vw;
    height: 72vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .interactive-card,
  .interactive-card > *,
  .interactive-cta {
    transform: none !important;
  }
}
