:root {
  color-scheme: dark;
  --bg: #050607;
  --ink: #f8fbf6;
  --muted: #aab2a3;
  --panel: rgba(12, 15, 12, 0.78);
  --panel-strong: rgba(8, 10, 8, 0.92);
  --line: rgba(255, 255, 255, 0.14);
  --gold: #f1cf74;
  --green: #37d27b;
  --red: #eb4f5f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  background: #050607;
  color: var(--ink);
  overflow-x: hidden;
}

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

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

.cash-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.1), transparent 28rem),
    linear-gradient(145deg, #050505 0%, #101010 46%, #050505 100%);
}

.cash-background::before,
.cash-background::after {
  position: absolute;
  z-index: 0;
  width: 24rem;
  height: 10.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.7rem;
  background-color: rgba(255, 255, 255, 0.08);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 42px rgba(255, 255, 255, 0.12);
  filter: grayscale(1) brightness(0.86) contrast(1.04);
  opacity: 0.22;
  animation: note-pulse 7s ease-in-out infinite;
}

.cash-background::before {
  left: max(1rem, calc(50% - 34rem));
  top: 9rem;
  background-image: url("assets/cash-hundred-dollar.png");
  transform: rotate(-17deg);
}

.cash-background::after {
  right: max(1rem, calc(50% - 35rem));
  top: 25rem;
  animation-delay: -3s;
  background-image: url("assets/cash-one-dollar.jpg");
  transform: rotate(16deg);
}

.cash-track {
  position: absolute;
  inset: -30% -10%;
  z-index: 0;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(112deg, transparent 0 3.5rem, rgba(255, 255, 255, 0.09) 3.5rem 3.62rem, transparent 3.62rem 7rem),
    repeating-linear-gradient(18deg, transparent 0 5.5rem, rgba(255, 255, 255, 0.07) 5.5rem 5.62rem, transparent 5.62rem 11rem);
  animation: money-drift 28s linear infinite;
}

.cash-track::before,
.cash-track::after {
  position: absolute;
  width: 16rem;
  height: 7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.55rem;
  background-color: rgba(255, 255, 255, 0.07);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.1);
  content: "";
  filter: grayscale(1) brightness(0.84) contrast(1.04);
  opacity: 0.62;
  transform: rotate(-16deg);
}

.cash-track::before {
  left: 12%;
  top: 18%;
  background-image: url("assets/cash-one-dollar.jpg");
}

.cash-track::after {
  right: 10%;
  top: 62%;
  background-image: url("assets/cash-hundred-dollar.png");
  transform: rotate(17deg);
}

.cash-track-b {
  animation-duration: 42s;
  animation-direction: reverse;
  opacity: 0.36;
  transform: scale(1.25);
}

.floating-money {
  position: absolute;
  z-index: 0;
  top: -7rem;
  display: grid;
  color: rgba(255, 255, 255, 0.72);
  place-items: center;
  opacity: 0.42;
  animation: bill-fall linear infinite;
}

.floating-money img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.42rem;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
  filter: grayscale(1) brightness(0.9) contrast(1.04);
  object-fit: cover;
}

.floating-cash {
  width: 7.8rem;
  height: 3.45rem;
}

.cash-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle, transparent 0 45%, rgba(0, 0, 0, 0.72) 100%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 2rem 1.1rem 3rem;
}

.profile {
  display: grid;
  justify-items: center;
  padding: 1.4rem 0 1.1rem;
  text-align: center;
}

.brand-row {
  display: inline-grid;
  align-items: center;
  max-width: 100%;
  margin-bottom: 1.6rem;
  padding: 0.78rem 1.85rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 2.6rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand-copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(3.9rem, 14vw, 7.25rem);
  font-weight: 950;
  line-height: 0.78;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 9vw, 4.25rem);
  font-weight: 950;
  line-height: 0.9;
}

.avatar {
  width: 7.3rem;
  height: 7.3rem;
  border: 2px solid rgba(241, 207, 116, 0.72);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 0.55rem rgba(255, 255, 255, 0.06), 0 24px 50px rgba(0, 0, 0, 0.45);
}

.handle {
  margin: 1.35rem 0 0.35rem;
  color: #d7ded2;
  font-size: 1.1rem;
  font-weight: 800;
}

.bio {
  width: min(100%, 28rem);
  max-width: 28rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.quick-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
}

.quick-proof span {
  min-height: 2.15rem;
  max-width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #eff6ea;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.link-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.link-button {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) 1.35rem;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.9rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--panel);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.link-button:hover,
.link-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: var(--panel-strong);
  outline: none;
  transform: translateY(-2px);
}

.primary-link {
  border-color: rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(15, 16, 14, 0.9);
}

.link-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  overflow: hidden;
  place-items: center;
}

.link-icon img {
  width: 1.35rem;
  height: 1.35rem;
  filter: brightness(0) saturate(100%) invert(84%) sepia(41%) saturate(592%) hue-rotate(356deg) brightness(98%) contrast(92%);
  object-fit: contain;
}

.logo-icon img {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  filter: none;
  transform: scale(2.05);
}

.brand-icon img {
  filter: none;
}

.instagram-icon img {
  width: 1.42rem;
  height: 1.42rem;
  filter: brightness(0) saturate(100%) invert(54%) sepia(73%) saturate(2595%) hue-rotate(301deg) brightness(96%) contrast(94%);
}

.paypal-icon img {
  width: 1.45rem;
  height: 1.45rem;
  filter: brightness(0) saturate(100%) invert(39%) sepia(55%) saturate(1925%) hue-rotate(186deg) brightness(95%) contrast(91%);
}

.gmail-icon img {
  width: 1.55rem;
  height: 1.55rem;
  filter: none;
}

.faq-icon img {
  width: 1.55rem;
  height: 1.55rem;
}

.link-button strong,
.link-button small {
  display: block;
  min-width: 0;
}

.link-button strong {
  font-size: 1rem;
  line-height: 1.2;
}

.link-button small {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.arrow {
  color: rgba(248, 251, 246, 0.72);
}

.store-preview {
  margin-top: 2.4rem;
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

.product-card {
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  outline: none;
  transform: translateY(-2px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0.65rem;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent 58%),
    #080a08;
  object-fit: contain;
}

.product-card span,
.product-card small {
  display: block;
  min-width: 0;
}

.product-card span {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.2;
}

.product-card small {
  margin-top: 0.15rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.footer-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2rem;
  color: rgba(248, 251, 246, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-note span:not(:last-child)::after {
  padding-left: 0.7rem;
  color: var(--red);
  content: "/";
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 2.25;
}

@keyframes money-drift {
  from {
    transform: translate3d(-3%, -4%, 0) rotate(0deg);
  }

  to {
    transform: translate3d(4%, 7%, 0) rotate(4deg);
  }
}

@keyframes bill-fall {
  0% {
    transform: translate3d(0, -8vh, 0) rotate(var(--spin));
    opacity: 0;
  }

  10%,
  88% {
    opacity: 0.55;
  }

  100% {
    transform: translate3d(var(--drift), 122vh, 0) rotate(calc(var(--spin) + 90deg));
    opacity: 0;
  }
}

@keyframes note-pulse {
  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 0.72;
  }
}

@media (min-width: 680px) {
  .page-shell {
    padding-top: 3.4rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .page-shell {
    padding-inline: 0.8rem;
  }

  .link-button {
    grid-template-columns: 2.55rem minmax(0, 1fr) 1.1rem;
    gap: 0.72rem;
    padding: 0.72rem;
  }

  .link-icon {
    width: 2.55rem;
    height: 2.55rem;
  }

  .quick-proof {
    display: grid;
    width: 100%;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(3.1rem, 15vw, 4.55rem);
  }

  .brand-row {
    justify-content: center;
    padding: 0.72rem 1.2rem 0.82rem;
  }

  .bio {
    width: min(100%, 18rem);
  }

  .quick-proof {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .quick-proof span {
    width: min(100%, 19rem);
  }
}

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