:root {
  --paper: #f3f2e9;
  --paper-deep: #eae6d8;
  --card: #fff;
  --ink: #1c1c1c;
  --body: #4a463c;
  --muted: #6b6558;
  --line: rgba(28, 28, 28, 0.1);
  --terracotta: #b04e2e;
  --gold: #e9af3a;
  --blue: #7ba8d1;
  --green: #5c8a56;
  --pink: #c9518a;
  --content: 1180px;
  --display: "Outfit", system-ui, sans-serif;
  --sans: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.container {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-inline: 24px;
}

.sr-only,
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 242, 233, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a,
.footer-links a {
  color: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--terracotta);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
}

.language-switcher button {
  min-width: 44px;
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-accent {
  background: var(--terracotta);
  box-shadow: 0 10px 20px -13px rgba(176, 78, 46, 0.95);
  color: #fff;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vw, 88px) 0 clamp(72px, 8vw, 108px);
}

.topography {
  position: absolute;
  inset: -35% -10% 0;
  background-image: repeating-radial-gradient(ellipse 110% 62% at 50% 35%, transparent 0 27px, rgba(28, 28, 28, 0.052) 27px 28px);
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 9px;
  opacity: 0.82;
}

.shape-gold {
  top: 17%;
  left: calc(50% - 540px);
  width: 34px;
  height: 34px;
  background: var(--gold);
  animation: float-left 9s ease-in-out infinite;
}

.shape-blue {
  top: 38%;
  right: calc(50% - 530px);
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--blue);
  animation: float-right 11s ease-in-out infinite;
}

@keyframes float-left {
  50% { transform: translateY(-15px) rotate(7deg); }
}

@keyframes float-right {
  50% { transform: translate(7px, -20px); }
}

.hero .container {
  position: relative;
}

.hero-copy {
  max-width: 870px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy > .eyebrow {
  justify-content: center;
}

.eyebrow i,
.color-list i,
.feature-card > i,
.app-figure figcaption i,
.hunter-row i,
.step-number i {
  display: block;
  flex: none;
  width: 11px;
  height: 11px;
  border-radius: 3px;
}

.terracotta { background: var(--terracotta) !important; }
.gold { background: var(--gold) !important; }
.blue { background: var(--blue) !important; }
.green { background: var(--green) !important; }
.pink { background: var(--pink) !important; }
.ink { background: var(--ink) !important; }

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 600;
}

.hero h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 7.2vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 0.99;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--terracotta);
  font-style: normal;
}

.hero-lede {
  max-width: 640px;
  margin: 23px auto 0;
  color: var(--body);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  max-width: 540px;
  gap: 12px;
  justify-content: center;
  margin: 30px auto 0;
}

.waitlist-fields {
  display: flex;
  gap: 9px;
}

.waitlist-form input[type="email"] {
  min-width: 0;
  min-height: 54px;
  flex: 1 1 250px;
  padding: 0 20px;
  border: 1px solid rgba(28, 28, 28, 0.18);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(28, 28, 28, 0.04);
  color: var(--ink);
}

.waitlist-form button {
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 12px 24px -15px rgba(28, 28, 28, 0.9);
  color: var(--paper);
  cursor: pointer;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.waitlist-form button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -17px rgba(28, 28, 28, 0.9);
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.community-opt-in {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding-inline: 9px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: left;
}

.community-opt-in input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--terracotta);
}

.form-status {
  max-width: 520px;
  min-height: 21px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.form-status.is-success {
  color: var(--green);
  font-weight: 600;
}

.form-status.is-error {
  color: #9b3428;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  border-bottom: 1.5px solid rgba(28, 28, 28, 0.24);
  font-size: 0.9rem;
  font-weight: 600;
}

.text-link:hover {
  color: var(--terracotta);
}

.hero-art {
  display: grid;
  grid-template-areas: "left phone right";
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 4vw, 52px);
  margin-top: clamp(46px, 7vw, 78px);
}

.polaroid {
  width: min(225px, 100%);
  margin: 0;
  padding: 11px 11px 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(28, 28, 28, 0.07), 0 26px 46px -28px rgba(28, 28, 28, 0.65);
  transition: transform 300ms cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 300ms ease;
}

.polaroid:hover {
  box-shadow: 0 10px 18px rgba(28, 28, 28, 0.09), 0 42px 65px -34px rgba(28, 28, 28, 0.66);
}

.polaroid-left {
  grid-area: left;
  justify-self: end;
  transform: rotate(-4.5deg);
}

.polaroid-left:hover { transform: rotate(-2deg) translateY(-8px); }
.polaroid-right { grid-area: right; transform: rotate(5deg); }
.polaroid-right:hover { transform: rotate(2deg) translateY(-8px); }

.polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  object-fit: cover;
}

.polaroid figcaption {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 2px 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.swatch {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 2px;
}

.phone {
  position: relative;
  width: min(270px, 76vw);
  aspect-ratio: 9 / 19;
  padding: 8px;
  border-radius: 40px;
  background: var(--ink);
  box-shadow: 0 36px 68px -31px rgba(28, 28, 28, 0.62), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.phone-hero {
  grid-area: phone;
  width: min(300px, 72vw);
  border-radius: 44px;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 33px;
  background: var(--paper);
}

.phone-notch {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 50%;
  width: 96px;
  height: 25px;
  border-radius: 0 0 14px 14px;
  background: var(--ink);
  transform: translateX(-50%);
}

.phone-hero .phone-notch {
  width: 104px;
  height: 27px;
}

.phone-status {
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  font-size: 0.58rem;
  font-weight: 600;
}

.app-title {
  padding: 8px 18px 13px;
}

.app-title small,
.setup-preview > small {
  display: block;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-title strong {
  display: block;
  margin-top: 3px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
}

.app-title span {
  color: var(--muted);
  font-size: 0.65rem;
}

.participant-pills {
  display: flex;
  gap: 7px;
  padding: 0 15px 13px;
}

.participant-pills b {
  display: flex;
  min-width: 76px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 600;
}

.participant-pills b.active {
  background: var(--ink);
  color: #fff;
}

.participant-pills i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 0 14px;
}

.mini-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
}

.camera-button {
  position: absolute;
  bottom: 19px;
  left: 50%;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.45rem;
  transform: translateX(-50%);
}

.palette-pill {
  position: absolute;
  bottom: -24px;
  left: 50%;
  display: flex;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 28px -14px rgba(28, 28, 28, 0.52);
  transform: translateX(-50%);
}

.palette-pill i,
.palette-row i {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.palette-pill i:nth-child(1), .palette-row i:nth-child(1) { background: var(--terracotta); }
.palette-pill i:nth-child(2), .palette-row i:nth-child(2) { background: var(--gold); }
.palette-pill i:nth-child(3), .palette-row i:nth-child(3) { background: var(--blue); }
.palette-pill i:nth-child(4), .palette-row i:nth-child(4) { background: var(--green); }
.palette-pill i:nth-child(5), .palette-row i:nth-child(5) { background: var(--pink); }

.photo-credit {
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.photo-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 650px;
}

.section-heading h2,
.gallery-copy h2,
.together-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.5vw, 3.35rem);
  letter-spacing: -0.032em;
  line-height: 1.04;
}

.section-heading > p:last-child,
.gallery-copy > p:last-child {
  max-width: 540px;
  margin: 16px 0 0;
  color: var(--body);
  font-size: 1.04rem;
  line-height: 1.65;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(38px, 5vw, 58px);
}

.step-card,
.feature-card,
.hunt-card,
.photo-sheet {
  border: 1px solid rgba(28, 28, 28, 0.07);
  background: #fff;
  box-shadow: 0 2px 4px rgba(28, 28, 28, 0.04), 0 24px 44px -36px rgba(28, 28, 28, 0.55);
}

.step-card {
  padding: 26px;
  border-radius: 22px;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.step-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(28, 28, 28, 0.05), 0 36px 58px -34px rgba(28, 28, 28, 0.57);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #77715f;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.step-number i {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.town-search-demo,
.color-assignment-demo,
.capture-demo {
  min-height: 150px;
  margin-bottom: 22px;
  padding: 12px;
  border: 1px solid rgba(28, 28, 28, 0.06);
  border-radius: 14px;
  background: #f7f6ef;
}

.search-line {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--muted);
  font-size: 0.76rem;
}

.town-search-demo p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 0;
  padding: 9px 12px;
  border-radius: 9px;
  background: #fff;
}

.town-search-demo strong { font-size: 0.8rem; }
.town-search-demo small { color: var(--muted); }

.color-assignment-demo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.color-assignment-demo div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
}

.color-assignment-demo i {
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.capture-demo {
  position: relative;
  background: linear-gradient(145deg, rgba(176, 78, 46, 0.72), rgba(233, 175, 58, 0.5)), url("https://images.unsplash.com/photo-1582568741935-568ca96b2056?auto=format&fit=crop&w=500&q=55") center / cover;
}

.focus-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: #fff;
  border-style: solid;
}

.top-left { top: 18px; left: 18px; border-width: 2px 0 0 2px; }
.top-right { top: 18px; right: 18px; border-width: 2px 2px 0 0; }
.bottom-left { bottom: 18px; left: 18px; border-width: 0 0 2px 2px; }
.bottom-right { right: 18px; bottom: 18px; border-width: 0 2px 2px 0; }

.capture-dot {
  position: absolute;
  bottom: 14px;
  left: 50%;
  width: 27px;
  height: 27px;
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
}

.step-card h3,
.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.step-card > p,
.feature-card p {
  margin: 0;
  color: var(--body);
  font-size: 0.9rem;
  line-height: 1.62;
}

.gallery-section {
  background: var(--ink);
  color: #fff;
}

.gallery-layout,
.together-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.gallery-copy .eyebrow,
.gallery-copy > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.photo-sheet {
  padding: 18px;
  border-radius: 24px;
  color: var(--ink);
  transform: rotate(1.5deg);
}

.photo-sheet-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 2px 3px 15px;
}

.photo-sheet-header strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
}

.photo-sheet-header span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 3px solid;
  border-radius: 7px;
  object-fit: cover;
}

.border-red { border-color: var(--terracotta) !important; }
.border-gold { border-color: var(--gold) !important; }
.border-blue { border-color: var(--blue) !important; }
.photo-sheet .photo-credit { margin-top: 14px; }

.together-layout {
  grid-template-columns: 1fr 0.85fr;
}

.together-copy h2 {
  max-width: 640px;
}

.color-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.color-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: var(--body);
  line-height: 1.55;
}

.color-list i {
  margin-top: 5px;
}

.hunt-card {
  width: min(100%, 440px);
  justify-self: end;
  padding: 27px;
  border-radius: 24px;
}

.hunt-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.hunt-card small,
.setup-preview > small {
  color: #77715f;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hunt-card h3 {
  margin: 4px 0 0;
  font-size: 1.52rem;
}

.hunt-card-header span {
  color: var(--muted);
  font-size: 0.78rem;
}

.qr-demo {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f7f6ef;
  font-size: 2.2rem;
}

.join-code {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 19px 0 16px;
  padding: 13px 14px;
  border: 1px dashed rgba(28, 28, 28, 0.2);
  border-radius: 12px;
  background: #f7f6ef;
}

.join-code span {
  flex: 1;
  color: var(--muted);
  font-size: 0.78rem;
}

.join-code strong {
  font-family: var(--display);
  letter-spacing: 0.18em;
}

.hunter-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 8px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.86rem;
}

.hunter-row strong { flex: 1; }
.hunter-row span { color: var(--muted); font-size: 0.74rem; }
.hunter-row b { font-weight: 400; }
.hunt-card > p { margin: 17px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.55; }

.features-section {
  border-block: 1px solid rgba(28, 28, 28, 0.06);
  background: var(--paper-deep);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(34px, 5vw, 54px);
}

.feature-card {
  padding: 25px;
  border-radius: 18px;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.feature-card > i {
  width: 24px;
  height: 24px;
  margin-bottom: 17px;
  border-radius: 7px;
}

.phones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 44px);
  margin-top: clamp(40px, 6vw, 62px);
}

.app-figure {
  width: min(100%, 270px);
  margin: 0 auto;
}

.app-figure figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  font-size: 0.87rem;
  font-weight: 500;
}

.towns-preview {
  padding: 0 14px;
}

.towns-preview .phone-status {
  margin-inline: -14px;
}

.mock-search {
  padding: 10px 12px;
  border-radius: 10px;
  background: #e8e7df;
  color: var(--muted);
  font-size: 0.65rem;
}

.towns-preview h3 {
  margin: 18px 0 12px;
  font-size: 1.8rem;
}

.mock-town {
  position: relative;
  display: flex;
  height: 152px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 14px;
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.mock-town::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.7));
  content: "";
}

.mock-town > * { position: relative; }
.mock-town span { display: flex; flex-direction: column; }
.mock-town b { font-family: var(--display); font-size: 1rem; }
.mock-town small { opacity: 0.8; }
.mock-town i { background: none !important; font-style: normal; font-weight: 600; }
.town-one { background-image: url("https://images.unsplash.com/photo-1582568741935-568ca96b2056?auto=format&fit=crop&w=500&q=60"); }
.town-two { background-image: url("https://images.unsplash.com/photo-1539617546058-a8f9510b464e?auto=format&fit=crop&w=500&q=60"); }

.setup-preview {
  padding: 62px 16px 20px;
  text-align: center;
}

.setup-preview h3 {
  margin: 8px 0 30px;
  font-size: 1.35rem;
}

.player-circles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.player-circles div {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px -20px rgba(28, 28, 28, 0.5);
  font-size: 0.68rem;
  font-weight: 600;
}

.player-circles i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.player-circles i.add {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--terracotta);
  background: transparent;
  color: var(--terracotta);
  font-size: 1.5rem;
  font-style: normal;
}

.setup-preview > button {
  position: absolute;
  right: 18px;
  bottom: 28px;
  left: 18px;
  min-height: 45px;
  border: 0;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
}

.screens-note {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.waitlist-section {
  padding: 0 0 clamp(72px, 9vw, 118px);
}

.waitlist-card {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 82px) clamp(24px, 6vw, 68px);
  border: 1px solid rgba(28, 28, 28, 0.07);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(28, 28, 28, 0.04), 0 42px 82px -54px rgba(28, 28, 28, 0.8);
  text-align: center;
}

.waitlist-card .topography {
  inset: -50% -20% -20%;
  opacity: 0.7;
}

.waitlist-content {
  position: relative;
}

.palette-row {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 24px;
}

.palette-row i {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.waitlist-card h2 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 5.4vw, 3.9rem);
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.waitlist-card > .waitlist-content > p {
  max-width: 560px;
  margin: 19px auto 0;
  color: var(--body);
  font-size: 1.02rem;
  line-height: 1.65;
}

.waitlist-form-light button {
  background: var(--terracotta);
  color: #fff;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.store-badges span {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 0 20px;
  border: 1px dashed rgba(28, 28, 28, 0.22);
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.site-footer {
  padding: 58px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 38px;
}

.footer-brand {
  max-width: 330px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.62;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.footer-links h2 {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  display: flex;
  min-height: 36px;
  align-items: center;
}

.footer-links .language-switcher {
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 45px;
  padding-top: 23px;
  border-top: 1px solid rgba(28, 28, 28, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  margin-left: auto;
}

.footer-palette {
  display: flex;
  gap: 3px;
}

.footer-palette i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.footer-palette i:nth-child(1) { background: var(--terracotta); }
.footer-palette i:nth-child(2) { background: var(--gold); }
.footer-palette i:nth-child(3) { background: var(--blue); }

.legal-main {
  min-height: 70vh;
  padding: clamp(65px, 9vw, 110px) 0;
}

.legal-content {
  max-width: 800px;
}

.legal-content > .eyebrow {
  margin-bottom: 14px;
}

.legal-content > h1 {
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.legal-meta {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-content h2 {
  margin: 38px 0 12px;
  font-size: 1.55rem;
}

.legal-content p,
.legal-content li {
  color: var(--body);
  line-height: 1.75;
}

.legal-content a,
.support-card a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul {
  padding-left: 22px;
}

.notice {
  padding: 18px 20px;
  border: 1px solid rgba(233, 175, 58, 0.7);
  border-radius: 14px;
  background: #fff7df;
}

.support-card {
  margin-top: 36px;
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 55px -42px rgba(28, 28, 28, 0.65);
}

.support-card h2 {
  margin-top: 0;
}

.reveal {
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.3, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(22px);
}

@media (max-width: 900px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .nav-actions {
    display: flex;
    margin-left: auto;
  }

  .menu-button {
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
  }

  .mobile-menu:not([hidden]) {
    display: flex;
    flex-direction: column;
    padding: 8px 24px 22px;
    border-top: 1px solid rgba(28, 28, 28, 0.07);
    background: var(--paper);
  }

  .mobile-menu > a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid rgba(28, 28, 28, 0.07);
    font-weight: 500;
  }

  .mobile-menu-footer {
    display: flex;
    gap: 12px;
    margin-top: 14px;
  }

  .mobile-menu-footer .button {
    flex: 1;
  }

  .shape-gold,
  .shape-blue {
    display: none;
  }

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

  .gallery-layout,
  .together-layout {
    grid-template-columns: 1fr;
  }

  .gallery-copy,
  .together-copy {
    max-width: 660px;
  }

  .photo-sheet {
    width: min(100%, 650px);
    margin: 0 auto;
  }

  .hunt-card {
    justify-self: center;
  }

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

@media (max-width: 700px) {
  .container {
    padding-inline: 18px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .waitlist-fields {
    flex-direction: column;
  }

  .waitlist-form input[type="email"] {
    width: 100%;
    flex-basis: auto;
  }

  .hero-art {
    grid-template-areas: "phone phone" "left right";
    grid-template-columns: 1fr 1fr;
    gap: 23px 14px;
  }

  .phone-hero {
    justify-self: center;
  }

  .polaroid {
    width: min(100%, 190px);
  }

  .polaroid-left {
    justify-self: end;
  }

  .polaroid-right {
    justify-self: start;
  }

  .steps-grid,
  .features-grid,
  .phones-grid {
    grid-template-columns: 1fr;
  }

  .phones-grid {
    gap: 48px;
  }

  .photo-sheet {
    padding: 12px;
  }

  .photo-grid {
    gap: 5px;
  }

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

  .footer-brand {
    max-width: 460px;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .footer-bottom p:last-child {
    width: 100%;
    margin: 6px 0 0;
  }
}

@media (max-width: 390px) {
  .brand span {
    font-size: 1rem;
  }

  .mobile-menu-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .polaroid figcaption {
    font-size: 0.62rem;
  }

  .hunt-card {
    padding: 20px;
  }
}

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

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

  .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
}
