:root {
  --page-bg: #fff8ef;
  --page-glow: #ffe4b7;
  --surface: #ffffff;
  --surface-soft: #fff2f7;
  --text: #43324d;
  --muted: #6f6078;
  --accent-pink: #ff8db3;
  --accent-yellow: #ffd467;
  --accent-mint: #9ce7cf;
  --accent-blue: #b9dbff;
  --button-green: #52b96f;
  --button-green-strong: #309457;
  --shadow: 0 24px 60px rgba(67, 50, 77, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Aptos", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 212, 103, 0.35), transparent 22%),
    linear-gradient(180deg, var(--page-bg) 0%, #fffdf8 48%, #fff4f8 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -4rem;
  left: -6rem;
  background: var(--page-glow);
}

body::after {
  right: -6rem;
  bottom: 4rem;
  background: rgba(156, 231, 207, 0.55);
}

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

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

.page-shell {
  position: relative;
  z-index: 1;
}

.hero-section,
.surprise-section {
  padding: 1.5rem;
}

.hero-section {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.hero-card,
.surprise-card {
  width: min(100%, 72rem);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  gap: 1.75rem;
  padding: 1.25rem;
}

.hero-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 22rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.85), transparent 35%),
    linear-gradient(160deg, var(--accent-pink), var(--accent-yellow) 52%, var(--accent-mint));
  padding: 1rem;
}

.hero-orbit {
  position: absolute;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  animation: float 7s ease-in-out infinite;
}

.hero-orbit-left {
  top: 0.9rem;
  left: -2rem;
}

.hero-orbit-right {
  right: -1.5rem;
  bottom: 1.25rem;
  animation-delay: -2.5s;
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 14rem;
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.65)),
    rgba(255, 255, 255, 0.75);
  border: 5px solid rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 0 0 1px rgba(67, 50, 77, 0.08);
}

.hero-frame.is-placeholder {
  border-style: dashed;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.photo-status {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(67, 50, 77, 0.12);
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 0.5rem 0.35rem 0.75rem;
}

.eyebrow,
.surprise-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
}

h1,
h2 {
  margin: 0;
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", "Segoe UI", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 5.25rem);
}

h2 {
  font-size: clamp(2.2rem, 7vw, 4rem);
}

.intro-copy,
.surprise-copy {
  margin: 0;
  max-width: 32rem;
  font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--muted);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  width: fit-content;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(67, 50, 77, 0.08);
  font-weight: 800;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  transform: translateY(-2px);
}

.scroll-arrow {
  width: 0.7rem;
  height: 0.7rem;
  border-right: 3px solid var(--accent-pink);
  border-bottom: 3px solid var(--accent-pink);
  transform: rotate(45deg);
  animation: bob 1.8s ease-in-out infinite;
}

.surprise-section {
  padding-top: 0;
  padding-bottom: 3rem;
}

.surprise-card {
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.92), transparent 36%),
    linear-gradient(180deg, var(--surface-soft), #ffffff);
}

.surprise-card > * + * {
  margin-top: 1rem;
}

.dollar-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  margin-top: 1.5rem;
  width: min(58vw, 13rem);
  aspect-ratio: 1;
  border-radius: 50%;
  transition: transform 180ms ease, filter 180ms ease;
}

.dollar-button:hover,
.dollar-button:focus-visible {
  transform: translateY(-4px) scale(1.02);
  filter: saturate(1.06);
}

.dollar-shadow,
.dollar-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.dollar-shadow {
  transform: translateY(0.6rem);
  background: rgba(67, 50, 77, 0.14);
  filter: blur(8px);
}

.dollar-face {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(180deg, var(--button-green), var(--button-green-strong));
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.2),
    0 18px 34px rgba(48, 148, 87, 0.26);
}

.dollar-face::before,
.dollar-face::after {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.35);
}

.dollar-face::after {
  width: 58%;
  height: 58%;
}

.dollar-mark {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", "Segoe UI", sans-serif;
  font-size: clamp(4rem, 15vw, 6.8rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 6px 16px rgba(25, 95, 50, 0.35);
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(4px);
  }
}

@media (min-width: 860px) {
  .hero-section,
  .surprise-section {
    padding: 2rem;
  }

  .hero-card {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
    gap: 2rem;
    padding: 1.4rem;
  }

  .hero-copy {
    padding: 1rem 1rem 1rem 0.5rem;
  }

  .hero-frame {
    min-height: 0;
  }

  .surprise-card {
    padding: 3.25rem 2rem 3.5rem;
  }
}
