:root {
  --red: #c91f29;
  --red-dark: #9f111a;
  --ink: #171513;
  --paper: #f7f4ee;
  --white: #ffffff;
  --green: #0b6b50;
  --green-soft: #dff3e9;
  --gold: #f1c85a;
  --blue: #2556d8;
  --line: rgba(23, 21, 19, 0.14);
  --page: 1180px;
  --nav-height: 74px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  overflow: clip;
}

.page-width {
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
}

.home-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  height: var(--nav-height);
  padding: 0 max(24px, calc((100% - var(--page)) / 2));
  color: var(--white);
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.home-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(23, 21, 19, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 22px;
  font-weight: 850;
}

.brand img {
  width: 41px;
  height: 41px;
  object-fit: contain;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.home-nav.is-scrolled .nav-cta {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.fun-hero {
  position: relative;
  min-height: 720px;
  height: min(820px, calc(100svh - 18px));
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.fun-hero-image,
.fun-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fun-hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 56% 46%;
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.fun-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16, 11, 8, 0.88) 0%, rgba(16, 11, 8, 0.63) 45%, rgba(16, 11, 8, 0.12) 74%),
    linear-gradient(0deg, rgba(16, 11, 8, 0.44) 0%, transparent 40%);
}

.fun-hero-inner {
  display: flex;
  align-items: center;
  min-height: 100%;
  padding-top: var(--nav-height);
  padding-bottom: 64px;
}

.fun-hero-copy {
  width: min(690px, 61%);
}

.fun-kicker,
.fun-eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
}

.fun-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fun-kicker span {
  width: 22px;
  height: 6px;
  border-radius: 999px;
  background: var(--red);
}

.fun-hero h1,
.fun-section h2 {
  margin: 0;
  text-wrap: balance;
  font-weight: 900;
  line-height: 0.98;
}

.fun-hero h1 {
  max-width: 690px;
  font-size: 72px;
}

.fun-hero h1 em,
.fun-section h2 em {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.fun-hero-lede {
  max-width: 520px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 520;
}

.fun-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.fun-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 850;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.fun-button-red {
  background: var(--red);
  color: var(--white);
}

.fun-button-red:hover,
.fun-button-red:focus-visible {
  background: var(--red-dark);
}

.fun-button-glass {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(17, 15, 13, 0.22);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.fun-hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.fun-avatar-stack {
  display: flex;
  padding-left: 9px;
}

.fun-avatar-stack img {
  width: 42px;
  height: 42px;
  margin-left: -9px;
  border: 2px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
}

.fun-hero-proof p {
  display: grid;
  gap: 2px;
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.fun-hero-proof b {
  font-size: 13px;
}

.fun-hero-proof span {
  color: rgba(255, 255, 255, 0.7);
}

.fun-hero-sticker {
  position: absolute;
  right: max(32px, calc((100% - var(--page)) / 2));
  bottom: 62px;
  display: grid;
  width: 142px;
  height: 142px;
  place-content: center;
  transform: rotate(6deg);
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 18px 42px rgba(17, 12, 8, 0.3);
}

.fun-hero-sticker small {
  font-size: 12px;
  font-weight: 750;
}

.fun-hero-sticker b {
  font-size: 17px;
  line-height: 1.2;
}

.fun-ticker {
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.fun-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-run 30s linear infinite;
}

.fun-ticker-track > div {
  display: flex;
  align-items: center;
  height: 58px;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 850;
}

.fun-ticker-track span {
  padding-inline: 26px;
}

.fun-ticker-track i {
  color: var(--gold);
  font-style: normal;
}

.fun-section {
  position: relative;
  padding: 118px 0;
}

.fun-section h2 {
  font-size: 56px;
}

.fun-section p {
  font-size: 17px;
  line-height: 1.65;
}

.fun-eyebrow.red {
  color: var(--red);
}

.fun-eyebrow.gold {
  color: var(--gold);
}

.fun-eyebrow.light {
  color: rgba(255, 255, 255, 0.7);
}

.fun-why {
  background: var(--paper);
}

.fun-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: 88px;
}

.fun-why-copy h2 {
  max-width: 690px;
}

.fun-why-copy > p:not(.fun-eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: #5b5550;
}

.fun-chat-swap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 530px;
  min-height: 78px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.fun-chat-swap span,
.fun-chat-swap strong {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 0 22px;
  font-size: 15px;
}

.fun-chat-swap span {
  color: #827a73;
  text-decoration: line-through;
}

.fun-chat-swap strong {
  background: var(--red);
  color: var(--white);
}

.fun-chat-swap i {
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  margin-inline: -18px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-style: normal;
}

.fun-why-visual {
  position: relative;
  min-height: 600px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd4c8;
}

.fun-why-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transition: transform 700ms ease;
}

.fun-why-visual:hover > img {
  transform: scale(1.025);
}

.fun-why-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border-radius: 6px;
  background: rgba(23, 21, 19, 0.84);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.fun-why-visual figcaption small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.fun-why-visual figcaption b {
  font-size: 17px;
}

.fun-hi-sticker {
  position: absolute;
  top: 28px;
  right: 24px;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  transform: rotate(7deg);
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.fun-hi-sticker small {
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.fun-how {
  background: var(--ink);
  color: var(--white);
}

.fun-section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px 48px;
  margin-bottom: 52px;
}

.fun-section-heading .fun-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.fun-section-heading h2 {
  max-width: 720px;
}

.fun-section-heading > p:last-child {
  max-width: 330px;
  margin: 0 0 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

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

.fun-step {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
}

.fun-step-copy {
  position: relative;
  z-index: 3;
  padding: 30px;
}

.fun-step-copy > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.fun-step h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.fun-step p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.fun-step-plan {
  background: #eee5d7;
  color: var(--ink);
}

.fun-plan-picker {
  display: grid;
  gap: 9px;
  padding: 22px;
}

.fun-plan-picker > span {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  min-height: 74px;
  padding: 11px 14px;
  border: 1px solid rgba(23, 21, 19, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 160ms ease;
}

.fun-plan-picker > span:hover {
  transform: translateX(4px);
}

.fun-plan-picker i {
  grid-row: 1 / 3;
  font-size: 24px;
  font-style: normal;
}

.fun-plan-picker b {
  font-size: 14px;
}

.fun-plan-picker small {
  color: #786f67;
  font-size: 11px;
}

.fun-plan-picker .is-picked {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  transform: rotate(-1deg);
}

.fun-plan-picker .is-picked small {
  color: rgba(255, 255, 255, 0.72);
}

.fun-step-seat {
  background: var(--red);
  color: var(--white);
}

.fun-seat-scene {
  position: relative;
  height: 310px;
  margin: 4px 12px 0;
}

.fun-seat-table {
  position: absolute;
  top: 88px;
  left: 50%;
  display: grid;
  width: 154px;
  height: 112px;
  place-content: center;
  transform: translateX(-50%);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 20px 34px rgba(82, 4, 10, 0.25);
}

.fun-seat-table small {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
}

.fun-seat-table b {
  font-size: 24px;
}

.fun-seat-scene img {
  position: absolute;
  z-index: 2;
  width: 70px;
  height: 70px;
  border: 3px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(83, 6, 12, 0.25);
}

.seat-1 { top: 12px; left: 27px; }
.seat-2 { top: 8px; right: 28px; }
.seat-3 { top: 116px; left: 2px; }
.seat-4 { top: 114px; right: 2px; }
.seat-5 { bottom: 4px; left: 44px; }
.seat-6 { right: 45px; bottom: 2px; }

.fun-step-show {
  background: var(--green);
  color: var(--white);
}

.fun-step-show .fun-step-copy {
  background: linear-gradient(180deg, rgba(5, 38, 28, 0.78), transparent);
}

.fun-show-photo {
  position: absolute;
  inset: 0;
  margin: 0;
}

.fun-show-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 29, 22, 0.36) 15%, transparent 56%, rgba(5, 29, 22, 0.76));
  content: "";
}

.fun-show-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transition: transform 700ms ease;
}

.fun-step-show:hover .fun-show-photo img {
  transform: scale(1.035);
}

.fun-show-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 25px;
  left: 24px;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.fun-show-photo figcaption em {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.fun-what {
  background: var(--green-soft);
}

.fun-what-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: 82px;
}

.fun-what-copy > p:not(.fun-eyebrow) {
  max-width: 540px;
  margin: 24px 0 0;
  color: #42554d;
}

.fun-facts {
  display: grid;
  max-width: 550px;
  margin-top: 35px;
  border-top: 1px solid rgba(11, 107, 80, 0.24);
}

.fun-facts div {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  min-height: 79px;
  border-bottom: 1px solid rgba(11, 107, 80, 0.24);
}

.fun-facts strong {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-style: italic;
}

.fun-facts span {
  font-size: 14px;
  font-weight: 750;
}

.fun-guardrails {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.fun-guardrails span,
.fun-table-tag {
  border: 1px solid rgba(11, 107, 80, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 850;
}

.fun-guardrails span {
  padding: 9px 12px;
}

.fun-app-stage {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
}

.fun-app-stage::before {
  position: absolute;
  inset: 44px 14px 28px;
  border: 1px dashed rgba(11, 107, 80, 0.32);
  border-radius: 50%;
  content: "";
}

.fun-app-phone,
.fun-host-phone {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 8px solid var(--ink);
  border-radius: 38px;
  background: var(--ink);
  box-shadow: 0 28px 65px rgba(20, 54, 43, 0.24);
}

.fun-app-phone {
  width: 316px;
  aspect-ratio: 630 / 1400;
  transform: rotate(2deg);
}

.fun-app-phone::before,
.fun-host-phone::before {
  position: absolute;
  z-index: 3;
  top: 7px;
  left: 50%;
  width: 74px;
  height: 17px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.fun-app-phone img,
.fun-host-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fun-table-tag {
  position: absolute;
  z-index: 3;
  padding: 11px 15px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(20, 54, 43, 0.13);
  animation: tag-drift 5s ease-in-out infinite alternate;
}

.tag-lunch { top: 105px; left: 1px; transform: rotate(-5deg); }
.tag-dinner { top: 230px; right: -2px; transform: rotate(5deg); animation-delay: -1s; }
.tag-six { bottom: 170px; left: -12px; transform: rotate(4deg); animation-delay: -2s; }
.tag-hosted { right: 6px; bottom: 72px; transform: rotate(-5deg); animation-delay: -3s; }

.fun-host {
  background: var(--white);
}

.fun-host-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 88px;
}

.fun-host-stage {
  position: relative;
  display: grid;
  min-height: 710px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.fun-host-stage::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 38%;
  background: var(--red);
  content: "";
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.fun-host-phone {
  width: 300px;
  aspect-ratio: 630 / 1400;
  transform: rotate(-3deg);
  border-color: #2e2a27;
  box-shadow: 0 32px 58px rgba(0, 0, 0, 0.36);
}

.fun-host-note {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 11px;
  width: 240px;
  padding: 11px;
  transform: rotate(2deg);
  border-radius: 7px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.fun-host-note img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.fun-host-note span {
  display: grid;
  gap: 3px;
}

.fun-host-note small {
  font-size: 9px;
  font-weight: 900;
}

.fun-host-note b {
  font-size: 13px;
  line-height: 1.25;
}

.fun-host-copy > p:not(.fun-eyebrow) {
  max-width: 520px;
  margin: 25px 0 0;
  color: #5b5550;
}

.fun-host-flow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fun-host-flow span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.fun-host-flow i {
  color: var(--red);
  font-style: normal;
}

.fun-download {
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.fun-download-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  align-items: center;
  gap: 64px;
}

.fun-download-people {
  position: relative;
  min-height: 260px;
}

.fun-download-people img {
  position: absolute;
  width: 112px;
  height: 112px;
  border: 4px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(91, 0, 7, 0.2);
}

.fun-download-people img:nth-child(1) { top: 14px; left: 32px; transform: rotate(-6deg); }
.fun-download-people img:nth-child(2) { top: 6px; right: 24px; transform: rotate(7deg); }
.fun-download-people img:nth-child(3) { top: 102px; left: 50%; transform: translateX(-50%); }
.fun-download-people img:nth-child(4) { bottom: 2px; left: 7px; transform: rotate(5deg); }
.fun-download-people img:nth-child(5) { right: 1px; bottom: 0; transform: rotate(-5deg); }

.fun-download-copy h2 {
  max-width: 560px;
}

.fun-download-copy > p:not(.fun-eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.fun-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.fun-store-button {
  display: grid;
  grid-template-columns: 29px auto;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  min-height: 57px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
  transition: transform 160ms ease, background-color 160ms ease;
}

.fun-store-button:hover,
.fun-store-button:focus-visible {
  transform: translateY(-2px);
  background: #000;
}

.fun-store-logo {
  width: 27px;
  height: 27px;
  overflow: visible;
}

.fun-store-logo-apple {
  width: 29px;
  height: 29px;
}

.fun-store-button span {
  display: grid;
  align-content: center;
  min-width: 0;
}

.fun-store-button small {
  font-size: 8px;
  line-height: 1.15;
}

.fun-store-button strong {
  font-size: 17px;
  line-height: 1.1;
}

.fun-qr {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.fun-qr a,
.fun-qr img {
  width: 154px;
  height: 154px;
}

.fun-qr strong {
  font-size: 12px;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  font-size: 18px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  font-weight: 650;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.motion-ready [data-reveal="hero"],
.motion-ready [data-reveal="up"],
.motion-ready [data-reveal="step"] {
  transform: translateY(28px);
}

.motion-ready [data-reveal="left"] {
  transform: translateX(-28px);
}

.motion-ready [data-reveal="right"],
.motion-ready [data-reveal="preview"] {
  transform: translateX(28px);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.motion-ready .fun-steps [data-reveal="step"]:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready .fun-steps [data-reveal="step"]:nth-child(3) {
  transition-delay: 180ms;
}

@keyframes ticker-run {
  to { transform: translateX(-50%); }
}

@keyframes hero-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@keyframes tag-drift {
  from { margin-top: -3px; }
  to { margin-top: 5px; }
}

@media (max-width: 1050px) {
  .fun-hero h1 {
    font-size: 62px;
  }

  .fun-section h2 {
    font-size: 48px;
  }

  .fun-why-grid,
  .fun-what-grid,
  .fun-host-grid {
    gap: 52px;
  }

  .fun-step {
    min-height: 520px;
  }

  .fun-seat-scene img {
    width: 62px;
    height: 62px;
  }

  .fun-download-grid {
    gap: 34px;
  }

  .fun-download-people {
    min-width: 250px;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 66px;
  }

  .page-width {
    width: min(calc(100% - 36px), var(--page));
  }

  .home-nav {
    padding-inline: 18px;
  }

  .nav-links {
    display: none;
  }

  .home-nav {
    grid-template-columns: 1fr auto;
  }

  .fun-hero {
    height: min(780px, 100svh);
    min-height: 690px;
  }

  .fun-hero-copy {
    width: min(620px, 79%);
  }

  .fun-hero h1 {
    font-size: 56px;
  }

  .fun-hero-sticker {
    width: 122px;
    height: 122px;
  }

  .fun-section {
    padding: 92px 0;
  }

  .fun-why-grid,
  .fun-what-grid,
  .fun-host-grid {
    grid-template-columns: 1fr;
  }

  .fun-why-visual {
    min-height: 580px;
  }

  .fun-section-heading {
    grid-template-columns: 1fr;
  }

  .fun-steps {
    grid-template-columns: 1fr;
  }

  .fun-step {
    min-height: 500px;
  }

  .fun-step-plan,
  .fun-step-seat {
    display: grid;
    grid-template-columns: minmax(220px, 0.75fr) 1fr;
    align-items: center;
  }

  .fun-seat-scene {
    width: min(100%, 370px);
    margin-inline: auto;
  }

  .fun-what-copy {
    max-width: 660px;
  }

  .fun-app-stage {
    min-height: 700px;
  }

  .fun-host-stage {
    order: 2;
  }

  .fun-host-copy {
    order: 1;
  }

  .fun-download-grid {
    grid-template-columns: 0.72fr 1fr;
  }

  .fun-qr {
    grid-column: 2;
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: auto 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .page-width {
    width: min(calc(100% - 28px), var(--page));
  }

  .brand {
    gap: 8px;
    font-size: 19px;
  }

  .brand img {
    width: 37px;
    height: 37px;
    border-radius: 11px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .fun-hero {
    height: 760px;
    min-height: 0;
  }

  .fun-hero-image {
    object-position: 60% center;
  }

  .fun-hero-shade {
    background:
      linear-gradient(0deg, rgba(16, 11, 8, 0.93) 0%, rgba(16, 11, 8, 0.62) 52%, rgba(16, 11, 8, 0.1) 82%),
      linear-gradient(90deg, rgba(16, 11, 8, 0.18), transparent);
  }

  .fun-hero-inner {
    align-items: flex-end;
    padding-bottom: 42px;
  }

  .fun-hero-copy {
    width: 100%;
  }

  .fun-kicker {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .fun-hero h1 {
    max-width: 360px;
    font-size: 47px;
    line-height: 1;
  }

  .fun-hero-lede {
    max-width: 340px;
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.5;
  }

  .fun-hero-actions {
    margin-top: 21px;
  }

  .fun-button {
    min-height: 48px;
    padding-inline: 17px;
    font-size: 13px;
  }

  .fun-hero-proof {
    gap: 11px;
    margin-top: 22px;
  }

  .fun-avatar-stack img {
    width: 34px;
    height: 34px;
  }

  .fun-hero-proof p {
    font-size: 10px;
  }

  .fun-hero-proof b {
    font-size: 11px;
  }

  .fun-hero-sticker {
    top: 110px;
    right: 18px;
    bottom: auto;
    width: 100px;
    height: 100px;
  }

  .fun-hero-sticker small {
    font-size: 9px;
  }

  .fun-hero-sticker b {
    font-size: 13px;
  }

  .fun-ticker-track > div {
    height: 48px;
    font-size: 14px;
  }

  .fun-ticker-track span {
    padding-inline: 19px;
  }

  .fun-section {
    padding: 74px 0;
  }

  .fun-section h2 {
    font-size: 39px;
    line-height: 1.02;
  }

  .fun-section p {
    font-size: 15px;
    line-height: 1.55;
  }

  .fun-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .fun-why-grid,
  .fun-what-grid,
  .fun-host-grid {
    gap: 40px;
  }

  .fun-chat-swap {
    min-height: 64px;
    margin-top: 25px;
  }

  .fun-chat-swap span,
  .fun-chat-swap strong {
    min-height: 64px;
    padding: 0 13px;
    font-size: 12px;
  }

  .fun-chat-swap i {
    width: 32px;
    height: 32px;
    margin-inline: -16px;
  }

  .fun-why-visual {
    min-height: 480px;
  }

  .fun-hi-sticker {
    top: 18px;
    right: 16px;
    width: 92px;
    height: 92px;
    font-size: 23px;
  }

  .fun-section-heading {
    gap: 13px;
    margin-bottom: 30px;
  }

  .fun-section-heading > p:last-child {
    font-size: 13px;
  }

  .fun-steps {
    gap: 12px;
  }

  .fun-step,
  .fun-step-plan,
  .fun-step-seat {
    display: block;
    min-height: 500px;
  }

  .fun-step-copy {
    padding: 24px;
  }

  .fun-step-copy > span {
    margin-bottom: 17px;
  }

  .fun-step h3 {
    font-size: 25px;
  }

  .fun-plan-picker {
    padding: 10px 18px 20px;
  }

  .fun-seat-scene {
    width: min(100% - 20px, 350px);
    height: 295px;
  }

  .fun-show-photo figcaption {
    font-size: 27px;
  }

  .fun-facts {
    margin-top: 26px;
  }

  .fun-facts div {
    min-height: 68px;
  }

  .fun-facts strong {
    font-size: 32px;
  }

  .fun-app-stage {
    min-height: 640px;
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .fun-app-phone {
    width: 278px;
  }

  .fun-table-tag {
    padding: 9px 11px;
    font-size: 9px;
  }

  .tag-lunch { top: 105px; left: 0; }
  .tag-dinner { top: 210px; right: 0; }
  .tag-six { bottom: 145px; left: 0; }
  .tag-hosted { right: 0; bottom: 68px; }

  .fun-host-stage {
    min-height: 640px;
  }

  .fun-host-phone {
    width: 270px;
  }

  .fun-host-note {
    right: 12px;
    bottom: 14px;
    width: 214px;
  }

  .fun-host-flow {
    gap: 7px;
    font-size: 10px;
  }

  .fun-host-flow span {
    padding: 9px 10px;
  }

  .fun-download-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 34px;
    text-align: center;
  }

  .fun-download-people {
    width: min(100%, 330px);
    min-height: 235px;
  }

  .fun-download-people img {
    width: 98px;
    height: 98px;
  }

  .fun-download-copy {
    display: grid;
    justify-items: center;
  }

  .fun-store-row {
    justify-content: center;
  }

  .fun-qr {
    grid-column: auto;
    justify-self: center;
  }

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

  .footer-links {
    grid-column: auto;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .nav-cta {
    padding-inline: 10px;
  }

  .fun-hero h1 {
    font-size: 42px;
  }

  .fun-button-glass {
    display: none;
  }

  .fun-section h2 {
    font-size: 35px;
  }

  .fun-seat-scene img {
    width: 58px;
    height: 58px;
  }

  .fun-app-phone {
    width: 250px;
  }

  .fun-app-stage {
    min-height: 580px;
  }

  .fun-host-phone {
    width: 242px;
  }

  .fun-store-button {
    min-width: 158px;
    padding-inline: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
