:root {
  background: #050b22;
  color: #f7f1dc;
  font-family:
    Baskerville,
    "Iowan Old Style",
    "Palatino Linotype",
    Georgia,
    serif;
}

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

body {
  min-height: 100vh;
  overflow-x: hidden;

  background-color: #050b22;
  background-image: url("/constellation-background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

* {
  box-sizing: border-box;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;

  width: min(calc(100% - 2rem), 1440px);

  margin: 1rem auto 0;

  overflow: hidden;

  border: 1px solid rgba(246, 250, 253, 0.7);
  border-radius: 2rem;

  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.23),
      rgba(213, 224, 234, 0.12) 34%,
      rgba(255, 255, 255, 0.2) 55%,
      rgba(184, 199, 214, 0.11)
    );

  box-shadow:
    0 14px 38px rgba(2, 8, 24, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);

  backdrop-filter:
    blur(18px)
    saturate(118%)
    brightness(1.18);

  -webkit-backdrop-filter:
    blur(18px)
    saturate(118%)
    brightness(1.18);
}

.site-header::before {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      112deg,
      transparent 10%,
      rgba(255, 255, 255, 0.05) 28%,
      rgba(255, 255, 255, 0.3) 44%,
      rgba(255, 255, 255, 0.08) 56%,
      transparent 74%
    );

  background-size: 220% 100%;

  content: "";

  opacity: 0.5;

  pointer-events: none;

  animation: header-shimmer 13s ease-in-out infinite;
}

.site-header::after {
  position: absolute;
  inset: 1px;

  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: inherit;

  content: "";

  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: min(100% - 2rem, 1440px);
  min-height: 104px;

  margin: 0 auto;

  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;

  width: clamp(230px, 22vw, 325px);

  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.brand:hover,
.brand:focus-visible {
  filter:
    drop-shadow(
      0 0 12px rgba(242, 195, 94, 0.42)
    );

  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: clamp(1.15rem, 2vw, 2.2rem);
}

.nav-link {
  position: relative;

  padding: 0.9rem 0.15rem;

  color: #f7f1dc;

  font-size: 1.08rem;
  letter-spacing: 0.065em;
  line-height: 1;

  text-decoration: none;
  white-space: nowrap;

  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0.1rem;
  bottom: 0.32rem;
  left: 0.1rem;

  height: 1px;

  background: #e9bf68;

  content: "";

  opacity: 0;

  transform: scaleX(0.35);

  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: #f2c96f;

  text-shadow:
    0 0 10px rgba(242, 201, 111, 0.35);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-checkbox,
.menu-button {
  display: none;
}

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}

/* =========================================================
   MAIN
   ========================================================= */

main {
  min-height: calc(100vh - 8rem);
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  display: grid;

  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(420px, 1.08fr);

  align-items: center;

  width: min(calc(100% - 2rem), 1400px);

  min-height: calc(100vh - 8rem);

  margin: 1.125rem auto 0;

  transform: translateY(-7.5vw);

  gap: clamp(0.75rem, 2vw, 2rem);

  padding:
    2rem
    clamp(1rem, 3vw, 3rem)
    clamp(4rem, 8vh, 6rem);
}

.below-hero-panel {
  position: relative;
  isolation: isolate;

  width: min(calc(100% - 2rem), 1400px);
  min-height: clamp(390px, 31vw, 470px);

  margin: clamp(1.5rem, 4vw, 3.5rem) auto 5rem;
  overflow: hidden;

  border: 1px solid rgba(255, 224, 143, 0.44);
  border-radius: 2.25rem;

  background:
    radial-gradient(
      circle at 16% 42%,
      rgba(255, 220, 137, 0.2),
      transparent 24%
    ),
    radial-gradient(
      circle at 84% 58%,
      rgba(245, 190, 75, 0.16),
      transparent 27%
    ),
    linear-gradient(
      112deg,
      rgba(225, 178, 76, 0.15),
      rgba(255, 239, 184, 0.055) 47%,
      rgba(192, 141, 40, 0.12)
    );

  box-shadow:
    0 0 18px rgba(245, 192, 73, 0.18),
    0 0 72px rgba(245, 192, 73, 0.12),
    inset 0 0 46px rgba(255, 219, 133, 0.1);
}

.below-hero-panel::before {
  position: absolute;
  z-index: -1;
  inset: -25%;

  background:
    radial-gradient(
      circle at 9% 24%,
      rgba(255, 239, 186, 0.8) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 22% 72%,
      rgba(255, 215, 115, 0.7) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 38% 36%,
      rgba(255, 244, 196, 0.65) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 56% 78%,
      rgba(255, 220, 124, 0.72) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 71% 28%,
      rgba(255, 242, 185, 0.72) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 88% 68%,
      rgba(255, 212, 107, 0.72) 0 1px,
      transparent 2px
    );

  background-size:
    170px 130px,
    220px 170px,
    190px 150px,
    240px 180px,
    200px 160px,
    180px 140px;

  content: "";
  opacity: 0.7;
  pointer-events: none;
}

.below-hero-panel::after {
  position: absolute;
  z-index: -1;
  inset: 0;

  background:
    linear-gradient(
      125deg,
      rgba(255, 239, 184, 0.1),
      transparent 35%,
      rgba(255, 209, 102, 0.08)
    );

  content: "";
  opacity: 0.8;
  pointer-events: none;
}

.featured-app-content {
  position: relative;
  z-index: 1;

  max-width: 720px;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
}

.featured-app-kicker {
  position: absolute;
  z-index: 1;
  top: clamp(1.5rem, 3vw, 2.15rem);
  right: 1rem;
  left: 1rem;

  margin: 0;
  color: #f7d681;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
}

.featured-app-layout {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns:
    minmax(220px, 0.86fr)
    minmax(360px, 1.45fr)
    minmax(210px, 0.82fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3.5rem);

  min-height: inherit;
  padding: clamp(4.5rem, 7vw, 5.5rem) clamp(1.75rem, 4vw, 3.5rem)
    clamp(2.25rem, 4vw, 3rem);
}

.featured-app-intro {
  align-self: center;
}

.featured-app-intro h2 {
  max-width: 290px;
  margin: 0;
  color: #fff0bf;
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.03;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
}

.featured-app-description {
  max-width: 310px;
  margin: 0.9rem 0 0;
  color: rgba(247, 241, 220, 0.82);
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  line-height: 1.5;
}

.featured-app-features {
  display: grid;
  gap: 1.15rem;

  margin: 2rem 0 0;
  padding: 0;

  list-style: none;
}

.featured-app-features li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  gap: 0.7rem;

  color: rgba(247, 241, 220, 0.86);
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  line-height: 1.35;
}

.feature-icon {
  display: grid;
  place-items: center;

  width: 1.75rem;
  height: 1.75rem;

  border: 1px solid rgba(246, 208, 115, 0.75);
  border-radius: 0.45rem;
  color: #f7d681;
  font-size: 1.08rem;
  line-height: 1;
  box-shadow: 0 0 12px rgba(245, 192, 73, 0.17);
}

.featured-app-media {
  position: relative;

  display: grid;
  place-items: center;

  width: 100%;
  aspect-ratio: 1.5;
  overflow: hidden;

  border: 1px solid rgba(255, 223, 139, 0.75);
  border-radius: 1.4rem;
  background:
    linear-gradient(145deg, rgba(7, 14, 34, 0.94), rgba(31, 25, 28, 0.86)),
    radial-gradient(circle at 50% 0%, rgba(245, 195, 92, 0.22), transparent 62%);
  box-shadow:
    0 0 0 1px rgba(245, 192, 73, 0.14),
    0 0 20px rgba(245, 192, 73, 0.28),
    inset 0 0 26px rgba(247, 213, 126, 0.12);
}

.featured-app-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 26px rgba(247, 213, 126, 0.1);
}

.featured-app-media img {
  display: block;

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-app-pricing {
  align-self: center;
  text-align: center;
}

.pricing-label {
  margin: 0 0 0.4rem;
  color: #f7d681;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: 0.03em;
}

.featured-app-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18rem;

  color: #fff0bf;
  white-space: nowrap;
}

.featured-app-price span {
  font-size: clamp(2.9rem, 5.5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-shadow: 0 0 22px rgba(245, 192, 73, 0.2);
}

.featured-app-price small {
  color: rgba(247, 241, 220, 0.78);
  font-size: clamp(0.82rem, 1.2vw, 1rem);
}

.pricing-note {
  margin: 0.55rem 0 0;
  color: rgba(247, 241, 220, 0.78);
  font-size: clamp(0.76rem, 1vw, 0.92rem);
}

.featured-app-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(247, 209, 121, 0.55);
  border-radius: 999px;
  color: #fff0bf;
  font-size: clamp(0.72rem, 0.95vw, 0.88rem);
  letter-spacing: 0.06em;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.featured-app-link:hover,
.featured-app-link:focus-visible {
  border-color: rgba(255, 222, 143, 0.9);
  background: rgba(239, 196, 102, 0.14);
  box-shadow: 0 0 18px rgba(243, 202, 111, 0.2);
  outline: none;
  transform: translateY(-1px);
}

.pricing-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;

  margin: 1rem 0 0;
  color: rgba(247, 241, 220, 0.78);
  font-size: clamp(0.72rem, 0.95vw, 0.88rem);
  line-height: 1.35;
}

.pricing-footnote span {
  color: #f7d681;
}

.page-main {
  width: min(calc(100% - 2rem), 1400px);
  min-height: calc(100vh - 8rem);

  margin: 0 auto;
  padding:
    clamp(5rem, 12vh, 9rem)
    clamp(1rem, 3vw, 3rem)
    6rem;
}

.page-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.page-kicker {
  margin: 0 0 1.15rem;

  color: #edc66f;

  font-size: 0.76rem;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-title {
  margin: 0;

  color: #f8f1dd;

  font-family:
    Baskerville,
    "Iowan Old Style",
    "Palatino Linotype",
    Georgia,
    serif;

  font-size: clamp(2.7rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.3);
}

.page-lede {
  max-width: 700px;
  margin: 1.8rem auto 0;

  color: #f2e7c9;

  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-wrap: balance;
}

.page-content-panel {
  position: relative;
  isolation: isolate;

  max-width: 1040px;
  margin: clamp(3rem, 8vw, 6.5rem) auto 0;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;

  border-radius: 2rem;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(255, 220, 137, 0.17),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(245, 190, 75, 0.14),
      transparent 30%
    ),
    linear-gradient(
      120deg,
      rgba(225, 178, 76, 0.13),
      rgba(255, 239, 184, 0.045) 52%,
      rgba(192, 141, 40, 0.1)
    );

  box-shadow:
    0 0 22px rgba(245, 192, 73, 0.15),
    0 0 80px rgba(245, 192, 73, 0.1),
    inset 0 0 48px rgba(255, 219, 133, 0.08);
}

.page-content-panel::before {
  position: absolute;
  z-index: -1;
  inset: -20%;

  background:
    radial-gradient(
      circle at 15% 26%,
      rgba(255, 239, 186, 0.72) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 34% 74%,
      rgba(255, 215, 115, 0.64) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 62% 22%,
      rgba(255, 244, 196, 0.62) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 84% 68%,
      rgba(255, 212, 107, 0.66) 0 1px,
      transparent 2px
    );

  background-size:
    180px 150px,
    220px 170px,
    200px 160px,
    190px 145px;

  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.page-content-panel h2 {
  max-width: 700px;
  margin: 0;

  color: #f8f1dd;

  font-family:
    Baskerville,
    "Iowan Old Style",
    "Palatino Linotype",
    Georgia,
    serif;

  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

.page-content-panel p:not(.page-kicker) {
  max-width: 650px;
  margin: 1.4rem 0 0;

  color: rgba(247, 241, 220, 0.82);

  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: 2rem;
}

.page-card {
  min-height: 150px;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(5, 11, 34, 0.22);
  box-shadow: inset 0 0 24px rgba(255, 222, 143, 0.04);
}

.page-card h3 {
  margin: 0;

  color: #f5d27e;

  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-card p {
  margin-top: 0.7rem !important;
  font-size: 0.98rem !important;
  line-height: 1.55 !important;
}

.page-link {
  display: inline-flex;

  margin-top: 2rem;
  padding: 0.82rem 1.25rem;

  border: 1px solid rgba(247, 209, 121, 0.48);
  border-radius: 999px;

  background: rgba(5, 11, 34, 0.26);
  color: #f8e3ae;

  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;

  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.page-link:hover,
.page-link:focus-visible {
  border-color: rgba(255, 222, 143, 0.8);
  background: rgba(239, 196, 102, 0.12);
  box-shadow: 0 0 18px rgba(243, 202, 111, 0.18);
  transform: translateY(-1px);
}

.apps-page-main {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.apps-page-intro {
  max-width: 760px;
}

.apps-page-intro .page-title {
  font-size: clamp(2.4rem, 4.7vw, 4rem);
}

.apps-page-intro .page-lede {
  max-width: 720px;
  margin-top: 0.45rem;
  font-size: clamp(0.92rem, 1.3vw, 1.1rem);
  font-style: normal;
  line-height: 1.4;
}

.apps-featured-panel {
  max-width: 1400px;
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
  padding: 0;
  border: 1px solid rgba(255, 224, 143, 0.5);
  border-radius: 1.7rem;
}

.apps-featured-heading {
  display: grid;
  gap: 0.15rem;
  padding-top: 0.9rem;
  text-align: center;
}

.apps-featured-heading .page-kicker {
  margin: 0;
  font-size: clamp(0.62rem, 0.9vw, 0.78rem);
  letter-spacing: 0.28em;
}

.apps-featured-grid {
  display: grid;
  grid-template-columns:
    minmax(220px, 0.9fr)
    minmax(350px, 1.5fr)
    minmax(200px, 0.85fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);

  padding: 0.2rem clamp(1.75rem, 4vw, 3rem) 2rem;
}

.apps-featured-copy {
  align-self: center;
}

.apps-featured-copy h2 {
  max-width: 300px;
  margin: 0;
  color: #fff0bf;
  font-family:
    Baskerville,
    "Iowan Old Style",
    "Palatino Linotype",
    Georgia,
    serif;
  font-size: clamp(1.6rem, 2.5vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.apps-featured-copy > p {
  max-width: 310px;
  margin: 0.65rem 0 0;
  color: rgba(247, 241, 220, 0.82);
  font-size: clamp(0.78rem, 1vw, 0.96rem);
  line-height: 1.45;
}

.apps-featured-copy .featured-app-features {
  gap: 0.85rem;
  margin-top: 1.55rem;
}

.apps-featured-copy .featured-app-features li {
  grid-template-columns: 1.75rem 1fr;
  gap: 0.55rem;
  font-size: clamp(0.72rem, 0.92vw, 0.9rem);
}

.apps-featured-copy .feature-icon {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.35rem;
  font-size: 0.92rem;
}

.apps-featured-media {
  position: relative;

  width: 100%;
  aspect-ratio: 1.5;
  overflow: hidden;

  border: 1px solid rgba(255, 223, 139, 0.8);
  border-radius: 1.25rem;
  background: #0a0b0d;
  box-shadow:
    0 0 0 1px rgba(245, 192, 73, 0.18),
    0 0 20px rgba(245, 192, 73, 0.3),
    inset 0 0 24px rgba(247, 213, 126, 0.14);
}

.apps-featured-media::after {
  position: absolute;
  inset: 0;

  border-radius: inherit;
  box-shadow: inset 0 0 24px rgba(247, 213, 126, 0.14);
  content: "";
  pointer-events: none;
}

.apps-featured-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apps-featured-pricing {
  align-self: center;
  text-align: center;
}

.apps-featured-pricing .pricing-label {
  font-size: clamp(0.92rem, 1.2vw, 1.1rem);
}

.apps-featured-pricing .featured-app-price span {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.apps-featured-pricing .featured-app-link {
  margin-top: 1.15rem;
  font-size: clamp(0.64rem, 0.82vw, 0.78rem);
}

.apps-featured-pricing .pricing-footnote {
  margin-top: 0.85rem;
  font-size: clamp(0.62rem, 0.82vw, 0.78rem);
}

.apps-horizon {
  margin-top: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.apps-horizon > .page-kicker {
  margin-bottom: 0.3rem;
}

.apps-horizon h2 {
  margin: 0;
  color: #f8f1dd;
  font-family:
    Baskerville,
    "Iowan Old Style",
    "Palatino Linotype",
    Georgia,
    serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.apps-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.25vw, 1rem);
  margin-top: 0.95rem;
}

.apps-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  min-height: 160px;
  padding: 0.9rem 0.7rem 1rem;

  border: 1px solid rgba(245, 192, 73, 0.48);
  border-radius: 1.05rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 192, 73, 0.14), transparent 55%),
    rgba(15, 18, 31, 0.32);
  box-shadow:
    0 0 16px rgba(245, 192, 73, 0.09),
    inset 0 0 24px rgba(255, 222, 143, 0.05);
}

.apps-category-card svg {
  width: clamp(2.35rem, 4vw, 3.7rem);
  height: clamp(2.35rem, 4vw, 3.7rem);
  margin-bottom: 0.55rem;
  fill: none;
  stroke: #f4cc72;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 8px rgba(245, 192, 73, 0.35));
}

.apps-category-card h3 {
  margin: 0;
  color: #f5d27e;
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.apps-category-card p {
  max-width: 155px;
  margin: 0.55rem auto 0;
  color: rgba(247, 241, 220, 0.8);
  font-size: clamp(0.68rem, 0.85vw, 0.82rem);
  line-height: 1.4;
}

.apps-horizon-note {
  max-width: 980px;
  margin: 1.1rem auto 0;
  color: rgba(247, 241, 220, 0.78);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  line-height: 1.7;
}

.coming-soon-panel {
  max-width: 1240px;
}

.coming-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 2rem;
}

.coming-app-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;

  border: 1px solid rgba(245, 192, 73, 0.34);
  border-radius: 1.5rem;

  background:
    radial-gradient(circle at 50% 0%, rgba(245, 192, 73, 0.14), transparent 52%),
    rgba(9, 14, 36, 0.42);

  box-shadow:
    0 0 18px rgba(245, 192, 73, 0.1),
    inset 0 0 24px rgba(255, 222, 143, 0.04);
}

.coming-app-media {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 220px;
  padding: 1.4rem 1.4rem 1rem;

  border-bottom: 1px solid rgba(245, 192, 73, 0.18);

  background:
    radial-gradient(circle at 50% 50%, rgba(52, 111, 205, 0.28), transparent 64%),
    linear-gradient(180deg, rgba(6, 11, 28, 0.9), rgba(8, 16, 38, 0.65));
}

.coming-app-media-focno {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 235, 180, 0.28), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 247, 252, 0.82));
}

.coming-app-media-sprads {
  background:
    radial-gradient(circle at 50% 40%, rgba(61, 169, 255, 0.28), transparent 58%),
    linear-gradient(180deg, rgba(5, 17, 44, 0.95), rgba(10, 24, 58, 0.82));
}

.coming-app-media img {
  display: block;
  width: min(100%, 430px);
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.22));
}

.coming-app-copy {
  display: flex;
  flex-direction: column;
  padding: 1.45rem 1.5rem 1.55rem;
}

.coming-app-status {
  display: inline-flex;
  align-self: flex-start;

  margin: 0;
  padding: 0.35rem 0.7rem;

  border: 1px solid rgba(247, 209, 121, 0.42);
  border-radius: 999px;

  background: rgba(247, 209, 121, 0.08);
  color: #f4cf76;

  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coming-app-copy h3 {
  margin: 1rem 0 0;
  color: #f8f1dd;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.coming-app-tagline {
  margin: 0.55rem 0 0;
  color: #f0c86d;
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  font-style: italic;
  line-height: 1.45;
}

.coming-app-copy > p:not(.coming-app-status):not(.coming-app-tagline) {
  max-width: none;
  margin: 1rem 0 0;
  color: rgba(247, 241, 220, 0.84);
  font-size: clamp(0.94rem, 1.1vw, 1.03rem);
  line-height: 1.7;
}

.coming-app-list {
  display: grid;
  gap: 0.65rem;

  margin: 1.15rem 0 0;
  padding: 0;

  color: rgba(247, 241, 220, 0.82);
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  line-height: 1.55;
  list-style: none;
}

.coming-app-list li {
  position: relative;
  padding-left: 1.2rem;
}

.coming-app-list li::before {
  position: absolute;
  top: 0.64em;
  left: 0;

  width: 0.4rem;
  height: 0.4rem;

  border-radius: 50%;
  background: #efc66f;
  box-shadow: 0 0 9px rgba(239, 198, 111, 0.68);

  content: "";
}

.coming-soon-note {
  max-width: 860px;
  margin: 1.7rem 0 0;
  color: rgba(247, 241, 220, 0.8);
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.75;
}

.legal-document {
  max-width: 1000px;
}

.legal-document .legal-section {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(247, 209, 121, 0.2);
}

.legal-document .legal-section h2 {
  max-width: none;
  color: #f5d27e;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.legal-document .legal-section p {
  max-width: 760px;
  margin-top: 1rem;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.legal-document .legal-section ul {
  display: grid;
  gap: 0.6rem;

  max-width: 760px;
  margin: 1rem 0 0;
  padding-left: 1.35rem;

  color: rgba(247, 241, 220, 0.82);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.65;
}

.legal-document .legal-section li::marker {
  color: #efc66f;
}

.legal-signoff {
  color: #f0c86d !important;
  font-style: italic;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: clamp(0.8rem, 2vw, 1.5rem);
  max-width: 1240px;
  margin: clamp(3rem, 7vw, 5.5rem) auto 0;
}

.about-card {
  display: flex;
  flex-direction: column;

  min-height: 100%;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.about-card h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
}

.about-card-list {
  display: grid;
  gap: 0.85rem;

  margin: 1.5rem 0 0;
  padding: 0;

  color: rgba(247, 241, 220, 0.84);

  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.45;
  list-style: none;
}

.about-card-list li {
  position: relative;
  padding-left: 1.25rem;
}

.about-card-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;

  width: 0.42rem;
  height: 0.42rem;

  border-radius: 50%;

  background: #efc66f;
  box-shadow: 0 0 9px rgba(239, 198, 111, 0.7);

  content: "";
}

.about-founder {
  max-width: 760px;
  margin: clamp(4rem, 9vw, 7rem) auto 0;
  text-align: center;
}

.about-founder .page-kicker {
  margin-bottom: 1.25rem;
}

.about-founder-quote {
  margin: 0;

  color: #f7e8c0;

  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-style: italic;
  line-height: 1.45;
  text-wrap: balance;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.24);
}

.about-closing {
  max-width: 700px;
  margin: clamp(4rem, 9vw, 7rem) auto 0;

  color: #f0c86d;

  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  width: min(calc(100% - 2rem), 1400px);
  margin: 0 auto 2rem;
  padding: clamp(1.8rem, 3.6vw, 3.15rem) clamp(0.9rem, 2.7vw, 2.7rem) 1.1rem;

  border-top: 1px solid rgba(240, 210, 142, 0.28);
  color: rgba(247, 241, 220, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2rem);
  align-items: start;
}

.footer-link-group {
  display: grid;
  gap: 0.75rem;
}

.footer-links-left {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  justify-self: start;
}

.footer-brand {
  max-width: 315px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  width: clamp(160px, 16.5vw, 212px);
  margin: 0 auto;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-logo:hover,
.footer-logo:focus-visible {
  filter: drop-shadow(0 0 10px rgba(242, 195, 94, 0.38));
  transform: translateY(-1px);
}

.footer-brand p {
  max-width: 265px;
  margin: 0.9rem auto 0;
  color: rgba(247, 241, 220, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-nav {
  display: grid;
  justify-items: start;
  gap: 0.5rem;
}

.footer-world-group {
  align-content: start;
  gap: 0.1rem;
}

.footer-world-group .footer-nav {
  gap: 0.25rem;
}

.footer-nav a,
.footer-bottom a {
  color: rgba(247, 241, 220, 0.78);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #f2c96f;
  text-shadow: 0 0 10px rgba(242, 201, 111, 0.35);
}

.footer-label {
  margin: 0;
  color: #edc66f;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-social-links {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.footer-right {
  display: grid;
  align-self: center;
  justify-self: end;
  gap: 1rem;
}

.footer-right .footer-link-group {
  justify-items: center;
}

.footer-right .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.footer-social {
  align-self: center;
  justify-self: center;
  text-align: center;
}

.footer-social-links {
  justify-content: center;
}

@media (min-width: 901px) {
  .below-hero-panel {
    margin-top: -10rem;
  }

  .footer-right {
    gap: 1.75rem;
  }
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(240, 210, 142, 0.34);
  border-radius: 50%;
  background: rgba(212, 222, 230, 0.08);
  color: #f5d27e;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: rgba(255, 222, 143, 0.78);
  background: rgba(239, 196, 102, 0.12);
  box-shadow: 0 0 18px rgba(243, 202, 111, 0.18);
  outline: none;
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(1.7rem, 3.6vw, 2.9rem);
  padding-top: 0.95rem;
  border-top: 1px solid rgba(240, 210, 142, 0.16);
}

.footer-bottom p {
  margin: 0;
  color: rgba(247, 241, 220, 0.5);
  font-size: 0.75rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .page-main {
    padding:
      4.5rem
      1rem
      4.5rem;
  }

  .page-content-panel {
    margin-top: 3rem;
    padding: 2.25rem 1.35rem;
  }

  .page-card-grid {
    grid-template-columns: 1fr;
  }

  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    min-height: 0;
  }

  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem 0.55rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
  }

  .footer-links-left {
    display: contents;
  }

  .footer-links-left > .footer-link-group {
    grid-row: 2;
    justify-items: center;
    text-align: center;
  }

  .footer-links-left > .footer-link-group:first-child {
    grid-column: 1;
  }

  .footer-links-left > .footer-world-group {
    grid-column: 2;
  }

  .footer-right {
    display: contents;
  }

  .footer-right > .footer-link-group {
    grid-column: 3;
    grid-row: 2;
    align-self: start;
    justify-items: center;
    text-align: center;
  }

  .footer-right > .footer-social {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
  }

  .footer-nav {
    justify-items: center;
    text-align: center;
  }
}

.hero-copy {
  position: relative;
  z-index: 1;

  max-width: 590px;
}

.hero-copy h1 {
  margin: 0;

  color: #f8f1dd;

  font-family:
    Baskerville,
    "Iowan Old Style",
    "Palatino Linotype",
    Georgia,
    serif;

  font-size: clamp(2.7rem, 3.8vw, 4.2rem);
  font-weight: 400;

  letter-spacing: -0.035em;
  line-height: 1.03;

  text-wrap: balance;

  text-shadow:
    0 4px 28px rgba(0, 0, 0, 0.28);
}

.hero-highlight {
  color: #f0c86d;

  font-style: italic;
}

.hero-lede {
  max-width: 540px;

  margin: 1.8rem 0 0;

  color: #f2e7c9;

  font-size:
    clamp(1.15rem, 1.45vw, 1.4rem);

  font-style: italic;

  letter-spacing: 0.01em;
  line-height: 1.45;

  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.3);
}

.hero-description {
  max-width: 520px;

  margin: 1.15rem 0 0;

  color: rgba(239, 237, 226, 0.82);

  font-size:
    clamp(0.98rem, 1.08vw, 1.08rem);

  line-height: 1.65;
}

/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 0.85rem;

  margin-top: 2rem;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 3rem;

  padding: 0.85rem 1.35rem;

  border: 1px solid transparent;
  border-radius: 999px;

  font-size: 0.88rem;
  letter-spacing: 0.07em;
  line-height: 1;

  text-decoration: none;

  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-2px);
}

.hero-button-primary {
  border-color:
    rgba(241, 199, 107, 0.9);

  background:
    rgba(232, 185, 87, 0.92);

  color: #141326;

  box-shadow:
    0 8px 24px
    rgba(226, 175, 72, 0.18);
}

.hero-button-primary:hover,
.hero-button-primary:focus-visible {
  border-color: #ffe2a1;

  background: #f3cb72;

  box-shadow:
    0 10px 28px
    rgba(226, 175, 72, 0.28);
}

.hero-button-secondary {
  border-color:
    rgba(226, 231, 234, 0.64);

  background:
    rgba(212, 222, 230, 0.1);

  color: #f3eedf;

  box-shadow:
    inset 0 1px 0
    rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
  border-color:
    rgba(243, 203, 114, 0.86);

  background:
    rgba(229, 234, 238, 0.17);

  color: #ffe6a8;
}

/* =========================================================
   HERO ARTWORK
   ========================================================= */

.hero-artwork {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: min(48vw, 620px);
}

.hero-artwork-frame {
  position: relative;

  width: min(100%, 700px);

  aspect-ratio: 3 / 2;
}

.hero-artwork-frame img {
  position: relative;
  z-index: 1;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;

  filter:
    drop-shadow(
      0 18px 30px
      rgba(0, 0, 0, 0.24)
    );
}

.artwork-glow {
  position: absolute;

  top: 50%;
  left: 50%;

  width: min(82%, 560px);

  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(238, 193, 103, 0.2) 0%,
      rgba(133, 169, 224, 0.11) 42%,
      transparent 72%
    );

  filter: blur(24px);

  transform:
    translate(-50%, -50%);
}

/* =========================================================
   HERO NODE HIT AREAS + LABELS
   ========================================================= */

.artwork-label {
  position: absolute;
  z-index: 2;

  width: 14%;

  aspect-ratio: 1;

  padding: 0;

  border: 1px solid transparent;
  border-radius: 50%;

  background: transparent;

  color: #f5ead0;

  font-family:
    Baskerville,
    "Iowan Old Style",
    "Palatino Linotype",
    Georgia,
    serif;

  font-size:
    clamp(0.62rem, 0.85vw, 0.8rem);

  letter-spacing: 0.1em;

  transform:
    translate(-50%, -50%);

  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.artwork-label span {
  position: absolute;

  top:
    calc(
      100% -
      clamp(0.5rem, 1.1vw, 0.85rem)
    );
  left: 50%;

  padding: 0.22em 0.48em 0.18em;

  border: 1px solid rgba(244, 218, 157, 0.18);
  border-radius: 0.42rem;

  background:
    linear-gradient(
      180deg,
      rgba(13, 18, 34, 0.76),
      rgba(3, 7, 18, 0.58)
    );

  white-space: nowrap;

  box-shadow:
    0 3px 12px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  text-shadow:
    0 2px 12px
    rgba(0, 0, 0, 0.9);

  transform:
    translateX(-50%);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: max-content;

  text-align: center;

  pointer-events: none;

  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.artwork-label:hover {
  border-color:
    rgba(241, 201, 111, 0.36);

  background:
    rgba(255, 247, 223, 0.04);

  color: #ffe2a1;

  outline: none;

  box-shadow:
    0 0 18px
    rgba(243, 202, 111, 0.22),
    inset 0 0 12px
    rgba(255, 255, 255, 0.05);
}

.artwork-label:hover span {
  border-color:
    rgba(250, 215, 136, 0.48);

  background:
    linear-gradient(
      180deg,
      rgba(44, 35, 31, 0.82),
      rgba(11, 13, 26, 0.74)
    );

  box-shadow:
    0 0 16px rgba(243, 202, 111, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Node coordinates */

.artwork-label-publish {
  top: 16.5%;
  left: 25.4%;
}

.artwork-label-create {
  top: 8.8%;
  left: 50.0%;
}

.artwork-label-learn {
  top: 15.7%;
  left: 72.7%;
}

.artwork-label-imagine {
  top: 51.7%;
  left: 12.9%;
}

.artwork-label-organize {
  top: 42.4%;
  left: 84.4%;
}

.artwork-label-play {
  top: 72.3%;
  left: 21.7%;
}

.artwork-label-plan {
  top: 66.3%;
  left: 83.4%;
}

.artwork-label-connect {
  top: 88.1%;
  left: 44.5%;
}

.artwork-label-explore {
  top: 81.7%;
  left: 68.2%;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
  .header-inner {
    gap: 1rem;
  }

  .site-nav {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.96rem;
  }
}

/* =========================================================
   MOBILE / SMALL TABLET
   ========================================================= */

@media (max-width: 900px) {
  .site-header {
    top: 0.75rem;

    width: calc(100% - 1.25rem);

    margin-top: 0.75rem;
    overflow: visible;

    border-radius: 1.5rem;
  }

  .header-inner {
    min-height: 86px;
  }

  .brand {
    width: 220px;
  }

  .menu-checkbox {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
  }

  .menu-button {
    display: flex;

    flex: 0 0 auto;
    flex-direction: column;

    align-items: flex-end;
    justify-content: center;

    width: 42px;
    height: 42px;

    gap: 5px;

    padding: 0.65rem;

    border:
      1px solid
      rgba(239, 196, 102, 0.32);

    border-radius: 50%;

      transition:
      border-color 180ms ease,
      background 180ms ease;
  }

  .menu-line {
    display: block;

    width: 19px;
    height: 1px;

    background: #f7f1dc;

    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-line:nth-child(4) {
    width: 13px;
  }

  .menu-button:hover,
  .menu-checkbox:focus-visible + .menu-button {
    background:
      rgba(239, 196, 102, 0.1);

    border-color:
      rgba(239, 196, 102, 0.8);
  }

  .menu-checkbox:checked
    + .menu-button
    .menu-line:nth-child(2) {
    transform:
      translateY(6px)
      rotate(45deg);
  }

  .menu-checkbox:checked
    + .menu-button
    .menu-line:nth-child(3) {
    opacity: 0;
  }

  .menu-checkbox:checked
    + .menu-button
    .menu-line:nth-child(4) {
    transform:
      translateY(-6px)
      rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    z-index: 2;

    top: calc(100% + 0.65rem);
    right: 0;

    display: none;

    flex-direction: column;
    align-items: stretch;

    min-width:
      min(265px, calc(100vw - 2rem));

    gap: 0.2rem;

    padding: 0.75rem;

    border:
      1px solid
      rgba(240, 247, 252, 0.34);

    border-radius: 1rem;

    background-color: #050b22;
    background-image: url("/constellation-background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

    box-shadow:
      0 18px 45px
      rgba(0, 0, 0, 0.28);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .menu-checkbox:checked ~ .site-nav {
    display: flex;
  }

  .nav-link {
    width: 100%;

    padding: 0.78rem 0.65rem;

    font-size: 0.9rem;
  }

  .nav-link::after {
    right: 0.65rem;
    bottom: 0.35rem;
    left: 0.65rem;
  }

  .hero-section {
    grid-template-columns: 1fr;

    min-height: auto;

    margin-top: 0.875rem;

    transform: translateY(-2.5rem);

    gap: 1.25rem;

    padding:
      2rem
      1rem
      4rem;
  }

  .hero-copy {
    max-width: 680px;

    margin: 0 auto;

    text-align: center;
  }

  .hero-copy h1 {
    font-size:
      clamp(2.7rem, 9vw, 4rem);
  }

  .hero-lede,
  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-artwork {
    min-height: auto;

    margin-top: 1rem;
  }

  .hero-artwork-frame {
    width: min(100%, 600px);
  }

  .apps-page-main {
    padding-top: 2.5rem;
    padding-bottom: 4.5rem;
  }

  .apps-page-intro .page-title {
    font-size: clamp(2.2rem, 8vw, 3.35rem);
  }

  .apps-page-intro .page-lede {
    max-width: 34rem;
    margin-top: 0.7rem;
    font-size: 0.96rem;
  }

  .apps-featured-panel {
    margin-top: 1.5rem;
    border-radius: 1.5rem;
  }

  .apps-featured-heading {
    padding-top: 0.8rem;
  }

  .apps-featured-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0.25rem 1rem 1.9rem;
  }

  .apps-featured-copy {
    text-align: center;
  }

  .apps-featured-copy h2,
  .apps-featured-copy > p {
    max-width: 32rem;
    margin-right: auto;
    margin-left: auto;
  }

  .apps-featured-copy .featured-app-features {
    max-width: 21rem;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .apps-featured-media {
    width: min(100%, 38rem);
    margin: 0 auto;
  }

  .apps-featured-pricing {
    width: min(100%, 20rem);
    margin: 0 auto;
  }

  .apps-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .coming-app-grid {
    grid-template-columns: 1fr;
  }

  .coming-app-media {
    min-height: 180px;
    padding: 1.2rem 1rem 0.9rem;
  }

  .coming-app-copy {
    padding: 1.25rem 1.2rem 1.35rem;
  }

  .apps-category-card {
    min-height: 170px;
    padding: 0.85rem 0.55rem 1rem;
  }

  .below-hero-panel {
    min-height: auto;
    margin-top: clamp(1.5rem, 4vw, 3.5rem);
    border-radius: 1.65rem;
  }

  .featured-app-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    min-height: auto;
    padding: 4.25rem 1.35rem 2.25rem;
  }

  .featured-app-intro {
    text-align: center;
  }

  .featured-app-intro h2,
  .featured-app-description {
    max-width: 30rem;
    margin-right: auto;
    margin-left: auto;
  }

  .featured-app-features {
    max-width: 21rem;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .featured-app-media {
    width: min(100%, 36rem);
    margin: 0 auto;
  }

  .featured-app-pricing {
    width: min(100%, 19rem);
    margin: 0 auto;
  }

  .artwork-label {
    width: 15%;

    font-size:
      clamp(0.56rem, 2vw, 0.72rem);

    letter-spacing: 0.08em;
  }

  .site-footer {
    margin-bottom: 1rem;
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }
}

/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
  .header-inner {
    width:
      min(100% - 1rem, 1440px);
  }

  .brand {
    width: 184px;
  }

  .hero-section {
    margin-top: 2.5rem;
  }

  .coming-app-media img {
    width: min(100%, 320px);
  }

  .coming-app-copy h3 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .hero-copy h1 {
    font-size:
      clamp(2.35rem, 11vw, 3.25rem);
  }

  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 0.35rem;
  }

  .site-footer {
    padding-top: 1.45rem;
    padding-bottom: 0.8rem;
  }

  .footer-brand {
    max-width: 290px;
  }

  .footer-brand p {
    margin-top: 0.6rem;
    font-size: 0.8rem;
  }

  .footer-label {
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }

  .footer-nav {
    gap: 0.34rem;
  }

  .footer-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  .footer-world-group .footer-nav {
    gap: 0.2rem;
  }

  .footer-social-links {
    margin-top: 0.6rem;
  }

  .footer-bottom {
    margin-top: 1.25rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes header-shimmer {
  0%,
  100% {
    background-position: 145% 0;
  }

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

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

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

  .site-header::before {
    animation: none;
  }
}