:root {
  color-scheme: light;
  --ink: #17110f;
  --muted: #6a5a52;
  --paper: #fff8ec;
  --warm: #f8ead1;
  --snow: #fffdf7;
  --red: #c51628;
  --red-deep: #8f101e;
  --green: #114a35;
  --green-deep: #09291f;
  --gold: #d7a946;
  --mint: #e4f2e9;
  --line: rgba(77, 46, 34, 0.16);
  --shadow: 0 24px 60px rgba(44, 21, 14, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(255, 248, 236, 0.96)),
    radial-gradient(circle at 8% 4%, rgba(197, 22, 40, 0.13), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(17, 74, 53, 0.18), transparent 30%),
    var(--paper);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(115deg, rgba(255, 253, 247, 0.1), rgba(215, 169, 70, 0.08) 38%, rgba(17, 74, 53, 0.06));
  animation: ambientShift 18s ease-in-out infinite alternate;
}

.snow-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.74) 0 1px, transparent 1.8px);
  background-size: 82px 82px, 132px 132px;
  background-position: 0 0, 28px 42px;
  animation: snowDrift 22s linear infinite;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 236, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-deep);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(17, 74, 53, 0.14);
}

nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

nav a,
.header-cta,
.button {
  text-decoration: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
}

.header-cta,
.button.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 24px rgba(197, 22, 40, 0.22);
}

.button.ghost {
  border-color: rgba(17, 74, 53, 0.2);
  background: rgba(255, 255, 255, 0.62);
  color: var(--green);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 69px);
  padding: clamp(34px, 5.5vw, 74px) clamp(18px, 6vw, 84px) clamp(42px, 5vw, 62px);
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.96) 0%, rgba(255, 248, 236, 0.88) 36%, rgba(255, 248, 236, 0.32) 68%, rgba(9, 41, 31, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.18), rgba(255, 248, 236, 0.9));
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.75rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.lead {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions,
.promise-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.promise-row {
  max-width: 680px;
}

.promise-row span {
  padding: 9px 12px;
  border: 1px solid rgba(17, 74, 53, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
}

.social-pill {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(197, 22, 40, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--red-deep);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(44, 21, 14, 0.08);
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 570px;
  animation: stageFloat 7s ease-in-out infinite;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  overflow: hidden;
  border: 12px solid #16110f;
  border-radius: 34px;
  background: #16110f;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.32) 48%, transparent 56% 100%);
  transform: translateX(-120%);
  animation: phoneShine 5.6s ease-in-out infinite;
}

.phone-frame video,
.phone-frame img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.phone-frame video {
  display: block;
  background: #16110f;
}

.seal-card,
.wish-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.seal-card {
  top: 28px;
  left: 0;
  width: 158px;
  padding: 10px;
  background: rgba(255, 253, 247, 0.92);
  animation: tinyFloat 5.8s ease-in-out infinite;
}

.seal-card img {
  border-radius: 8px;
}

.seal-card span {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.wish-card {
  right: 0;
  bottom: 42px;
  max-width: 280px;
  padding: 16px;
  background: var(--green);
  color: white;
  animation: tinyFloat 6.4s ease-in-out infinite reverse;
}

.wish-card strong,
.wish-card span {
  display: block;
}

.wish-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.scroll-cue {
  position: absolute;
  left: clamp(18px, 6vw, 84px);
  bottom: 18px;
  z-index: 1;
  color: rgba(23, 17, 15, 0.48);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.magic-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 6vw, 84px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-24px);
}

.magic-band div {
  padding: clamp(22px, 3vw, 34px);
  background: var(--green-deep);
  color: white;
  transition: transform 220ms ease, background 220ms ease;
}

.magic-band div:hover {
  transform: translateY(-3px);
  background: #103d2f;
}

.stat {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.9;
  color: var(--gold);
}

.magic-band p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  line-height: 1.35;
}

.section,
.pass,
.santa-proof,
.join,
.image-feature,
.social-proof,
.ai-section {
  padding: clamp(46px, 7vw, 88px) clamp(18px, 6vw, 84px);
}

.section-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.55fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  margin-bottom: 26px;
}

.section-copy.wide {
  display: block;
  max-width: 850px;
}

.story-grid,
.message-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.story-grid article,
.message-grid article,
.pass-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(44, 21, 14, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.story-grid article:hover,
.message-grid article:hover,
.pass-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 169, 70, 0.44);
  box-shadow: 0 22px 44px rgba(44, 21, 14, 0.13);
}

.story-grid article {
  padding: 24px;
}

.story-grid p,
.steps-list p,
.pass-copy p,
.pass-panel p,
.message-grid p,
.santa-proof p,
.join p,
.feature-copy p,
.social-proof p,
.ai-section p {
  color: var(--muted);
  line-height: 1.65;
}

.story-grid p,
.message-grid p {
  margin-top: 12px;
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 0.72fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
  background: #fffdf7;
}

.feature-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms ease;
}

.image-feature:hover .feature-image img {
  transform: scale(1.07);
}

.feature-copy p {
  max-width: 600px;
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.72;
}

.ai-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.74fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(228, 242, 233, 0.82)),
    var(--snow);
}

.ai-section::before {
  content: "";
  position: absolute;
  inset: auto clamp(18px, 6vw, 84px) 0 auto;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border: 1px solid rgba(17, 74, 53, 0.1);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(215, 169, 70, 0.16), transparent 58%),
    radial-gradient(circle at 70% 30%, rgba(197, 22, 40, 0.1), transparent 36%);
  transform: translateY(42%);
  pointer-events: none;
}

.ai-copy,
.ai-cards {
  position: relative;
  z-index: 1;
}

.ai-copy p {
  max-width: 720px;
  margin-top: 18px;
  font-size: 1.05rem;
}

.ai-cards {
  display: grid;
  gap: 12px;
}

.ai-cards article {
  padding: 18px;
  border: 1px solid rgba(17, 74, 53, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(44, 21, 14, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.ai-cards article:hover {
  transform: translateX(4px);
  border-color: rgba(215, 169, 70, 0.48);
  box-shadow: 0 22px 44px rgba(44, 21, 14, 0.12);
}

.ai-cards span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-cards p {
  margin-top: 8px;
}

.social-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 6vw, 74px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(23, 17, 15, 0.96), rgba(9, 41, 31, 0.96)),
    var(--green-deep);
  color: white;
}

.social-proof .eyebrow,
.social-proof p {
  color: rgba(255, 255, 255, 0.78);
}

.social-proof p {
  margin-bottom: 22px;
  font-size: 1.05rem;
}

.button.ghost.light {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.steps {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(248, 234, 209, 0.72));
}

.steps-list {
  display: grid;
  gap: 10px;
  max-width: 1040px;
}

.steps-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.8);
  transition: transform 220ms ease, background 220ms ease;
}

.steps-list article:hover {
  transform: translateX(4px);
  background: rgba(255, 253, 247, 0.96);
}

.steps-list span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.steps-list p {
  margin-top: 8px;
}

.pass {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 0.78fr) minmax(320px, 0.46fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(9, 41, 31, 0.96), rgba(17, 74, 53, 0.94)),
    var(--green);
  color: white;
}

.pass::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, transparent 0 28%, rgba(255, 255, 255, 0.08) 35%, transparent 43% 100%);
  transform: translateX(-60%);
  animation: lightSweep 9s ease-in-out infinite;
  pointer-events: none;
}

.pass-art,
.pass-copy,
.pass-panel {
  position: relative;
  z-index: 1;
}

.pass-art {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.pass-art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pass .eyebrow,
.pass-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.pass-copy p {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.05rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.included-grid span {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.pass-panel {
  padding: 26px;
  background: var(--snow);
  color: var(--ink);
}

.badge {
  display: inline-flex;
  width: max-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pass-panel strong {
  display: block;
  margin-top: 16px;
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.pass-panel p {
  margin: 14px 0 22px;
}

.message-grid {
  margin-top: 26px;
}

.message-grid article {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  padding: 20px;
}

.message-grid article::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms ease;
}

.message-grid article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.message-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.santa-proof {
  display: grid;
  grid-template-columns: minmax(210px, 330px) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  background: var(--warm);
}

.proof-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms ease;
}

.santa-proof:hover .proof-image img {
  transform: scale(1.06);
}

.santa-proof p {
  max-width: 720px;
  margin-top: 20px;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red-deep);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.join {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.82), rgba(255, 248, 236, 0.96)),
    radial-gradient(circle at top, rgba(215, 169, 70, 0.28), transparent 45%);
}

.join-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.join p {
  max-width: 690px;
  margin: 18px auto 0;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin: 28px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(77, 46, 34, 0.18);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 6vw, 84px);
  background: #17110f;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes snowDrift {
  to {
    background-position: 70px 420px, -90px 540px;
  }
}

@keyframes ambientShift {
  from {
    opacity: 0.45;
  }
  to {
    opacity: 0.86;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translateX(0);
  }
  to {
    transform: scale(1.08) translateX(-18px);
  }
}

@keyframes stageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes tinyFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes phoneShine {
  0%,
  62% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes lightSweep {
  0%,
  48% {
    transform: translateX(-70%);
  }
  100% {
    transform: translateX(70%);
  }
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .section-copy,
  .pass,
  .santa-proof,
  .image-feature,
  .social-proof,
  .ai-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-backdrop::after {
    background: linear-gradient(180deg, rgba(255, 248, 236, 0.95) 0%, rgba(255, 248, 236, 0.82) 52%, rgba(255, 248, 236, 0.58) 100%);
  }

  .hero-stage {
    min-height: 0;
    padding: 24px 0 30px;
  }

  .seal-card,
  .wish-card {
    position: relative;
    inset: auto;
  }

  .seal-card {
    width: min(100%, 210px);
    justify-self: start;
    margin-bottom: -26px;
  }

  .wish-card {
    justify-self: end;
    margin-top: -22px;
  }

  .phone-frame {
    transform: none;
  }

  .magic-band,
  .story-grid,
  .message-grid,
  .included-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .pass-art {
    max-width: 620px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 13px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .phone-frame {
    width: min(100%, 320px);
    border-width: 10px;
    border-radius: 28px;
  }

  .scroll-cue {
    display: none;
  }

  .steps-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

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

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