:root {
  --blue: #1167db;
  --blue-dark: #083783;
  --sky: #6fbcff;
  --gold: #ffc331;
  --gold-dark: #e39b08;
  --panel: rgba(255, 255, 255, 0.9);
  --shadow: 0 22px 55px rgba(39, 91, 154, 0.22);
  --button-shadow: 0 7px 0 rgba(205, 143, 0, 0.18), 0 16px 26px rgba(17, 91, 184, 0.2);
  --glass-shadow: 0 16px 30px rgba(35, 91, 156, 0.18), inset 0 2px 0 rgba(255, 255, 255, 0.95);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--blue-dark);
  background:
    radial-gradient(ellipse at 11% 19%, rgba(255, 255, 255, 0.86) 0 9rem, transparent 18rem),
    radial-gradient(ellipse at 86% 22%, rgba(255, 255, 255, 0.78) 0 9rem, transparent 20rem),
    radial-gradient(ellipse at 52% 52%, rgba(255, 255, 255, 0.52) 0 11rem, transparent 24rem),
    linear-gradient(180deg, #138af7 0%, #5cb5fb 25%, #d8efff 44%, #f5fbff 75%, #ffffff 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

.page-shell {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.image-slot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: transparent;
}

.image-slot > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slot::after {
  content: none;
  display: none;
}

.pill-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  min-height: 3rem;
  padding: 0 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--glass-shadow);
  isolation: isolate;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.pill-button::before {
  content: "";
  position: absolute;
  inset: 3px 12px auto;
  z-index: -1;
  height: 44%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.pill-button::after {
  content: "";
  position: absolute;
  inset: auto 10px 5px;
  z-index: -1;
  height: 18%;
  border-radius: inherit;
  background: rgba(133, 83, 0, 0.08);
  filter: blur(4px);
  pointer-events: none;
}

.pill-button:hover {
  transform: translateY(-3px);
  filter: saturate(1.05);
}

.pill-button:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.62),
    inset 0 -2px 0 rgba(120, 76, 0, 0.14),
    0 6px 16px rgba(17, 91, 184, 0.18);
}

.pill-button.primary,
.pill-button.nav-button {
  color: #0a3676;
  background:
    radial-gradient(ellipse at 45% 12%, rgba(255, 255, 255, 0.85), transparent 33%),
    linear-gradient(180deg, #ffe981 0%, #ffd352 47%, #ffc12c 49%, #f5ad13 100%);
  border-color: rgba(255, 246, 170, 0.85);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.82),
    inset 0 -3px 0 rgba(209, 137, 0, 0.2),
    var(--button-shadow);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.pill-button.secondary,
.pill-button.ghost {
  color: #1364cb;
  background:
    radial-gradient(ellipse at 42% 10%, rgba(255, 255, 255, 1), transparent 46%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 46%, #eaf6ff 100%);
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -3px 0 rgba(99, 152, 213, 0.1),
    0 8px 0 rgba(116, 167, 222, 0.08),
    0 18px 28px rgba(23, 94, 176, 0.17);
}

.hero-section {
  position: relative;
  height: clamp(620px, 56.25vw, 880px);
  padding-top: 1px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 90% 14%, rgba(255, 255, 255, 0.96) 0 4.2rem, transparent 9rem),
    radial-gradient(ellipse at 97% 30%, rgba(255, 255, 255, 0.86) 0 6rem, transparent 12rem),
    radial-gradient(ellipse at 12% 72%, rgba(255, 255, 255, 0.96) 0 7rem, transparent 14rem),
    radial-gradient(ellipse at 50% 48%, rgba(255, 255, 255, 0.64) 0 8rem, transparent 18rem),
    radial-gradient(ellipse at 66% 86%, rgba(255, 255, 255, 0.78) 0 8rem, transparent 18rem),
    linear-gradient(180deg, #128af7 0%, #34a2fa 28%, #86ccff 60%, #dff3ff 100%);
}

.hero-bg > img,
.about-bg > img {
  opacity: 0.22;
}

.hero-bg::before,
.about-bg::before {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem -4rem;
  height: 24rem;
  background:
    radial-gradient(ellipse at 7% 73%, rgba(255, 255, 255, 0.96) 0 31%, transparent 32%),
    radial-gradient(ellipse at 24% 86%, rgba(248, 252, 255, 0.98) 0 30%, transparent 31%),
    radial-gradient(ellipse at 44% 68%, rgba(255, 255, 255, 0.98) 0 28%, transparent 29%),
    radial-gradient(ellipse at 67% 77%, rgba(247, 251, 255, 0.98) 0 34%, transparent 35%),
    radial-gradient(ellipse at 89% 63%, rgba(255, 255, 255, 0.96) 0 27%, transparent 28%);
  filter: drop-shadow(0 -14px 26px rgba(255, 255, 255, 0.38));
}

.hero-bg::after,
.about-bg::after {
  display: none;
}

.top-nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  width: min(1258px, calc(100% - 128px));
  min-height: 72px;
  margin: 0 auto;
  color: #fff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
  margin-right: 2.7rem;
  font-size: 1.27rem;
  font-weight: 900;
}

.brand-mark {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #fff6a5, #ffbf24 55%, #ea9204);
  box-shadow: 0 3px 0 rgba(137, 87, 0, 0.2);
}

.brand-mark::after {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.45rem;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a {
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(19, 75, 157, 0.28);
}

.nav-button {
  min-height: 47px;
  margin-left: auto;
  padding: 0 1.45rem;
  font-size: 0.78rem;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 48% 52%;
  width: min(1260px, calc(100% - 128px));
  min-height: calc(100% - 82px);
  margin: 10px auto 0;
}

.hero-copy {
  position: relative;
  z-index: 6;
  padding-top: 34px;
}

.juno-title {
  width: 445px;
  height: 248px;
  border: 0;
  background: transparent;
  overflow: visible;
}

.juno-title > img {
  object-fit: contain;
}

.ribbon {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 50px;
  margin-top: 12px;
  padding: 0 2rem;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(62, 150, 244, 0.94), rgba(27, 112, 221, 0.94));
  font-size: 1.34rem;
  font-weight: 900;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.14),
    inset 0 -4px 0 rgba(4, 76, 177, 0.12),
    0 10px 30px rgba(12, 100, 212, 0.2);
}

.ribbon::before,
.ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
}

.ribbon::before {
  left: -22px;
  border-right: 22px solid rgba(42, 130, 231, 0.94);
}

.ribbon::after {
  right: -22px;
  border-left: 22px solid rgba(28, 112, 221, 0.94);
}

.hero-copy p {
  width: 430px;
  margin: 34px 0 30px;
  color: #fff;
  font-size: 1.17rem;
  font-weight: 700;
  line-height: 1.62;
  text-shadow: 0 2px 14px rgba(12, 75, 160, 0.26);
}

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

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 630px;
}

.hero-character {
  position: absolute;
  right: clamp(-105px, -4vw, -28px);
  top: 18px;
  width: min(600px, 50vw);
  height: min(600px, 50vw);
  border: 0;
  border-radius: 48px;
  background: transparent;
  filter: drop-shadow(0 25px 36px rgba(8, 53, 119, 0.23));
  animation: floatHero 5.5s ease-in-out infinite;
}

.hero-character > img {
  object-fit: contain;
}

.hero-character::after {
  content: attr(data-replace);
  top: 78%;
}

.replace-label {
  display: none;
}

.coin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #bb7905;
  font-size: 2.15rem;
  font-weight: 900;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 26%, #fff6a6 0 8%, #ffd55a 9% 53%, #e99707 54% 100%);
  border: 6px solid #ffe179;
  box-shadow: inset -5px -7px 0 rgba(169, 93, 0, 0.18), 0 14px 24px rgba(35, 97, 172, 0.18);
  animation: spinCoin 6s linear infinite, drift 4s ease-in-out infinite;
}

.coin-a {
  left: 12px;
  top: 180px;
}

.coin-b {
  left: 170px;
  bottom: 128px;
  width: 65px;
  height: 65px;
  animation-delay: -1.3s;
}

.coin-c {
  right: -20px;
  bottom: 100px;
  width: 92px;
  height: 92px;
  animation-delay: -2.1s;
}

.sparkle {
  position: absolute;
  color: #fff;
  text-shadow: 0 0 16px #ffdd55;
  animation: pulseSpark 1.8s ease-in-out infinite;
}

.sparkle-a {
  left: 150px;
  top: 250px;
  font-size: 2rem;
}

.sparkle-b {
  right: 100px;
  top: 180px;
  font-size: 1.5rem;
  animation-delay: -0.8s;
}

.stats-panel {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1280px, calc(100% - 154px));
  min-height: 112px;
  margin: -56px auto -56px;
  padding: 1rem 1.7rem;
  border-radius: 27px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.91));
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.98),
    0 24px 58px rgba(39, 91, 154, 0.24);
  backdrop-filter: blur(18px);
}

.stats-panel article {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 0 1.55rem;
  border-right: 1px solid rgba(47, 118, 201, 0.14);
}

.stats-panel article > div {
  min-width: 0;
}

.stats-panel article:last-child {
  border-right: 0;
}

.stat-icon {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: #145fd0;
  border: 3px solid rgba(20, 95, 208, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 35% 20%, #ffffff, #eef8ff 60%, #dcecff);
  box-shadow:
    inset 0 2px 0 #fff,
    0 8px 16px rgba(33, 112, 209, 0.14);
}

.stat-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.stats-panel h3 {
  margin: 0 0 0.42rem;
  color: #0d459d;
  font-size: 0.82rem;
  font-weight: 900;
}

.stats-panel strong {
  display: block;
  color: #0969dc;
  font-size: 1.36rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: start;
  min-height: 565px;
  padding: 112px max(72px, calc((100vw - 1280px) / 2)) 28px;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(255, 255, 255, 0.92) 0 8rem, transparent 16rem),
    radial-gradient(ellipse at 90% 25%, rgba(255, 255, 255, 0.82) 0 7rem, transparent 16rem),
    radial-gradient(ellipse at 45% 98%, rgba(255, 255, 255, 0.95) 0 18rem, transparent 30rem),
    linear-gradient(180deg, #c8edff 0%, #e9f8ff 58%, #ffffff 100%);
}

.about-figure {
  width: min(430px, 84%);
  height: 430px;
  margin: 36px 0 0 52px;
  border: 0;
  border-radius: 42px;
  background: transparent;
  filter: drop-shadow(0 25px 34px rgba(26, 91, 166, 0.18));
  animation: waveJuno 4.4s ease-in-out infinite;
}

.about-figure > img {
  object-fit: contain;
}

.about-copy {
  padding: 48px 0 0 6px;
}

.about-copy h2,
.corner-panel h2,
.info-card h2,
.movement-section h2 {
  margin: 0;
  color: #073c8c;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.08;
}

.about-copy h2 span {
  color: #ffd137;
}

.about-copy > p {
  max-width: 480px;
  margin: 22px 0 36px;
  color: #0a4ca6;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.58;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.6rem;
  width: min(650px, 100%);
  margin-bottom: 34px;
}

.value-grid article {
  text-align: center;
}

.value-icon {
  display: grid;
  place-items: center;
  width: 75px;
  height: 75px;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  border: 5px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.72),
    inset 0 -8px 0 rgba(12, 54, 118, 0.11),
    0 13px 24px rgba(29, 89, 166, 0.2);
  text-shadow: 0 2px 0 rgba(0, 48, 120, 0.1);
}

.value-icon.blue {
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.82), transparent 25%),
    linear-gradient(180deg, #8edcff 0%, #55b5f6 48%, #378de4 100%);
}

.value-icon.yellow {
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.82), transparent 25%),
    linear-gradient(180deg, #ffe172 0%, #ffc640 49%, #f0a711 100%);
}

.value-icon.purple {
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.72), transparent 25%),
    linear-gradient(180deg, #c49cff 0%, #986def 48%, #7150df 100%);
}

.value-icon.green {
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.76), transparent 25%),
    linear-gradient(180deg, #86e99c 0%, #5fd981 48%, #39b96b 100%);
}

.value-grid h3 {
  margin: 0 0 8px;
  color: #073d92;
  font-size: 1rem;
  font-weight: 900;
}

.value-grid p {
  margin: 0;
  color: #15519f;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.ghost {
  margin-left: 145px;
}

.corner-panel {
  width: min(1340px, calc(100% - 96px));
  margin: 0 auto 30px;
  padding: 34px 31px 35px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 252, 255, 0.86));
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.95),
    0 24px 58px rgba(39, 91, 154, 0.22);
  backdrop-filter: blur(16px);
}

.corner-panel h2 {
  color: #126bdc;
  font-size: 1.86rem;
}

.camera {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  margin-right: 6px;
  color: #fff;
  font-size: 0.9rem;
  vertical-align: 0.1em;
  border-radius: 8px;
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.68), transparent 28%),
    linear-gradient(180deg, #55adff, #217adf);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -3px 0 rgba(5, 63, 150, 0.17);
}

.corner-panel > p,
.movement-section p {
  margin: 13px 0 28px;
  color: #073d8e;
  font-size: 1.02rem;
  font-weight: 700;
}

.corner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.corner-card {
  position: relative;
  display: block;
  min-height: 190px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #a8dcff, #ffd57a);
  box-shadow: inset 0 -52px 60px rgba(18, 80, 158, 0.16);
  cursor: pointer;
  font: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.corner-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: inset 0 -52px 60px rgba(18, 80, 158, 0.16), 0 18px 34px rgba(28, 101, 190, 0.2);
}

.corner-video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #a8dcff, #ffd57a);
  transition: filter 180ms ease, transform 240ms ease;
}

.corner-video-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(7, 45, 104, 0.34));
  pointer-events: none;
}

.corner-video-card:hover video {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.035);
}

.corner-play {
  position: absolute;
  left: 13px;
  bottom: 11px;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: #fff;
  font-size: 0.7rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.24));
}

.corner-count {
  position: absolute;
  left: 34px;
  bottom: 11px;
  z-index: 3;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
}

.corner-coming-soon {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 223, 88, 0.75), transparent 33%),
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.6), transparent 24%),
    linear-gradient(135deg, #64b8ff, #8ecff9 45%, #ffd061);
}

.corner-coming-soon::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.46), transparent 34%);
  animation: soonSweep 3.8s linear infinite;
}

.soon-orb {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.92), transparent 20%),
    linear-gradient(180deg, #ffe279, #f7ae18);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.78),
    inset 0 -6px 0 rgba(166, 91, 0, 0.16),
    0 13px 25px rgba(23, 91, 172, 0.18);
  animation: soonPulse 1.65s ease-in-out infinite;
}

.corner-coming-soon strong,
.corner-coming-soon small {
  position: relative;
  z-index: 1;
  display: block;
  text-shadow: 0 2px 10px rgba(5, 54, 124, 0.22);
}

.corner-coming-soon strong {
  font-size: 1.02rem;
  font-weight: 900;
}

.corner-coming-soon small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  width: min(1340px, calc(100% - 96px));
  margin: 26px auto 28px;
}

.info-card {
  position: relative;
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 392px;
  padding: 44px 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 238, 129, 0.26), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.9));
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.95),
    0 23px 54px rgba(38, 96, 164, 0.2);
}

.card-copy {
  position: relative;
  z-index: 2;
}

.info-card h2 {
  margin-bottom: 34px;
}

.love-card ul {
  display: grid;
  gap: 29px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.love-card li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #0b428e;
  font-size: 0.9rem;
  font-weight: 800;
}

.love-card li span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  color: #fff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 20%, rgba(255, 255, 255, 0.75), transparent 28%),
    linear-gradient(180deg, #75c8ff, #2f86e2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -3px 0 rgba(7, 71, 161, 0.16),
    0 8px 18px rgba(33, 119, 218, 0.2);
}

.card-art {
  align-self: center;
  width: 300px;
  height: 300px;
  border: 0;
  border-radius: 42px;
  background: transparent;
  filter: drop-shadow(0 19px 24px rgba(38, 102, 178, 0.17));
}

.card-art.printer {
  width: 338px;
  height: 285px;
  border-radius: 28px;
  background: transparent;
}

.card-art > img {
  object-fit: contain;
}

.card-art::after {
  top: 84%;
  font-size: 0.62rem;
}

.how-card {
  grid-template-columns: 45% 55%;
}

.how-card ol {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.how-card li {
  display: grid;
  grid-template-columns: 37px 1fr;
  column-gap: 18px;
  color: #0a438f;
}

.how-card li span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  font-weight: 900;
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 20%, rgba(255, 255, 255, 0.75), transparent 28%),
    linear-gradient(180deg, #73c4ff, #3b86e3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -4px 0 rgba(5, 62, 154, 0.14),
    0 8px 18px rgba(33, 119, 218, 0.18);
}

.how-card li:nth-child(4) span {
  background:
    radial-gradient(circle at 33% 20%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(180deg, #75df92, #32b969);
}

.how-card strong {
  font-size: 0.9rem;
  font-weight: 900;
}

.how-card small {
  color: #16519e;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.28;
}

.movement-section {
  width: min(1180px, calc(100% - 80px));
  margin: 26px auto 32px;
  text-align: center;
}

.movement-section h2 {
  font-size: 2rem;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 43px;
  align-items: center;
  margin-top: 30px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  color: #073d8f;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 45% 8%, rgba(255, 255, 255, 1), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 47%, #eaf5ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -3px 0 rgba(93, 149, 209, 0.08),
    0 8px 0 rgba(95, 147, 205, 0.07),
    0 17px 30px rgba(25, 80, 148, 0.18);
  transition: transform 180ms ease;
}

.social-row a:hover {
  transform: translateY(-3px);
}

.social-row span {
  color: #2c91f2;
  font-size: 1.5rem;
}

.social-row a:nth-child(4) span {
  color: #e7221c;
}

.social-row a:nth-child(5) span {
  color: #e33e8b;
}

.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  width: min(1280px, calc(100% - 144px));
  min-height: 98px;
  margin: 0 auto 30px;
  padding: 0 34px 0 18px;
  overflow: hidden;
  color: #fff;
  border-radius: 36px;
  background:
    radial-gradient(ellipse at 24% 0%, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(180deg, #5ca0ed 0%, #3f88e2 48%, #246fd4 100%);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.34),
    inset 0 -5px 0 rgba(4, 68, 164, 0.14),
    0 20px 38px rgba(18, 91, 190, 0.3);
}

.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 100%, rgba(255, 214, 58, 0.42), transparent 15rem);
}

.footer-juno {
  position: relative;
  z-index: 1;
  align-self: end;
  width: 160px;
  height: 105px;
  border: 0;
  border-radius: 32px 32px 0 0;
  background: transparent;
}

.footer-juno::after {
  top: 58%;
  font-size: 0.58rem;
}

.footer-cta h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 900;
}

.footer-cta p {
  position: relative;
  z-index: 1;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 700;
}

.footer-cta .pill-button {
  position: relative;
  z-index: 1;
  min-width: 218px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(47, 142, 244, 0.32), transparent 28rem),
    rgba(4, 22, 58, 0.72);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.video-modal__panel {
  position: relative;
  width: min(980px, calc(100vw - 48px));
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  background: #071f4a;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    0 34px 80px rgba(0, 28, 78, 0.48);
  transform: translateY(18px) scale(0.96);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-modal.is-open .video-modal__panel {
  transform: translateY(0) scale(1);
}

.video-modal__player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #071f4a;
}

.video-modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #0b4ca9;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 18%, #fff, transparent 36%),
    linear-gradient(180deg, #ffffff, #eaf6ff);
  box-shadow: 0 12px 24px rgba(0, 42, 112, 0.26);
  cursor: pointer;
}

.reveal-up {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes floatHero {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -16px, 0) rotate(1deg);
  }
}

@keyframes waveJuno {
  0%,
  100% {
    transform: rotate(-1.2deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-8px);
  }
}

@keyframes spinCoin {
  to {
    rotate: 360deg;
  }
}

@keyframes drift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

@keyframes pulseSpark {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes soonPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.06);
  }
}

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

@media (max-width: 900px) {
  .top-nav,
  .hero-content,
  .stats-panel,
  .footer-cta {
    width: calc(100% - 48px);
  }

  .top-nav {
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 18px;
  }

  .brand {
    margin-right: 1.5rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-character {
    right: 2%;
    top: -20px;
    width: min(690px, 88vw);
    height: min(690px, 88vw);
  }

  .stats-panel,
  .value-grid,
  .corner-grid,
  .info-row,
  .social-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-figure {
    margin: 0 auto;
  }

  .about-copy {
    padding: 18px 0 0;
    text-align: center;
  }

  .about-copy > p,
  .value-grid {
    margin-left: auto;
    margin-right: auto;
  }

  .ghost {
    margin-left: 0;
  }

  .info-card,
  .how-card {
    grid-template-columns: 1fr;
  }

  .card-art {
    margin: 28px auto 0;
  }
}

@media (max-width: 720px) {
  .hero-section {
    min-height: auto;
    padding-bottom: 28px;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.78rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .nav-button {
    min-height: 42px;
    padding: 0 1rem;
  }

  .hero-content,
  .top-nav,
  .stats-panel,
  .corner-panel,
  .info-row,
  .movement-section,
  .footer-cta {
    width: calc(100% - 28px);
  }

  .juno-title {
    width: 100%;
    height: auto;
  }

  .title-juno {
    font-size: 5.7rem;
  }

  .title-belief {
    margin-left: 38px;
    font-size: 3.1rem;
  }

  .ribbon {
    height: auto;
    min-height: 48px;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }

  .hero-copy p {
    width: auto;
    font-size: 1rem;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-character {
    width: 96vw;
    height: 96vw;
    right: -14vw;
  }

  .stats-panel,
  .value-grid,
  .corner-grid,
  .info-row,
  .social-row {
    grid-template-columns: 1fr;
  }

  .stats-panel article {
    border-right: 0;
    border-bottom: 1px solid rgba(47, 118, 201, 0.14);
    padding: 1rem;
  }

  .stats-panel article:last-child {
    border-bottom: 0;
  }

  .about-figure {
    height: 350px;
  }

  .corner-grid {
    gap: 14px;
  }

  .corner-card {
    min-height: 180px;
  }

  .info-card {
    padding: 28px 20px;
  }

  .card-art,
  .card-art.printer {
    width: min(300px, 100%);
    height: 260px;
  }

  .social-row {
    gap: 14px;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    min-height: 250px;
    padding: 24px;
    text-align: center;
  }

  .footer-juno {
    margin: 0 auto;
  }
}

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