:root {
  --bg: #070b14;
  --text: #eff2ff;
  --muted: #b8c1e7;
  --panel: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.18);
  --font-system:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-system);
  background: radial-gradient(circle at 10% 20%, #16315f 0%, #070b14 45%, #03050a 100%);
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 90vh;
  padding: 2rem clamp(1.25rem, 3vw, 3rem);
  display: grid;
  align-content: space-between;
  overflow: hidden;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.8px, transparent 0.8px);
  background-size: 4px 4px;
  opacity: 0.15;
  pointer-events: none;
}

.topbar,
.hero__content {
  position: relative;
  z-index: 2;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--font-system);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.topbar__cta {
  text-decoration: none;
  color: #f6f3ff;
  background: linear-gradient(135deg, #5c47c8, #6a56d8);
  border: 1px solid rgba(167, 147, 255, 0.72);
  box-shadow: 0 8px 20px rgba(52, 34, 116, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.topbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(49, 31, 113, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  filter: brightness(1.05);
}

.hero__content {
  max-width: 760px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.77rem;
  color: #98b8ff;
}

h1 {
  font-family: "Bebas Neue", var(--font-system);
  letter-spacing: 0.03em;
  line-height: 0.95;
  font-size: clamp(3rem, 10vw, 7.7rem);
  margin: 0.5rem 0 1rem;
}

.hero__content p {
  max-width: 560px;
  line-height: 1.65;
  color: var(--muted);
  font-size: 1.05rem;
}

.scroll-indicator {
  position: relative;
  z-index: 2;
  justify-self: end;
  opacity: 0.75;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.feature-story {
  position: relative;
  margin-top: 4vh;
}

.feature-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2.5vw, 2rem);
}

.feature-card {
  position: absolute;
  inset: max(3vh, 1rem) clamp(2vw, 3.2vw, 3.6rem) clamp(9vh, 4rem);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(35px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.feature-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: #9bb7ff;
  text-shadow: 0 0 18px rgba(114, 174, 255, 0.5);
}

.feature-card h2 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2rem, 3.3vw, 4.4rem);
  line-height: 0.95;
  font-family: var(--font-system);
  letter-spacing: -0.02em;
  text-wrap: balance;
  background: linear-gradient(110deg, #ffffff 0%, #b9d2ff 58%, #9dffed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 12px 20px rgba(7, 16, 38, 0.45));
}

.feature-card p {
  margin: 0;
  line-height: 1.7;
  color: #e0e7ff;
}

.feature-card__text {
  max-width: 34rem;
  position: relative;
  z-index: 3;
}

.feature-card__text p:last-child {
  padding: 0.7rem 0.95rem;
  border-left: 2px solid rgba(167, 226, 255, 0.65);
  background: linear-gradient(120deg, rgba(6, 12, 22, 0.55), rgba(31, 68, 82, 0.2));
  border-radius: 0.35rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.feature-card__shot {
  min-height: 320px;
  max-height: min(56vh, 520px);
  width: 100%;
  max-width: 640px;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  position: relative;
  z-index: 1;
  justify-self: stretch;
  align-self: center;
}

.feature-image {
  width: 100%;
  max-height: min(56vh, 520px);
  display: block;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  object-fit: cover;
}

.feature-card[data-index="0"] .feature-card__text {
  grid-column: 1 / span 6;
  grid-row: 2 / span 4;
  align-self: center;
}

.feature-card[data-index="0"] .feature-card__shot {
  grid-column: 7 / span 6;
  grid-row: 1 / span 7;
  transform: rotate(-2deg);
  justify-self: end;
}

.feature-card[data-index="1"] .feature-card__text {
  grid-column: 7 / span 6;
  grid-row: 1 / span 4;
  align-self: start;
}

.feature-card[data-index="1"] .feature-card__shot {
  grid-column: 1 / span 7;
  grid-row: 2 / span 6;
  transform: rotate(2.2deg);
  justify-self: start;
}

.feature-card[data-index="1"] h2 {
  background: linear-gradient(95deg, #ffd59a 0%, #ff7e9c 55%, #f0b9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.feature-card[data-index="2"] .feature-card__text {
  grid-column: 2 / span 5;
  grid-row: 2 / span 4;
  align-self: center;
}

.feature-card[data-index="2"] .feature-card__shot {
  grid-column: 5 / span 8;
  grid-row: 3 / span 5;
  justify-self: end;
}

.feature-card[data-index="2"] h2 {
  color: rgba(223, 255, 255, 0.08);
  -webkit-text-stroke: 1px #a8f7ff;
  background: none;
  filter: drop-shadow(0 10px 16px rgba(24, 98, 125, 0.35));
}

.feature-card[data-index="3"] .feature-card__text {
  grid-column: 1 / span 6;
  grid-row: 3 / span 4;
  align-self: start;
}

.feature-card[data-index="3"] .feature-card__shot {
  grid-column: 6 / span 7;
  grid-row: 1 / span 7;
  transform: rotate(-1.4deg);
  justify-self: end;
}

.feature-card[data-index="3"] h2 {
  background: linear-gradient(104deg, #c4d2ff 8%, #7ff4ff 55%, #e6ffad 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.feature-card[data-index="4"] .feature-card__text {
  grid-column: 8 / span 5;
  grid-row: 3 / span 4;
  align-self: start;
}

.feature-card[data-index="4"] .feature-card__shot {
  grid-column: 1 / span 6;
  grid-row: 1 / span 7;
  transform: none;
  justify-self: start;
  max-width: 560px;
}

.feature-card[data-index="4"] h2 {
  background: linear-gradient(120deg, #ffffff 0%, #a5ffe1 58%, #7ccaff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.feature-card[data-index="4"] .kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(156, 222, 255, 0.6);
  background: linear-gradient(110deg, rgba(21, 70, 121, 0.72), rgba(35, 120, 130, 0.56));
  color: #e9fcff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  box-shadow: 0 6px 24px rgba(52, 154, 190, 0.35);
}

.shot--search {
  background: linear-gradient(140deg, #070f1f, #0b1530 58%, #111f45);
  padding: 0;
}

.tag-modal {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  border: 1px solid rgba(98, 127, 179, 0.35);
  border-radius: 1rem;
  background: #111a2f;
  overflow: hidden;
}

.tag-modal__header {
  min-height: 60px;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(114, 141, 196, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tag-modal__header strong {
  font-size: 0.95rem;
  font-family: var(--font-system);
  color: #eff4ff;
}

.tag-modal__close {
  font-size: 1.2rem;
  line-height: 1;
  color: #9fafce;
  font-weight: 700;
}

.tag-modal__section {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(110, 139, 192, 0.24);
}

.tag-input {
  border: 1px solid rgba(102, 132, 191, 0.42);
  border-radius: 0.62rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  color: #717f9f;
  font-size: 0.66rem;
  font-family: var(--font-system);
  font-weight: 500;
  background: rgba(2, 8, 20, 0.55);
}

.tag-modal__section p {
  margin: 0 0 0.58rem;
  letter-spacing: 0.02em;
  font-size: 0.56rem;
  color: #9ca8c5;
  font-family: var(--font-system);
  font-weight: 700;
}

.tag-modal__section--current {
  display: grid;
  gap: 0.42rem;
}

.tag-pill-row {
  min-height: 40px;
  border-radius: 0.62rem;
  border: 1px solid rgba(95, 123, 177, 0.44);
  background: rgba(4, 10, 24, 0.8);
  padding: 0.38rem 0.6rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.45rem;
}

.tag-pill-emoji {
  font-size: 1rem;
  line-height: 1;
}

.tag-pill-text {
  font-size: 0.66rem;
  color: #e9f0ff;
  font-weight: 700;
}

.tag-pill-close {
  font-size: 1.05rem;
  color: #8e9ec0;
  line-height: 1;
}

.tag-modal__section--quick {
  border-bottom: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
}

.quick-list {
  min-height: 0;
  overflow: auto;
  padding-right: 0.2rem;
  display: grid;
  gap: 0.15rem;
}

.quick-list::-webkit-scrollbar {
  width: 0.38rem;
}

.quick-list::-webkit-scrollbar-thumb {
  background: rgba(156, 182, 235, 0.65);
  border-radius: 999px;
}

.quick-item {
  min-height: 35px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.18rem 0 0.08rem;
}

.quick-emoji {
  font-size: 1.05rem;
  line-height: 1;
}

.quick-item b {
  font-size: 0.64rem;
  color: #e7efff;
  font-weight: 700;
}

.quick-item i {
  font-style: normal;
  color: #9eafd2;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
}

.shot--collections {
  background: linear-gradient(170deg, #050a16, #0c1832 48%, #1a2e5e);
  padding: 0;
}

.bulk-shot {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #0a1327;
  border: 1px solid rgba(121, 164, 255, 0.35);
  border-radius: 1rem;
  overflow: hidden;
}

.bulk-shot__topbar {
  min-height: 52px;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid rgba(150, 185, 255, 0.22);
  background: #0e172d;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.bulk-shot__title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-system);
}

.bulk-shot__app-icon {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(210, 225, 255, 0.34);
  background: linear-gradient(140deg, #101f3d, #263f6f);
}

.bulk-shot__title strong {
  letter-spacing: 0.01em;
  font-size: 0.92rem;
}

.bulk-shot__controls {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.chip {
  border-radius: 0.5rem;
  border: 1px solid rgba(163, 192, 255, 0.35);
  padding: 0.35rem 0.56rem;
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-system);
}

.chip--ghost {
  color: #d7e5ff;
  background: rgba(39, 57, 93, 0.55);
}

.chip--solid {
  color: #f7fbff;
  background: #4d85f7;
  border-color: #5a8ff8;
}

.bulk-shot__grid {
  padding: 0.7rem;
  display: grid;
  gap: 0.48rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tile {
  min-height: 128px;
  background: #0a1429;
  border: 1px solid rgba(153, 184, 255, 0.14);
  border-radius: 0.65rem;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
}

.tile--selected {
  border: 2px solid #3b83f8;
  box-shadow: inset 0 0 0 1px rgba(150, 194, 255, 0.42);
}

.tile__check,
.tile__dashed {
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 0.42rem;
  left: 0.42rem;
  border-radius: 0.28rem;
  background: rgba(14, 26, 48, 0.8);
  border: 1px solid rgba(172, 197, 247, 0.44);
  z-index: 2;
}

.tile__check::after {
  content: "";
  position: absolute;
  inset: 0.21rem 0.18rem 0.19rem 0.2rem;
  border-right: 2px solid #f2f8ff;
  border-bottom: 2px solid #f2f8ff;
  transform: rotate(40deg);
}

.tile__dashed {
  border-style: dashed;
}

.tile__art {
  position: relative;
  background: radial-gradient(circle at 50% 12%, rgba(37, 56, 95, 0.92), #0b1325 60%);
}

.tile__media {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0.28rem;
  filter: saturate(1.06) contrast(1.04);
}

.tile__meta {
  margin: 0;
  padding: 0.4rem 0.46rem 0.5rem;
  border-top: 1px solid rgba(148, 184, 255, 0.15);
  background: linear-gradient(180deg, rgba(38, 53, 84, 0.7), rgba(26, 37, 60, 0.95));
  display: flex;
  justify-content: space-between;
  gap: 0.35rem;
  align-items: baseline;
}

.tile__meta strong,
.tile__meta span {
  display: block;
  font-size: 0.53rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tile__meta strong {
  color: #deecff;
  max-width: 70%;
}

.tile__meta span {
  color: #8ea9d8;
}

.art--emoji-neutral::before,
.art--emoji-dizzy::before,
.art--emoji-huh::before {
  content: "";
  position: absolute;
  width: min(76px, 84%);
  aspect-ratio: 1;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.art--emoji-neutral::before {
  background: radial-gradient(circle at 38% 28%, #ffe872, #ffbf2d 68%, #f19400);
}

.art--emoji-dizzy::before {
  background: radial-gradient(circle at 40% 26%, #ffe96c, #f9b048 70%, #ff8ac5);
}

.art--emoji-huh::before {
  background: radial-gradient(circle at 40% 26%, #fff4ad, #ffc03f 70%, #f29300);
}

.art--bots::before,
.art--bots::after {
  content: "";
  position: absolute;
  bottom: 19%;
  width: 22%;
  height: 50%;
  border-radius: 0.35rem;
  background: linear-gradient(180deg, #f24829 10%, #3a53eb 68%, #09122b);
}

.art--bots::before {
  left: 24%;
}

.art--bots::after {
  right: 24%;
}

.art--pig-walk::before,
.art--pig-stand::before,
.art--pig-front::before,
.art--pig-front-alt::before {
  content: "";
  position: absolute;
  width: min(58px, 62%);
  aspect-ratio: 0.62;
  border-radius: 42% 42% 35% 35%;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, #ffc7d5 0%, #f09cb0 72%, #9c4f5e);
}

.art--pig-walk::after,
.art--pig-stand::after,
.art--pig-front::after,
.art--pig-front-alt::after {
  content: "";
  position: absolute;
  width: min(36px, 38%);
  aspect-ratio: 1;
  border-radius: 50%;
  left: 50%;
  top: 32%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, #ffd2de 0%, #ec9aad 80%);
}

.bulk-shot__bottombar {
  min-height: 52px;
  padding: 0.55rem 0.75rem;
  border-top: 1px solid rgba(136, 173, 255, 0.22);
  background: #121d34;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.bulk-shot__bottombar p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #e1ecff;
}

.bulk-shot__actions {
  display: flex;
  gap: 0.28rem;
  flex-wrap: wrap;
  justify-content: center;
}

.icon-btn {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(163, 189, 240, 0.34);
  background: rgba(31, 49, 82, 0.7);
}

.icon-btn--danger {
  border-color: rgba(255, 105, 117, 0.88);
  background: rgba(86, 26, 39, 0.9);
}

.shot--launcher {
  background: linear-gradient(160deg, #0a141d, #1b3849);
  display: grid;
  place-items: center;
  padding: 1.1rem;
}

.indexing-shot {
  width: min(500px, 100%);
  border: 1px solid rgba(142, 238, 255, 0.35);
  background: linear-gradient(170deg, rgba(4, 11, 19, 0.84), rgba(7, 19, 33, 0.88));
  border-radius: 0.95rem;
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.75rem;
  box-shadow: inset 0 1px 0 rgba(230, 248, 255, 0.08);
}

.indexing-shot__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.indexing-shot__header strong {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #e8f8ff;
}

.indexing-shot__status {
  font-size: 0.73rem;
  color: #8de2ff;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.indexing-shot__count {
  margin: 0;
  font-family: var(--font-system);
  font-size: 1.1rem;
  color: #d6efff;
}

.indexing-progress {
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(121, 202, 248, 0.42);
  background: rgba(7, 31, 49, 0.7);
  overflow: hidden;
}

.indexing-progress__fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #90fff1 0%, #4de7ff 55%, #1fc1ff 100%);
  position: relative;
}

.feature-card.active .indexing-progress__fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.55) 45%, transparent 75%);
  transform: translateX(-100%);
  animation: indexingShine 0.8s linear infinite;
}

.indexing-shot__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #94dfff;
  font-size: 0.72rem;
}

.indexing-shot__footer span:first-child {
  font-family: var(--font-system);
  color: #dbf6ff;
}

.indexing-shot__footer span:last-child {
  max-width: 70%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

@keyframes indexingShine {
  to {
    transform: translateX(100%);
  }
}

.shot--share {
  background: linear-gradient(160deg, #0d152d, #123563 48%, #1b6a6a);
  padding: 0;
}

.sticker-shot {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(156, 221, 255, 0.35);
  background: #0a1931;
}

.sticker-shot__top {
  min-height: 52px;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid rgba(165, 215, 255, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, rgba(16, 38, 66, 0.92), rgba(13, 30, 55, 0.92));
}

.sticker-shot__top strong {
  font-family: var(--font-system);
  font-size: 0.88rem;
  color: #e8f6ff;
}

.sticker-shot__top-actions {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.sticker-shot__body {
  min-height: 0;
  display: grid;
  grid-template-columns: 140px 1fr;
}

.sticker-shot__sidebar {
  border-right: 1px solid rgba(130, 197, 255, 0.22);
  background: rgba(8, 23, 44, 0.72);
  padding: 0.6rem 0.55rem;
}

.sticker-shot__sidebar p {
  margin: 0 0 0.48rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.58rem;
  color: #7ebce2;
  font-weight: 700;
}

.sticker-shot__sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.32rem;
}

.sticker-shot__sidebar li {
  font-size: 0.64rem;
  border-radius: 0.4rem;
  padding: 0.32rem 0.45rem;
  color: #bddcff;
  border: 1px solid rgba(135, 184, 238, 0.15);
  background: rgba(36, 73, 116, 0.26);
}

.sticker-shot__sidebar li.is-active {
  color: #f2fbff;
  border-color: rgba(139, 223, 255, 0.5);
  background: linear-gradient(120deg, rgba(67, 170, 206, 0.58), rgba(30, 99, 144, 0.65));
}

.sticker-shot__panel {
  padding: 0.58rem;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.44rem;
  background: radial-gradient(circle at 20% 10%, rgba(56, 112, 158, 0.24), transparent 50%);
}

.sticker-shot__panel-head {
  display: flex;
  justify-content: space-between;
  gap: 0.35rem;
  align-items: center;
}

.sticker-search,
.sticker-count {
  display: inline-block;
  font-size: 0.58rem;
  border-radius: 0.4rem;
  padding: 0.25rem 0.4rem;
  border: 1px solid rgba(171, 214, 255, 0.28);
  color: #c5e5ff;
}

.sticker-search {
  min-width: 50%;
  background: rgba(22, 46, 80, 0.78);
}

.sticker-count {
  background: rgba(50, 91, 134, 0.45);
}

.sticker-tags {
  display: flex;
  gap: 0.32rem;
  flex-wrap: wrap;
}

.sticker-tags span {
  border-radius: 999px;
  border: 1px solid rgba(163, 220, 255, 0.4);
  padding: 0.18rem 0.42rem;
  font-size: 0.54rem;
  color: #d8f2ff;
  background: rgba(56, 113, 165, 0.36);
}

.sticker-shot__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.38rem;
}

.sticker-card {
  min-height: 78px;
  border-radius: 0.52rem;
  border: 1px solid rgba(159, 209, 255, 0.26);
  background: linear-gradient(160deg, rgba(23, 39, 71, 0.9), rgba(17, 31, 55, 0.92));
  padding: 0.32rem;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.2rem;
}

.sticker-card small {
  font-size: 0.5rem;
  color: #96b9de;
  text-align: center;
}

.sticker-thumb {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0.42rem;
  object-fit: contain;
  background: radial-gradient(circle at 40% 10%, rgba(74, 120, 178, 0.5), rgba(19, 30, 51, 0.85));
}

.sticker-art {
  position: relative;
  display: block;
  border-radius: 0.42rem;
  background: radial-gradient(circle at 40% 10%, rgba(74, 120, 178, 0.5), rgba(19, 30, 51, 0.85));
}

.sticker-art::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sticker-art--pig::before,
.sticker-art--pig-alt::before {
  width: 26px;
  height: 34px;
  border-radius: 40% 40% 34% 34%;
  background: linear-gradient(180deg, #ffc8d8 0%, #f39db2 75%, #a85567);
}

.sticker-art--face::before,
.sticker-art--swirl::before,
.sticker-art--star::before {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 26%, #fff0a0, #ffc03e 70%, #ef8f00);
}

.sticker-art--bolt::before {
  width: 22px;
  height: 30px;
  border-radius: 0.3rem;
  background: linear-gradient(180deg, #f35a39 8%, #2d57e3 75%, #101b39);
}

.sticker-shot__footer {
  min-height: 48px;
  padding: 0.55rem 0.75rem;
  border-top: 1px solid rgba(138, 207, 255, 0.25);
  background: rgba(9, 28, 52, 0.86);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.sticker-shot__footer p {
  margin: 0;
  font-size: 0.64rem;
  color: #d4ecff;
}

.shot--partners {
  background: radial-gradient(circle at 20% 12%, #1f3b6f, #101b32 55%, #060b14);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.partner-search {
  width: min(460px, 100%);
  border-radius: 0.9rem;
  border: 1px solid rgba(172, 207, 255, 0.25);
  background: linear-gradient(160deg, rgba(9, 19, 37, 0.9), rgba(15, 35, 66, 0.85));
  box-shadow: 0 16px 36px rgba(4, 10, 24, 0.45);
  padding: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.partner-search__bar {
  border-radius: 999px;
  border: 1px solid rgba(168, 203, 255, 0.32);
  background: rgba(4, 16, 35, 0.8);
  padding: 0.45rem 0.75rem;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.74rem;
  color: #cde7ff;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.partner-logo {
  min-height: 104px;
  border-radius: 0.72rem;
  border: 1px solid rgba(184, 215, 255, 0.28);
  background: linear-gradient(150deg, rgba(4, 16, 32, 0.92), rgba(10, 34, 63, 0.9));
  display: grid;
  place-items: center;
}

.partner-logo img {
  width: min(150px, 75%);
  height: auto;
  display: block;
  object-fit: contain;
}

.partner-search__note {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fc0ef;
}

.progress-wrap {
  position: absolute;
  inset: auto auto 1rem 50%;
  transform: translateX(-50%);
  width: min(500px, 70vw);
}

.progress-track {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, #8dfffd, #f7ff8c);
  transition: width 0.28s linear;
}

.feature-scroll {
  height: 430vh;
}

.step {
  height: 86vh;
}

.downloads {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem clamp(1.2rem, 4vw, 2.5rem) 5rem;
  text-align: center;
}

.downloads__eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #9ec0ff;
}

.downloads h2 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  font-family: var(--font-system);
}

.downloads p {
  color: #cfdbff;
  margin: 0;
}

.download-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.download-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 68px;
  width: 100%;
  color: #f4f7ff;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(167, 147, 255, 0.75);
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #5c47c8, #6a56d8);
  box-shadow: 0 10px 26px rgba(45, 29, 103, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.download-grid.is-personalized {
  grid-template-columns: minmax(0, 360px);
  justify-content: center;
}

.download-grid.is-personalized.show-all {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.download-grid a.is-hidden {
  display: none;
}

.download-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 183, 255, 0.96);
  box-shadow: 0 14px 34px rgba(43, 26, 99, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  filter: brightness(1.05);
}

.download-grid a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.download-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  margin: 0;
  fill: currentColor;
  opacity: 0.98;
}

.download-grid strong {
  display: block;
  font-size: 1.25rem;
  margin: 0;
  letter-spacing: 0.01em;
}

.other-downloads-toggle {
  margin-top: 0.95rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d2dcff;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.other-downloads-toggle:hover {
  color: #f4f7ff;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 clamp(1rem, 4vw, 2rem);
  padding: 1rem 0 2rem;
  display: flex;
  justify-content: space-between;
  color: #9fb0da;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .feature-card {
    inset: auto;
    min-height: 80vh;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .feature-card__text,
  .feature-card__shot {
    grid-column: 1;
    grid-row: auto;
    transform: none !important;
  }

  .feature-card__shot {
    min-height: 240px;
    max-height: 46vh;
    max-width: 100%;
  }

  .feature-scroll {
    height: 480vh;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }

  .bulk-shot__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bulk-shot__bottombar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .bulk-shot__bottombar .chip {
    margin-left: auto;
  }

  .sticker-shot__body {
    grid-template-columns: 1fr;
  }

  .sticker-shot__sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(130, 197, 255, 0.22);
  }

  .sticker-shot__sidebar ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticker-shot__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .download-grid.is-personalized.show-all {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .progress-bar,
  .download-grid a,
  .indexing-progress__fill::after {
    transition: none;
    animation: none;
  }
}
