:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f5f5f5;
  --muted: #adadad;
  --gold: #d4af37;
  --gold-soft: #f0d060;
  --cyan: #00d8ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 999px;
  --container: 1200px;
  --display-letter-spacing: -0.02em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 25%),
    radial-gradient(circle at top right, rgba(0, 216, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #050505 0%, #080808 45%, #050505 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

::selection {
  background: rgba(212, 175, 55, 0.28);
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.center {
  text-align: center;
}

.muted-text,
.section-copy,
.copy-block p,
.glass-card p,
.step p,
.timeline-card p {
  color: var(--muted);
}

.text-gradient {
  display: inline-block;
  padding-bottom: 0.08em;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero h1 .text-gradient {
  padding-right: 0.06em;
}

.eyebrow,
.step-label,
.timeline-time {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  width: min(calc(100% - 2rem), var(--container));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a,
.footer-links a,
.footer-social a,
.hero-link {
  color: var(--muted);
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.footer-social a:hover,
.hero-link:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.4rem;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  font-weight: 700;
}

.button:hover {
  transform: translateY(-1px);
}

.button-gold {
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 36px rgba(212, 175, 55, 0.22);
}

.desktop-nav,
.desktop-cta {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 999px;
}

.mobile-menu {
  display: grid;
  gap: 1rem;
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background: rgba(5, 5, 5, 0.96);
  transition: max-height 240ms ease, padding 240ms ease;
}

.mobile-menu a {
  color: var(--muted);
}

.mobile-menu.is-open {
  max-height: 320px;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  --hero-media-focus-start-x: 38%;
  --hero-media-focus-start-y: 34%;
  --hero-media-focus-end-x: 63%;
  --hero-media-focus-end-y: 34%;
  --hero-media-scale-start: 1;
  --hero-media-scale-end: 1.26;
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 7rem 1rem 4rem;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-media::before {
  background:
    linear-gradient(112deg, rgba(2, 2, 2, 0.72) 2%, rgba(2, 2, 2, 0.1) 44%, rgba(2, 2, 2, 0.64) 100%),
    radial-gradient(circle at 64% 24%, rgba(240, 208, 96, 0.2), transparent 22%),
    radial-gradient(circle at 18% 18%, rgba(0, 216, 255, 0.09), transparent 28%);
}

.hero-media::after {
  background:
    radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.46) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-media-focus-end-x) var(--hero-media-focus-end-y);
  transform-origin: var(--hero-media-focus-end-x) var(--hero-media-focus-end-y);
  transform: scale(var(--hero-media-scale-start));
  filter: saturate(0.68) contrast(1.22) brightness(0.48);
  animation: hero-cinema-zoom 22s cubic-bezier(0.2, 0.72, 0.12, 1) forwards;
}

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.5) 0%,
    rgba(5, 5, 5, 0.18) 26%,
    rgba(5, 5, 5, 0.62) 68%,
    rgba(5, 5, 5, 0.9) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 920px);
  text-align: center;
  overflow: visible;
}

.hero h1,
.section h2 {
  margin: 0;
  padding-bottom: 0.08em;
  font-family: "Inter Tight", sans-serif;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: var(--display-letter-spacing);
}

.hero h1 {
  margin-top: 0.5rem;
  font-size: clamp(3.5rem, 10vw, 7rem);
  white-space: normal;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.12em;
  row-gap: 0.06em;
  padding-inline: 0.12em 0.2em;
  overflow: visible;
}

.hero-title__copy {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
  flex-shrink: 0;
}

.hero-wordmark {
  --hero-front-y: 0em;
  --hero-front-z: 0px;
  --hero-front-scale: 1;
  --hero-front-blur: 0px;
  --hero-lead-x: 0em;
  --hero-tail-x: 0em;
  --hero-slot-width: 0.54em;
  --hero-slot-margin: 0em;
  --hero-letter-opacity: 1;
  --hero-letter-x: 0em;
  --hero-letter-y: 0em;
  --hero-letter-z: 0px;
  --hero-letter-scale: 1;
  --hero-letter-rotate-y: 0deg;
  --hero-letter-rotate-x: 0deg;
  --hero-letter-blur: 0px;
  --hero-letter-brightness: 1;
  --hero-ghost-opacity: 0;
  --hero-ghost-x: 0em;
  --hero-ghost-y: 0em;
  --hero-ghost-z: 0px;
  --hero-ghost-scale: 1;
  --hero-ghost-blur: 0px;
  --hero-sweep-opacity: 0;
  --hero-sweep-x: 0.4em;
  --hero-sweep-scale: 0.96;
  display: inline-block;
  position: relative;
  margin-right: 0;
  padding: 0.12em 0.02em 0.16em 0.14em;
  perspective: 2200px;
  isolation: isolate;
  overflow: visible;
}

.hero-wordmark::before {
  content: "";
  position: absolute;
  inset: -0.42em -0.3em -0.24em;
  background:
    radial-gradient(circle at 48% 52%, rgba(240, 208, 96, 0.26), transparent 42%),
    linear-gradient(90deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0));
  filter: blur(28px);
  opacity: 0.86;
  z-index: -1;
  pointer-events: none;
}

.hero-wordmark::after {
  content: "";
  position: absolute;
  left: -0.52em;
  top: 50%;
  width: 1.1em;
  height: 0.18em;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(240, 208, 96, 0.95), rgba(255, 255, 255, 0));
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(-0.35em, -50%, 0) scaleX(0.2);
  transform-origin: left center;
  pointer-events: none;
  z-index: 1;
}

.hero-wordmark__front {
  display: inline-flex;
  align-items: baseline;
  gap: 0.03em;
  padding-left: 0;
  padding-right: 0;
  transform-style: preserve-3d;
  overflow: visible;
  will-change: transform, filter;
  transform: translate3d(0, var(--hero-front-y), var(--hero-front-z))
    scale(var(--hero-front-scale));
  filter: blur(var(--hero-front-blur));
}

.hero-wordmark__chunk,
.hero-wordmark__letter,
.hero-wordmark__ghost {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 40px rgba(240, 208, 96, 0.22);
}

.hero-wordmark__chunk {
  position: relative;
  z-index: 2;
  will-change: transform;
}

.hero-wordmark__chunk--lead {
  padding-right: 0;
  transform: translateX(var(--hero-lead-x));
}

.hero-wordmark__chunk--tail {
  padding-right: 0;
  transform: translateX(var(--hero-tail-x));
}

.hero-wordmark__slot {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: var(--hero-slot-width);
  margin-right: var(--hero-slot-margin);
  overflow: visible;
}

.hero-wordmark__ghost,
.hero-wordmark__letter {
  grid-area: 1 / 1;
  line-height: 1;
}

.hero-wordmark__ghost {
  opacity: var(--hero-ghost-opacity);
  transform:
    translate3d(var(--hero-ghost-x), var(--hero-ghost-y), var(--hero-ghost-z))
    scale(var(--hero-ghost-scale));
  filter: blur(var(--hero-ghost-blur));
  will-change: transform, opacity, filter;
}

.hero-wordmark__letter {
  opacity: var(--hero-letter-opacity);
  transform-origin: center center;
  transform:
    translate3d(var(--hero-letter-x), var(--hero-letter-y), var(--hero-letter-z))
    scale(var(--hero-letter-scale))
    rotateY(var(--hero-letter-rotate-y))
    rotateX(var(--hero-letter-rotate-x));
  filter: blur(var(--hero-letter-blur)) brightness(var(--hero-letter-brightness));
  will-change: transform, opacity, filter;
}

.section h2 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.hero-copy {
  width: min(100%, 640px);
  margin: 1.5rem auto 2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.email-form {
  width: min(100%, 540px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.email-form input {
  min-height: 52px;
  padding: 0 1.15rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  outline: none;
  backdrop-filter: blur(12px);
}

.email-form input::placeholder {
  color: #9d9d9d;
}

.email-form input:focus {
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.email-form button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4rem;
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.form-status[data-state] {
  opacity: 1;
  transform: translateY(0);
}

.form-status[data-state="pending"] {
  color: #d4d4d4;
}

.form-status[data-state="success"] {
  color: var(--gold-soft);
}

.form-status[data-state="error"] {
  color: #ff9d9d;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.65rem;
  padding: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.hero-link:hover {
  transform: translateY(-2px);
  color: var(--gold-soft);
  opacity: 1;
}

.page-hero {
  position: relative;
  padding: 7rem 0 3rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 216, 255, 0.08), transparent 22%);
  pointer-events: none;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: var(--display-letter-spacing);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: rgba(212, 175, 55, 0.28);
}

.legal-copy {
  display: grid;
  gap: 1rem;
}

.legal-block {
  padding: 1.8rem;
}

.legal-block h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.legal-block p,
.legal-block li {
  color: var(--muted);
}

.legal-block ul {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
}

.contact-paths {
  margin-top: 3rem;
}

.contact-paths .glass-card h3,
.legal-block h3 {
  margin-top: 0;
}

.section {
  padding: 6rem 0;
}

.overflow-hidden {
  overflow: hidden;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.three-up,
.two-up {
  grid-template-columns: 1fr;
}

.glass-card,
.timeline-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.glass-card {
  padding: 1.6rem;
}

.glass-card:hover,
.timeline-card:hover {
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow:
    var(--shadow),
    0 0 38px rgba(212, 175, 55, 0.08);
}

.icon-circle,
.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.18);
  font-size: 1.4rem;
}

.icon-circle {
  margin-inline: auto;
}

.icon-tag,
.emoji {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 1.65rem;
}

.feature-layout,
.city-layout,
.community-layout {
  margin-top: 3rem;
}

.two-column {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.image-frame,
.photo-frame,
.phone-showcase {
  position: relative;
}

.image-frame::before,
.photo-frame::before,
.phone-showcase .phone-glow {
  content: "";
  position: absolute;
  inset: -1rem;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(0, 216, 255, 0.08));
  filter: blur(28px);
  z-index: 0;
}

.image-frame img,
.photo-frame img,
.phone-showcase img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.phone-showcase {
  width: min(100%, 340px);
  margin: 3rem auto 0;
}

.step-grid {
  position: relative;
  display: grid;
  gap: 1.4rem;
  margin-top: 3rem;
}

.step {
  position: relative;
  padding: 1.4rem;
  text-align: center;
}

.step-icon {
  margin-inline: auto;
}

.how-it-works-video {
  position: relative;
  width: min(100%, 420px);
  margin: 3rem auto 0;
}

.how-it-works-video__glow {
  position: absolute;
  inset: -1rem;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(0, 216, 255, 0.08));
  filter: blur(28px);
  z-index: 0;
}

.how-it-works-video__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(5, 5, 5, 0.96);
}

.how-it-works-video__media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #050505;
}

.how-it-works-video__media--desktop {
  display: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.scroll-row {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  padding: 0.25rem 0 0.75rem;
  flex-shrink: 0;
  min-width: max-content;
}

.quests-section {
  position: relative;
  overflow: hidden;
}

.quests-scroll-panel {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.quest-marquee {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.quest-marquee__track {
  --quest-marquee-gap: 1rem;
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
}

.quest-marquee__group {
  gap: var(--quest-marquee-gap);
  padding-right: var(--quest-marquee-gap);
}

.quest-marquee.is-dragging {
  cursor: grabbing;
}

.quest-marquee::before,
.quest-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(7vw, 4rem);
  pointer-events: none;
  z-index: 2;
}

.quest-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0));
}

.quest-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0));
}

.scroll-card {
  width: clamp(260px, 28vw, 320px);
  height: 280px;
  min-height: 280px;
}

.quest-card {
  --quest-image: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 280px;
  min-height: 280px;
  overflow: hidden;
  background-color: #050505;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.36) 46%, rgba(5, 5, 5, 0.92) 100%),
    var(--quest-image) center / cover no-repeat;
  backdrop-filter: none;
  border-color: rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(42, 42, 42, 0.68);
  box-shadow:
    var(--shadow),
    inset 0 -1px 0 rgba(42, 42, 42, 0.64);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.quest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.18), transparent 42%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 34%);
  z-index: 0;
}

.quest-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0) 0%,
    rgba(5, 5, 5, 0.06) 44%,
    rgba(5, 5, 5, 0.42) 78%,
    rgba(5, 5, 5, 0.74) 100%
  );
  z-index: 0;
}

.quest-card > * {
  position: relative;
  z-index: 1;
}

.quest-card:hover {
  transform: translateY(-4px);
  border-bottom-color: rgba(42, 42, 42, 0.68);
  box-shadow:
    var(--shadow),
    0 0 38px rgba(212, 175, 55, 0.08),
    inset 0 -1px 0 rgba(42, 42, 42, 0.64);
}

.quest-card h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

.quest-card p {
  margin: 0;
  color: rgba(245, 245, 245, 0.86);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

.quest-card .emoji {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.quest-card-cafe {
  --quest-image: url("https://images.unsplash.com/photo-1775360898461-9fc756e73b34?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=80&w=1600");
}

.quest-card-landmark {
  --quest-image: url("https://images.unsplash.com/photo-1722299546277-2f4bd48fefec?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=80&w=1600");
}

.quest-card-nature {
  --quest-image: url("https://images.unsplash.com/photo-1763048233838-a1febcbd8a78?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=80&w=1600");
}

.quest-card-food {
  --quest-image: url("https://images.unsplash.com/photo-1749895998199-21118fe05c67?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=80&w=1600");
}

.quest-card-gems {
  --quest-image: url("https://images.unsplash.com/photo-1761871579778-2a40fc8d1882?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=80&w=1600");
}

.quest-card-adventure {
  --quest-image: url("https://images.unsplash.com/photo-1749436787218-7d012905db15?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=80&w=1600");
}

.quest-card-nightclubs {
  --quest-image: url("assets/quest-nightclubs.svg");
}

.quest-card-arcades {
  --quest-image: url("assets/quest-arcades.svg");
}

.quest-card-boardgames {
  --quest-image: url("assets/quest-boardgames.svg");
}

.quest-card-running {
  --quest-image: url("assets/quest-running.svg");
}

.quest-card-bars {
  --quest-image: url("assets/quest-bars.svg");
}

.quest-card-cafes {
  --quest-image: url("assets/quest-cafes.svg");
}

.quest-card-gyms {
  --quest-image: url("assets/quest-gyms.svg");
}

.quest-card-events {
  --quest-image: url("assets/quest-events.svg");
}

.timeline {
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.5),
    rgba(212, 175, 55, 0.2),
    transparent
  );
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 4.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.timeline-item.active .timeline-dot {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.18);
}

.timeline-card {
  padding: 1.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.8rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.subtle {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  justify-content: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
}

.footer-social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-social [aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-copy {
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  font-size: 0.82rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

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

.js .hero-content .hero-wordmark {
  --hero-front-y: 0.01em;
  --hero-front-z: -48px;
  --hero-front-scale: 0.992;
  --hero-front-blur: 0.14px;
  --hero-lead-x: 0.54em;
  --hero-tail-x: 0em;
  --hero-slot-width: 0.54em;
  --hero-slot-margin: 0em;
  --hero-letter-opacity: 0;
  --hero-letter-x: 0em;
  --hero-letter-y: 0.2em;
  --hero-letter-z: -1240px;
  --hero-letter-scale: 0.18;
  --hero-letter-rotate-y: 0deg;
  --hero-letter-rotate-x: 0deg;
  --hero-letter-blur: 18px;
  --hero-letter-brightness: 1.14;
  --hero-ghost-opacity: 0.08;
  --hero-ghost-x: 0em;
  --hero-ghost-y: 0.14em;
  --hero-ghost-z: -540px;
  --hero-ghost-scale: 0.34;
  --hero-ghost-blur: 22px;
  --hero-sweep-opacity: 0;
  --hero-sweep-x: 0.18em;
  --hero-sweep-scale: 0.72;
}

.hero-wordmark::after {
  opacity: var(--hero-sweep-opacity);
  transform: translate3d(var(--hero-sweep-x), -50%, 0) scaleX(var(--hero-sweep-scale));
}

@media (prefers-reduced-motion: reduce) {
  .hero-wordmark::before {
    opacity: 0.38;
  }

  .js .hero-content .hero-wordmark {
    --hero-front-y: 0em;
    --hero-front-z: 0px;
    --hero-front-scale: 1;
    --hero-front-blur: 0px;
    --hero-lead-x: 0em;
    --hero-tail-x: 0em;
    --hero-slot-width: 0.54em;
    --hero-slot-margin: 0em;
    --hero-letter-opacity: 1;
    --hero-letter-x: 0em;
    --hero-letter-y: 0em;
    --hero-letter-z: 0px;
    --hero-letter-scale: 1;
    --hero-letter-rotate-y: 0deg;
    --hero-letter-rotate-x: 0deg;
    --hero-letter-blur: 0px;
    --hero-letter-brightness: 1;
    --hero-ghost-opacity: 0;
    --hero-ghost-x: 0em;
    --hero-ghost-y: 0em;
    --hero-ghost-z: 0px;
    --hero-ghost-scale: 1;
    --hero-ghost-blur: 0px;
    --hero-sweep-opacity: 0;
    --hero-sweep-x: 0.4em;
    --hero-sweep-scale: 0.96;
  }

  .hero-wordmark__front,
  .hero-wordmark__letter,
  .hero-wordmark__ghost {
    filter: none;
  }

  .hero-media img {
    animation: none;
    object-position: var(--hero-media-focus-end-x) var(--hero-media-focus-end-y);
    transform: scale(1.12);
  }

  .quest-marquee__track {
    animation: none;
  }
}

@media (min-width: 720px) {
  .hero {
    --hero-media-focus-start-x: 40%;
    --hero-media-focus-start-y: 31%;
    --hero-media-focus-end-x: 63%;
    --hero-media-focus-end-y: 31%;
    --hero-media-scale-start: 1.05;
    --hero-media-scale-end: 1.34;
  }

  .hero h1 {
    white-space: nowrap;
    flex-wrap: nowrap;
  }

  .email-form {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .email-form input {
    min-width: 0;
  }

  .three-up {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-up {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: stretch;
    text-align: left;
  }

  .footer-social {
    justify-content: flex-end;
  }
}

@keyframes hero-cinema-zoom {
  from {
    object-position: var(--hero-media-focus-start-x) var(--hero-media-focus-start-y);
    transform: scale(var(--hero-media-scale-start));
  }

  to {
    object-position: var(--hero-media-focus-end-x) var(--hero-media-focus-end-y);
    transform: scale(var(--hero-media-scale-end));
  }
}

@media (min-width: 960px) {
  .desktop-nav,
  .desktop-cta {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }

  .reverse > :first-child {
    order: 1;
  }

  .reverse > :last-child {
    order: 2;
  }

  .how-it-works-video {
    width: min(100%, 980px);
  }

  .how-it-works-video__media--mobile {
    display: none;
  }

  .how-it-works-video__media--desktop {
    display: block;
  }

  .quest-card {
    height: 360px;
    min-height: 360px;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-0.5px);
  }

  .timeline-item {
    width: 50%;
    padding-left: 0;
    margin-bottom: 3rem;
  }

  .timeline-item:nth-child(odd) {
    padding-right: 3rem;
    text-align: right;
  }

  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 3rem;
  }

  .timeline-dot {
    left: auto;
    top: 1.25rem;
  }

  .timeline-item:nth-child(odd) .timeline-dot {
    right: -25px;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: -25px;
  }
}
