:root {
  --cream: #f6efe4;
  --linen: #efe3d2;
  --sand: #e4d2ba;
  --tan: #c9b49a;
  --fur: #c4a07a;
  --ink: #4a3b32;
  --ink-soft: #6d5a4c;
  --rose: #f4a7bc;
  --blush: #f3c5cf;
  --dusty: #e8b4c4;
  --mint: #9fd8c2;
  --mint-deep: #7ec3ab;
  --sky: #8ec8e8;
  --pacifier: #7eb8d8;
  --yellow: #f7e27c;
  --white: #fffdf8;
  --shadow: 0 18px 40px rgba(74, 59, 50, 0.12);
  --shadow-soft: 0 10px 24px rgba(74, 59, 50, 0.08);
  --display: "Baloo 2", "Grandstander", "Trebuchet MS", sans-serif;
  --head: "Grandstander", "Baloo 2", sans-serif;
  --body: "Quicksand", "Segoe UI", sans-serif;
  --nav-h: 86px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(243, 197, 207, 0.55), transparent 58%),
    radial-gradient(800px 480px at 88% 12%, rgba(142, 200, 232, 0.32), transparent 60%),
    radial-gradient(700px 520px at 50% 100%, rgba(159, 216, 194, 0.28), transparent 62%),
    linear-gradient(180deg, #f8f1e6 0%, #f3e6d6 42%, #f6efe4 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  animation: blob-drift 22s ease-in-out infinite;
}

.blob-rose {
  width: 320px;
  height: 320px;
  background: #f4a7bc;
  top: 8%;
  left: -60px;
}

.blob-mint {
  width: 280px;
  height: 280px;
  background: #9fd8c2;
  right: -40px;
  top: 28%;
  animation-delay: -7s;
}

.blob-sky {
  width: 360px;
  height: 360px;
  background: #8ec8e8;
  left: 30%;
  bottom: -80px;
  animation-delay: -13s;
}

.blob-cream {
  width: 240px;
  height: 240px;
  background: #fff8ea;
  right: 22%;
  top: 60%;
  animation-delay: -3s;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 55%, rgba(201, 180, 154, 0.18) 100%);
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 200, 232, 0.28), transparent 68%);
  transform: translate(-200px, -200px);
  transition: transform 0.12s linear;
  z-index: 1;
}

.floaters span {
  position: absolute;
  display: block;
  pointer-events: none;
  animation: floater-bob 9s ease-in-out infinite;
}

.floater-star {
  width: 14px;
  height: 14px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  filter: drop-shadow(0 4px 8px rgba(247, 226, 124, 0.5));
}

.floater-cloud {
  width: 54px;
  height: 22px;
  background: #fffdf8;
  border-radius: 20px;
  box-shadow: 12px -8px 0 #fffdf8, -14px -4px 0 #fffdf8;
  opacity: 0.7;
}

.floater-heart {
  width: 16px;
  height: 16px;
  background: var(--rose);
  transform: rotate(-45deg);
  border-radius: 2px;
  opacity: 0.7;
}

.floater-heart::before,
.floater-heart::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--rose);
  border-radius: 50%;
}

.floater-heart::before { top: -8px; left: 0; }
.floater-heart::after { top: 0; left: 8px; }

.mobile-hang {
  position: absolute;
  width: 70px;
  opacity: 0.78;
  transform-origin: top center;
  animation: hang-sway 6.5s ease-in-out infinite;
}

.hang-a { top: 0; left: 7%; width: 64px; }
.hang-b { top: 0; right: 12%; width: 74px; animation-delay: -2s; }
.hang-c { top: 0; left: 46%; width: 54px; animation-delay: -4s; }

.wordmark {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
  -webkit-text-stroke: 5px #fffdf8;
  paint-order: stroke fill;
  filter: drop-shadow(0 4px 0 rgba(255, 253, 248, 0.9)) drop-shadow(0 8px 10px rgba(74, 59, 50, 0.12));
}

.wordmark.xl {
  display: inline-block;
  font-size: clamp(2.7rem, 7.2vw, 6.2rem);
  -webkit-text-stroke: 8px #fffdf8;
  overflow-wrap: anywhere;
}

.wordmark.sm {
  font-size: 1.35rem;
  -webkit-text-stroke: 3px #fffdf8;
}

.c-baby,
.c-on { color: var(--rose); }
.c-ape { color: var(--mint-deep); }
.c-fone { color: var(--pacifier); }

.nav,
main,
footer {
  position: relative;
  z-index: 2;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--nav-h);
  padding: 12px 4vw;
  background: rgba(246, 239, 228, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 180, 154, 0.28);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav.is-tight {
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-soft);
}

.brand,
.brand.tiny {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 0 0 3px #fffdf8, 0 8px 16px rgba(74, 59, 50, 0.12);
  animation: badge-breathe 4s ease-in-out infinite;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand .wordmark {
  font-size: 1.45rem;
}

.brand-ticker {
  font-family: var(--head);
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: #fffdf8;
  color: var(--ink);
  transform: translateY(-2px);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-chip {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fffdf8;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.icon-chip img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.icon-chip:hover {
  transform: translateY(-3px) rotate(-6deg);
  box-shadow: var(--shadow);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fffdf8;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  display: block;
}

main {
  padding: 0 4vw 80px;
}

.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  background: rgba(255, 253, 248, 0.8);
  border-radius: 999px;
  font-family: var(--head);
  font-size: 0.86rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}

.sol-mark {
  height: 20px;
  width: 20px;
  border-radius: 50%;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

.hero-title {
  position: relative;
  margin-bottom: 18px;
}

.title-row {
  display: block;
}

.tape {
  position: absolute;
  font-family: var(--head);
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(247, 226, 124, 0.88);
  color: var(--ink);
  padding: 6px 14px;
  box-shadow: 0 6px 0 rgba(74, 59, 50, 0.08);
  animation: tape-wiggle 5s ease-in-out infinite;
}

.tape-a {
  left: 6%;
  top: -12px;
  transform: rotate(-8deg);
}

.tape-b {
  right: 4%;
  bottom: -8px;
  background: rgba(159, 216, 194, 0.9);
  animation-delay: -2.2s;
  transform: rotate(7deg);
}

.lead {
  font-family: var(--head);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.sublead {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.ca-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fffdf8;
  border-radius: 999px;
  padding: 8px 8px 8px 12px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
  border: 2px dashed rgba(201, 180, 154, 0.7);
}

.ca-live {
  font-family: var(--head);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--blush);
  color: var(--ink);
  border-radius: 999px;
  padding: 4px 8px;
}

.ca-pill code {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.92rem;
}

.ca-pill button {
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 7px 12px;
  font-family: var(--head);
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 20px;
  border-radius: 999px;
  border: 3px solid #fffdf8;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.btn-buy {
  background: linear-gradient(180deg, #b8ead4, #7ec3ab);
  color: var(--ink);
}

.btn-ghost {
  background: #fffdf8;
}

.btn:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 22px 36px rgba(74, 59, 50, 0.16);
}

.hero-mascot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.glow-screen {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(126, 184, 216, 0.7), rgba(244, 167, 188, 0.15) 70%, transparent 80%);
  filter: blur(8px);
  animation: screen-pulse 3.4s ease-in-out infinite;
}

.plush-ring {
  width: min(460px, 92%);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 14px;
  background:
    repeating-radial-gradient(circle at 30% 20%, rgba(255, 253, 248, 0.4) 0 8px, transparent 8px 16px),
    linear-gradient(160deg, #fffdf8, #f3c5cf 55%, #e4d2ba);
  box-shadow: var(--shadow), inset 0 0 0 6px rgba(255, 253, 248, 0.7);
  animation: mascot-float 5.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.plush-pad {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #e8d3b6;
}

.plush-pad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mascot-note {
  position: absolute;
  bottom: 18px;
  right: 8%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fffdf8;
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--head);
  box-shadow: var(--shadow);
  animation: note-pop 3.8s ease-in-out infinite;
}

.note-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7ec3ab;
  box-shadow: 0 0 0 0 rgba(126, 195, 171, 0.6);
  animation: live-ping 1.6s ease-out infinite;
}

.ticker {
  margin: 8px -4vw 56px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.62);
  border-block: 2px dashed rgba(201, 180, 154, 0.55);
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: ticker-move 28s linear infinite;
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--ink-soft);
}

.ticker-track span::after {
  content: " / ";
  color: var(--rose);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.kicker {
  display: inline-block;
  font-family: var(--head);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255, 253, 248, 0.8);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.about,
.howtobuy,
.chart,
.joinus {
  padding: 36px 0 20px;
}

.felt-card {
  background:
    radial-gradient(circle at 12% 0, rgba(255, 253, 248, 0.9), transparent 40%),
    linear-gradient(180deg, #fffaf1, #f3e7d6);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 2px dashed rgba(201, 180, 154, 0.7);
  position: relative;
}

.felt-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 22px;
  border: 1px solid rgba(255, 253, 248, 0.7);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.story-card h3,
.trait h3,
.step h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.story-card p,
.trait p,
.step p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}

.trait-col {
  display: grid;
  gap: 16px;
}

.trait {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
}

.trait-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  box-shadow: inset 0 -4px 0 rgba(74, 59, 50, 0.06);
}

.trait-icon img,
.trait-icon svg {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.trait-icon.mint { background: #d8f3e8; }
.trait-icon.rose { background: #f8dce4; }
.trait-icon.sky { background: #d7eef8; }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  min-height: 100%;
}

.block-num {
  position: absolute;
  top: -14px;
  left: 18px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.3rem;
  box-shadow: 0 6px 0 rgba(74, 59, 50, 0.08);
  transform: rotate(-8deg);
}

.step:nth-child(2) .block-num { background: var(--mint); }
.step:nth-child(3) .block-num { background: var(--sky); }
.step:nth-child(4) .block-num { background: var(--rose); }

.step-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fffdf8;
  display: grid;
  place-items: center;
  margin: 12px 0 14px;
}

.step-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.sol-step img {
  width: 34px;
  height: 34px;
}

.text-link {
  font-family: var(--head);
  font-weight: 700;
  color: var(--pacifier);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tablet {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(180deg, #f4c9d4, #e8b4c4 40%, #d9a7b8);
  border-radius: 36px;
  padding: 14px 14px 22px;
  box-shadow: var(--shadow);
}

.tablet-bezel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px 12px;
  color: #fffdf8;
  font-family: var(--head);
}

.bezel-dot,
.bezel-cam {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.7);
}

.bezel-cam {
  box-shadow: 0 0 0 4px rgba(74, 59, 50, 0.08);
}

.tablet-screen {
  background: #1a1410;
  border-radius: 22px;
  overflow: hidden;
  min-height: 560px;
  position: relative;
}

.tablet-screen iframe {
  width: 100%;
  height: 560px;
  border: 0;
  background: #111;
}

.banner-plate {
  margin: 0 auto 28px;
  max-width: 1180px;
  padding: 14px;
  background: #f7efe3;
  border-radius: 40px;
  box-shadow: var(--shadow);
  border: 3px dashed rgba(201, 180, 154, 0.75);
  position: relative;
}

.banner-plate::before,
.banner-plate::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px #fffdf8;
}

.banner-plate::before { top: 18px; left: 22px; }
.banner-plate::after { top: 18px; right: 22px; background: var(--sky); }

.banner-plate img {
  width: 100%;
  border-radius: 28px;
  animation: banner-glow 7s ease-in-out infinite;
}

.join-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.join-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 78px;
  background: #fffdf8;
  border-radius: 22px;
  font-family: var(--head);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 253, 248, 0.9);
  transition: transform 0.22s ease;
}

.join-card img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.join-card:hover {
  transform: translateY(-5px) rotate(-1.5deg);
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 4vw 36px;
  color: var(--ink-soft);
}

.foot .brand-badge {
  width: 40px;
  height: 40px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: none;
}

.reveal.is-in {
  animation: rise-in 0.8s ease forwards;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -24px) scale(1.12); }
}

@keyframes hang-sway {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(7deg); }
}

@keyframes floater-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

@keyframes badge-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes screen-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes tape-wiggle {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(-3deg); }
}

.tape-b {
  animation-name: tape-wiggle-b;
}

@keyframes tape-wiggle-b {
  0%, 100% { transform: rotate(7deg); }
  50% { transform: rotate(2deg); }
}

@keyframes note-pop {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-6px) rotate(-3deg); }
}

@keyframes live-ping {
  0% { box-shadow: 0 0 0 0 rgba(126, 195, 171, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(126, 195, 171, 0); }
}

@keyframes ticker-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes banner-glow {
  0%, 100% { filter: saturate(1); }
  50% { filter: saturate(1.12) brightness(1.03); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .steps,
  .join-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 4vw;
    flex-direction: column;
    background: #fffdf8;
    padding: 12px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu-btn {
    display: flex;
  }

  .hero-mascot {
    min-height: 380px;
    order: -1;
  }

  .plush-ring {
    width: min(340px, 80%);
  }

  .foot {
    flex-direction: column;
    text-align: center;
  }

  .tablet-screen,
  .tablet-screen iframe {
    min-height: 420px;
  }

  .tablet-screen iframe {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .brand-copy {
    display: none;
  }

  .wordmark.xl {
    font-size: 2.6rem;
    -webkit-text-stroke: 5px #fffdf8;
  }

  .tape {
    position: static;
    display: inline-block;
    margin: 8px 6px 0 0;
    transform: none;
  }

  .mobile-hang {
    display: none;
  }
}

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

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