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

html, body {
  height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  background: #050505;
  color: #f5f5f5;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

/* SNAP */
.snap {
  scroll-snap-align: start;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
}

.hero-inner {
  max-width: 900px;
  text-align: center;
}

.wordart-wrap {
  margin-bottom: 3rem;
}

.wordart {
  width: min(90vw, 720px);
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.15));
}

/* GOLD SHIMMER */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,215,0,0.6) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.hero-subline {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-subline .irony {
  color: gold;
}

.hero-footnote {
  opacity: 0.7;
  margin-bottom: 3rem;
}

.cta-primary {
  padding: 1rem 2.5rem;
  border: 1px solid gold;
  color: gold;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.cta-primary:hover {
  background: gold;
  color: #000;
}

/* TIERS */
.tier {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.tier-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.tier-copy h2 {
  font-size: 3rem;
  letter-spacing: 0.15em;
}

.tier-copy h3 {
  font-size: 1.2rem;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.tier-copy p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.tier-copy button {
  background: transparent;
  border: 1px solid gold;
  color: gold;
  padding: 0.8rem 2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.tier-copy button:hover {
  background: gold;
  color: #000;
}

/* CARD PREVIEW */
.tier-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-preview {
  width: 420px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.card-preview svg {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
