/* ============================================================
   NovaBlip — Editorial lilac / cream landing
   Distinctive layout: floating glass pill nav, magazine watermark
   hero, cream “sheet” features, horizontal staff-picks rail.
   ============================================================ */

:root {
  /* Brand-aligned: cream + terracotta editorial (matches app shots) */
  --lilac-50: #f7efe6;
  --lilac-100: #f0e4d6;
  --lilac-200: #e4d2bf;
  --lilac-300: #d4b89e;
  --lilac-deep: #8b4f34;
  --cream: #f9f7f2;
  --cream-2: #f3efe6;
  --ink: #1c1917;
  --ink-soft: #3a322c;
  --muted: #6b625a;
  --line: rgba(28, 25, 23, 0.08);
  --amber: #a66345;
  --ochre: #c4a07a;
  --glass: rgba(255, 255, 255, 0.78);
  --shadow-soft: 0 18px 50px rgba(90, 55, 35, 0.12);
  --shadow-pill: 0 10px 40px rgba(90, 55, 35, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--lilac-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Atmosphere ---------- */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.atmosphere__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 18% 8%, #f3e0d2 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 88% 18%, #e8d4c4 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 60% 70%, rgba(196, 180, 200, 0.35) 0%, transparent 55%),
    linear-gradient(165deg, #efe2d6 0%, #e8d8ea 38%, #f2ebe3 100%);
}

.atmosphere__grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(139, 79, 52, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 79, 52, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}

.atmosphere__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.atmosphere__orb--a {
  width: 280px;
  height: 280px;
  top: 12%;
  right: 8%;
  background: rgba(166, 99, 69, 0.35);
  animation: drift 14s var(--ease) infinite alternate;
}

.atmosphere__orb--b {
  width: 320px;
  height: 320px;
  bottom: 20%;
  left: -5%;
  background: rgba(170, 150, 190, 0.35);
  animation: drift 18s var(--ease) infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(24px, -18px); }
}

/* ---------- Floating glass nav ---------- */
.nav-pill {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(920px, calc(100% - 1.5rem));
  padding: 0.55rem 0.65rem 0.55rem 0.85rem;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  box-shadow: var(--shadow-pill);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-pill.is-scrolled {
  background: rgba(249, 248, 244, 0.88);
  box-shadow: 0 12px 36px rgba(80, 60, 100, 0.16);
}

.nav-pill__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-pill__brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-pill__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex: 1;
}

.nav-pill__links a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-pill__links a:hover,
.nav-pill__links a:focus-visible {
  background: rgba(26, 26, 26, 0.05);
  color: var(--ink);
  outline: none;
}

.nav-pill__cta {
  flex-shrink: 0;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-pill__cta:hover {
  background: #2e2e2e;
}

.nav-pill__cta:focus-visible {
  outline: 2px solid var(--lilac-deep);
  outline-offset: 2px;
}

.nav-pill__menu {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.05);
}

.nav-pill__menu svg {
  width: 20px;
  height: 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.btn:focus-visible {
  outline: 2px solid var(--lilac-deep);
  outline-offset: 3px;
}

.btn--store {
  min-width: 168px;
  padding: 0.7rem 1.2rem;
  background: var(--ink);
  color: #fff;
  text-align: left;
}

.btn--store svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn--store span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn--store small {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

.btn--store:hover {
  background: #2a2a2a;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.2);
}

.btn--store-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.1);
}

.btn--store-light:hover {
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(80, 60, 100, 0.12);
}

.btn--primary {
  padding: 0.75rem 1.6rem;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
}

.btn--primary:hover {
  background: #2e2e2e;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 2.5rem) 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__watermark {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(139, 79, 52, 0.09);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 0.9;
}

.hero__ring {
  position: absolute;
  top: 18%;
  right: 12%;
  width: min(320px, 40vw);
  height: min(320px, 40vw);
  border: 1px solid rgba(139, 79, 52, 0.2);
  border-radius: 50%;
  pointer-events: none;
  animation: ringPulse 8s var(--ease) infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.04); opacity: 1; }
}

.hero__stage {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero__copy {
  padding-bottom: 1.5rem;
  transform: translateY(-100px);
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lilac-deep);
}

.hero__kicker svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
}

.hero__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.hero__headline {
  margin: 1rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  font-size: 1.02rem;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__device {
  position: relative;
  justify-self: center;
  width: min(340px, 82vw);
}

.shot {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  animation: phoneFloat 6s var(--ease) infinite alternate;
  background: var(--lilac-100);
}

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

@keyframes phoneFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

.hero__genres {
  width: min(var(--max), 100%);
  margin: 2.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.hero__genres span {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  backdrop-filter: blur(8px);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.hero__genres span:hover {
  background: #fff;
  border-color: rgba(166, 99, 69, 0.35);
}

/* ---------- Cream sheet sections ---------- */
.sheet {
  position: relative;
  margin-top: -1.5rem;
  padding: 0 1rem 1rem;
}

.sheet__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--cream);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -20px 60px rgba(80, 60, 100, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: none;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lilac-deep);
}

.section-head__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-head__sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Asymmetric magazine feature spread */
.feature-spread {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.feature {
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.feature:hover {
  border-color: rgba(166, 99, 69, 0.25);
  box-shadow: 0 12px 32px rgba(90, 55, 35, 0.08);
}

.feature--lead {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  background:
    linear-gradient(160deg, rgba(247, 239, 230, 0.95), #fff 55%),
    #fff;
  padding: 2rem 1.75rem;
}

.feature__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--lilac-50);
  color: var(--lilac-deep);
  margin-bottom: 1rem;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature--lead h3 {
  font-size: 2rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Affinity bars */
.affinity {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
}

.affinity__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

.affinity__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.affinity__list li {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: var(--cream-2);
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  width: var(--fill);
  border-radius: inherit;
  background: var(--hue);
  transform-origin: left center;
  animation: fillBar 1.1s var(--ease) both;
}

@keyframes fillBar {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ---------- Staff picks rail ---------- */
.picks {
  background: var(--cream);
  padding: 1rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
}

.picks__head {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.picks__head .section-head__title {
  margin-bottom: 0;
}

.picks__note {
  margin: 0;
  max-width: 22ch;
  font-size: 0.9rem;
  color: var(--muted);
}

.picks__rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem max(1rem, calc((100% - var(--max)) / 2 + 1rem)) 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--lilac-300) transparent;
}

.picks__rail:focus-visible {
  outline: 2px solid var(--lilac-deep);
  outline-offset: 4px;
}

.pick-card {
  flex: 0 0 min(260px, 72vw);
  scroll-snap-align: start;
  cursor: default;
}

.pick-card__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 9 / 16;
  background: var(--lilac-100);
  box-shadow: 0 12px 28px rgba(90, 55, 35, 0.1);
}

.pick-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease);
}

.pick-card:hover .pick-card__media img {
  transform: scale(1.03);
}

.pick-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.pick-card__badge svg {
  width: 12px;
  height: 12px;
  color: var(--amber);
  fill: var(--amber);
}

.pick-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pick-card > p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.pick-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pick-card__tags span {
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

/* ---------- Download (warm ochre shift from profile image) ---------- */
.download {
  padding: 3rem 1rem 4rem;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(232, 210, 180, 0.55), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #efe4d6 100%);
}

.download__panel {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.download__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.download__lead {
  margin: 0 auto 1.75rem;
  max-width: 42ch;
  color: var(--muted);
}

.download__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ---------- Footer ---------- */
.footer {
  background: #2c241e;
  color: rgba(249, 248, 244, 0.85);
  padding: 2.5rem 1.25rem 2rem;
}

.footer__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.footer__brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
}

.footer__brand p {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: rgba(249, 248, 244, 0.55);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(249, 248, 244, 0.75);
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  outline: none;
}

.footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(249, 248, 244, 0.4);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- Modal ---------- */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 30, 0.45);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  width: min(400px, 100%);
  padding: 2rem 1.75rem 1.75rem;
  background: var(--cream);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: modalIn 0.35s var(--ease);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  transition: background 0.2s var(--ease);
}

.modal__close:hover {
  background: rgba(26, 26, 26, 0.06);
}

.modal__close svg {
  width: 18px;
  height: 18px;
}

.modal__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--lilac-50);
  color: var(--lilac-deep);
}

.modal__icon svg {
  width: 24px;
  height: 24px;
}

.modal__dialog h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
}

.modal__dialog p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

body.modal-open {
  overflow: hidden;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__stage {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero__copy {
    padding-bottom: 0;
    transform: none;
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__genres {
    justify-content: center;
  }

  .hero__ring {
    right: 50%;
    transform: translateX(50%);
    opacity: 0.5;
  }

  .feature-spread {
    grid-template-columns: 1fr;
  }

  .feature--lead {
    grid-row: auto;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .nav-pill {
    width: calc(100% - 1.25rem);
    border-radius: 22px;
    flex-wrap: wrap;
    padding: 0.55rem 0.65rem;
  }

  .nav-pill__menu {
    display: grid;
    margin-left: auto;
  }

  .nav-pill__cta {
    display: none;
  }

  .nav-pill__links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0.25rem 0.35rem;
    gap: 0.2rem;
  }

  .nav-pill.is-open .nav-pill__links {
    display: flex;
  }

  .nav-pill__links a {
    padding: 0.7rem 0.9rem;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 1.5rem);
    min-height: auto;
  }

  .hero__watermark {
    top: 8%;
  }

  .affinity__list li {
    grid-template-columns: 5rem 1fr;
  }

  .download__panel {
    text-align: left;
  }

  .download__cta {
    justify-content: stretch;
  }

  .download__cta .btn {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .atmosphere__orb,
  .shot,
  .hero__ring,
  .bar i,
  .modal__dialog {
    animation: none !important;
  }

  .pick-card:hover .pick-card__media img {
    transform: none;
  }
}
