:root {
  color-scheme: light;
  --ink: #1a1714;
  --gold: #c4900a;
  --gold-dark: #8d6403;
  --clay: #b85a32;
  --palm: #3d8b5e;
  --paper: #f8f5ee;
  --soft: #f1ece2;
  --line: #e8e4dd;
  --muted: #807870;
}

[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f7efe3;
  --gold: #d4a326;
  --gold-dark: #f2c85b;
  --clay: #d4754a;
  --palm: #66b883;
  --paper: #11100e;
  --soft: #1b1815;
  --line: #332d25;
  --muted: #b8ab99;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  background: var(--paper);
  color: var(--ink);
  transition: background 240ms ease, color 240ms ease;
}

[data-theme="dark"] body {
  background: #11100e !important;
  color: #f7efe3 !important;
}

::selection {
  background: rgba(196, 144, 10, 0.22);
}

body.modal-open {
  overflow: hidden;
}

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

@keyframes tinyBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(-5px) scale(1.02);
  }
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 90, 50, 0.24);
  }
  70% {
    box-shadow: 0 0 0 1rem rgba(184, 90, 50, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(184, 90, 50, 0);
  }
}

@keyframes shimmerLine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}

a,
button {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

button:active,
a:active {
  transform: translateY(1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 238, 0.82);
  border-bottom: 1px solid rgba(232, 228, 221, 0.75);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(248, 245, 238, 0.95);
  box-shadow: 0 18px 50px rgba(26, 23, 20, 0.06);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-lockup strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
}

.brand-lockup small {
  display: block;
  margin-top: 0.14rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgba(26, 23, 20, 0.12);
  border-radius: 1rem;
  background: #fffaf0;
  box-shadow: 0 12px 30px rgba(196, 144, 10, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand-lockup:hover .brand-mark {
  transform: translateY(-2px) rotate(-2deg);
}

.brand-mark img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.site-header nav a:not(.brand-lockup):hover {
  color: var(--ink);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border-radius: 999px;
  padding: 0 1rem;
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
}

.nav-action-ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.nav-action-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(26, 23, 20, 0.18);
}

.theme-toggle {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 0 0.9rem;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 144, 10, 0.35);
}

.theme-toggle svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.theme-toggle-mobile {
  width: fit-content;
  margin: 0.35rem 0 0.25rem;
  padding: 0.75rem 0.95rem;
}

.mobile-toggle {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fff;
}

.mobile-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.75rem 1rem 1rem;
}

.mobile-panel.is-open {
  display: grid;
  gap: 0.25rem;
}

.mobile-panel a {
  border-radius: 0.75rem;
  padding: 0.85rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
}

.mobile-panel a:hover {
  background: var(--soft);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-section::before {
  position: absolute;
  inset: -25% -15% auto auto;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle, rgba(196, 144, 10, 0.22), transparent 62%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
}

.hero-copy {
  display: flex;
  max-width: 42rem;
  flex-direction: column;
  justify-content: center;
}

.signal-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(196, 144, 10, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  padding: 0.5rem 0.8rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.signal-pill span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--palm);
  box-shadow: 0 0 0 5px rgba(61, 139, 94, 0.11);
}

.hero-copy h1 {
  margin: 1.35rem 0 0;
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(3.15rem, 8vw, 6.9rem);
  font-weight: 950;
  line-height: 0.88;
}

.hero-copy p {
  margin: 1.45rem 0 0;
  max-width: 39rem;
  color: rgba(26, 23, 20, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 650;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 1rem;
  padding: 0 1.25rem;
  font-weight: 950;
  text-decoration: none;
}

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 20px 42px rgba(26, 23, 20, 0.18);
}

.button-primary:hover,
.nav-action-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(26, 23, 20, 0.22);
}

.button-primary svg,
.button-secondary svg {
  width: 1.1rem;
  height: 1.1rem;
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button-secondary:hover,
.nav-action-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 144, 10, 0.35);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 38rem;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  margin-top: 2.3rem;
  background: var(--line);
}

.proof-strip div {
  min-width: 0;
  background: rgba(255, 255, 255, 0.78);
  padding: 1.05rem;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 1.18rem;
  font-weight: 950;
}

.proof-strip span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 41rem;
}

.hero-art {
  position: absolute;
  right: 0;
  bottom: 2rem;
  width: min(70%, 29rem);
  overflow: hidden;
  border: 1px solid rgba(26, 23, 20, 0.08);
  border-radius: 2rem;
  background: #fbfaf4;
  box-shadow: 0 35px 90px rgba(26, 23, 20, 0.12);
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-shell {
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: min(58vw, 20rem);
  border: 9px solid var(--ink);
  border-radius: 2.4rem;
  background: var(--ink);
  box-shadow: 0 40px 90px rgba(26, 23, 20, 0.26);
  animation: softFloat 7s ease-in-out infinite;
}

.phone-screen {
  display: flex;
  min-height: 36rem;
  flex-direction: column;
  gap: 0.9rem;
  overflow: hidden;
  border-radius: 1.75rem;
  background: var(--paper);
  padding: 1rem;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.2rem;
  font-weight: 950;
}

.phone-top svg {
  width: 1.15rem;
  color: var(--palm);
}

.search-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 1rem;
  background: #fff;
  padding: 0.95rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.search-row svg {
  width: 1rem;
  color: var(--gold);
}

.listing-card {
  display: grid;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #fff;
  padding: 0.8rem;
}

.listing-card.featured {
  position: relative;
  overflow: hidden;
}

.listing-card.featured::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  animation: shimmerLine 5.8s ease-in-out infinite;
}

.listing-photo {
  min-height: 9.6rem;
  border-radius: 0.95rem;
  background:
    linear-gradient(0deg, rgba(26, 23, 20, 0.16), rgba(26, 23, 20, 0.02)),
    url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?q=80&w=800&auto=format&fit=crop") center / cover;
}

.verified-chip {
  display: inline-flex;
  margin-bottom: 0.45rem;
  border-radius: 999px;
  background: rgba(61, 139, 94, 0.12);
  padding: 0.3rem 0.55rem;
  color: var(--palm);
  font-size: 0.65rem;
  font-weight: 950;
  text-transform: uppercase;
}

.listing-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.15;
}

.listing-card p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.listing-card strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 950;
}

.unlock-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1.1rem;
  background: var(--ink);
  padding: 1rem;
  color: #fff;
}

.unlock-panel::after {
  position: absolute;
  right: 1.1rem;
  bottom: 0.65rem;
  width: 2.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  opacity: 0.75;
}

.unlock-panel small,
.unlock-panel strong {
  display: block;
}

.unlock-panel small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.unlock-panel strong {
  margin-top: 0.2rem;
  font-size: 0.88rem;
  font-weight: 900;
}

.unlock-panel svg {
  width: 1.25rem;
  color: var(--gold);
  animation: tinyBounce 2.8s ease-in-out infinite;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.mini-grid span {
  border-radius: 0.85rem;
  background: var(--soft);
  padding: 0.75rem 0.65rem;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 900;
}

.mini-grid span:hover {
  transform: translateY(-2px);
  background: rgba(196, 144, 10, 0.13);
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(232, 228, 221, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.72rem 0.9rem;
  box-shadow: 0 20px 40px rgba(26, 23, 20, 0.1);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.floating-note svg {
  width: 1rem;
  color: var(--gold);
}

.note-one {
  right: 3%;
  top: 7rem;
  animation: tinyBounce 4.2s ease-in-out infinite;
}

.note-two {
  left: 10%;
  bottom: 0.8rem;
  animation: tinyBounce 4.8s ease-in-out 0.4s infinite;
}

.purpose-band {
  padding: 2.7rem 0;
  background: var(--ink);
  color: #fff;
}

.purpose-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 3vw, 1.75rem);
  font-weight: 760;
  line-height: 1.42;
}

.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-space {
  padding: 6rem 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading span,
.trust-copy > .section-kicker,
.coverage-section .section-kicker,
.waitlist-panel .section-kicker {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading h2,
.trust-copy h2,
.coverage-section h2,
.waitlist-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 950;
  line-height: 0.95;
}

.flow-layout {
  display: grid;
  gap: 1rem;
}

.flow-step {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 1.4rem;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.flow-step:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 144, 10, 0.35);
  box-shadow: 0 26px 60px rgba(26, 23, 20, 0.08);
}

.flow-step::after {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(196, 144, 10, 0.1);
  content: "";
}

.flow-step > svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  transition: transform 240ms ease;
}

.flow-step:hover > svg {
  transform: rotate(-6deg) scale(1.08);
}

.step-count {
  position: absolute;
  top: 1.3rem;
  right: 1.4rem;
  color: rgba(26, 23, 20, 0.12);
  font-size: 3.5rem;
  font-weight: 950;
  line-height: 1;
}

.flow-step h3 {
  margin: 8rem 0 0;
  max-width: 11rem;
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 0.98;
}

.flow-step p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.trust-section {
  padding: 6rem 0;
  background: #fff;
}

.trust-copy {
  align-self: center;
}

.trust-copy p,
.coverage-section p,
.waitlist-panel p {
  margin: 1.1rem 0 0;
  color: rgba(26, 23, 20, 0.68);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.75;
}

.trust-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.trust-list div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  font-weight: 850;
}

.trust-list svg {
  width: 1.15rem;
  color: var(--palm);
}

.trust-board {
  border: 1px solid rgba(26, 23, 20, 0.1);
  border-radius: 1.6rem;
  background: var(--paper);
  padding: 1rem;
  box-shadow: 0 32px 80px rgba(26, 23, 20, 0.1);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.trust-board:hover {
  transform: translateY(-5px) rotate(0.4deg);
  box-shadow: 0 42px 100px rgba(26, 23, 20, 0.14);
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1.1rem;
  background: var(--ink);
  padding: 1rem;
  color: #fff;
}

.board-header span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 850;
}

.board-header strong {
  font-weight: 950;
}

.board-map {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1fr;
  grid-template-rows: 1fr 0.85fr;
  gap: 0.45rem;
  height: 17rem;
  margin: 1rem 0;
  overflow: hidden;
  border-radius: 1.2rem;
  background: var(--soft);
  padding: 0.45rem;
}

.board-map span {
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.75);
}

.board-map span:nth-child(1) {
  grid-row: span 2;
  background: rgba(196, 144, 10, 0.14);
}

.board-map span:nth-child(3) {
  grid-column: span 2;
  background: rgba(61, 139, 94, 0.12);
}

.pin-pin {
  position: absolute;
  left: 52%;
  top: 48%;
  width: 1rem;
  height: 1rem;
  border: 0.2rem solid #fff;
  border-radius: 999px;
  background: var(--clay);
  box-shadow: 0 0 0 0.55rem rgba(184, 90, 50, 0.14);
  animation: pulseRing 2.4s ease-out infinite;
}

.board-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 0.95rem 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.board-row strong {
  color: var(--ink);
  font-weight: 950;
}

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

.pricing-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.78);
  padding: 1.4rem;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.pricing-panel::before {
  position: absolute;
  inset: auto 1.2rem 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, rgba(196, 144, 10, 0.78), transparent);
  content: "";
  transform: translateY(3px);
  transition: transform 240ms ease;
}

.pricing-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 144, 10, 0.34);
  box-shadow: 0 30px 70px rgba(26, 23, 20, 0.09);
}

.pricing-panel:hover::before {
  transform: translateY(0);
}

.pricing-panel-dark {
  background: var(--ink);
  color: #fff;
}

.price-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 1rem;
  background: rgba(196, 144, 10, 0.13);
  color: var(--gold-dark);
}

.pricing-panel-dark .price-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.price-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.pricing-panel span {
  display: block;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-panel-dark span {
  color: rgba(255, 255, 255, 0.58);
}

.pricing-panel h3 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.pricing-panel p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}

.pricing-panel-dark p {
  color: rgba(255, 255, 255, 0.66);
}

.coverage-section {
  padding: 5rem 0;
  background: #fff;
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 0.8rem;
}

.area-cloud span {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 0.85rem 1.1rem;
  color: var(--ink);
  font-weight: 900;
  animation: tinyBounce 5.8s ease-in-out infinite;
  transition: transform 180ms ease, background 180ms ease;
}

.area-cloud span:nth-child(4n) {
  animation-delay: 0.25s;
}

.area-cloud span:nth-child(4n + 2) {
  animation-delay: 0.5s;
}

.area-cloud span:hover {
  transform: translateY(-4px) scale(1.03);
}

.area-cloud span:nth-child(2n) {
  background: rgba(61, 139, 94, 0.1);
}

.area-cloud span:nth-child(3n) {
  background: rgba(196, 144, 10, 0.13);
}

.product-strip {
  padding: 5rem 0;
}

.asset-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: #fff;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.asset-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(26, 23, 20, 0.1);
}

.asset-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: contain;
  background: #fff;
}

.asset-frame figcaption {
  border-top: 1px solid var(--line);
  padding: 1rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.waitlist-section {
  padding: 3rem 0 6rem;
}

.waitlist-panel {
  display: grid;
  gap: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6rem;
  background:
    linear-gradient(135deg, rgba(196, 144, 10, 0.18), transparent 38%),
    var(--ink);
  padding: clamp(1.4rem, 4vw, 2.5rem);
  color: #fff;
}

.waitlist-panel .section-kicker,
.waitlist-panel h2 {
  color: #fff;
}

.waitlist-panel p {
  color: rgba(255, 255, 255, 0.65);
}

.waitlist-form {
  display: grid;
  gap: 0.8rem;
}

.waitlist-form label {
  display: grid;
  gap: 0.45rem;
}

.waitlist-form label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0 0.95rem;
  color: #fff;
  font-weight: 850;
  outline: none;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.waitlist-form select option {
  color: var(--ink);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: rgba(196, 144, 10, 0.72);
  box-shadow: 0 0 0 4px rgba(196, 144, 10, 0.16);
}

.waitlist-form button {
  display: inline-flex;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 0.95rem;
  background: var(--gold);
  color: #fff;
  font-weight: 950;
}

.waitlist-form button svg {
  width: 1rem;
  height: 1rem;
}

.form-status {
  min-height: 1.25rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
  color: #fff;
}

.site-footer::before,
.site-footer::after {
  position: absolute;
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.site-footer::before {
  right: -7rem;
  top: -9rem;
  width: 24rem;
  height: 24rem;
  background: rgba(196, 144, 10, 0.16);
  animation: breathe 7s ease-in-out infinite;
}

.site-footer::after {
  left: -9rem;
  bottom: -12rem;
  width: 27rem;
  height: 27rem;
  background: rgba(61, 139, 94, 0.13);
  animation: breathe 8s ease-in-out 0.7s infinite;
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.footer-brand {
  max-width: 28rem;
}

.site-footer .brand-lockup {
  color: #fff;
}

.site-footer .brand-lockup small,
.site-footer p,
.site-footer address,
.footer-bottom {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p {
  margin: 1.1rem 0 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.7;
}

.brand-lockup-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  padding: 0.6rem 0.72rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.social-row a:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 144, 10, 0.55);
  color: #fff;
  background: rgba(196, 144, 10, 0.14);
}

.social-row svg {
  width: 1rem;
  height: 1rem;
}

.social-row b {
  display: inline-grid;
  width: auto;
  height: 1rem;
  place-items: center;
  color: currentColor;
  font-size: 0.8rem;
  font-weight: 950;
  line-height: 1;
}

.social-row a:has(b) {
  gap: 0;
}

.social-row a:has(b) span {
  display: none;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.72rem;
}

.footer-column h3 {
  margin: 0 0 0.3rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button,
.footer-column address {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 780;
  text-align: left;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-contact button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(196, 144, 10, 0.34);
  border-radius: 999px;
  background: rgba(196, 144, 10, 0.13);
  padding: 0.74rem 0.9rem;
  color: #fff;
}

.footer-contact button:hover {
  transform: translateY(-3px);
  background: rgba(196, 144, 10, 0.2);
}

.footer-contact button svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.3rem;
  font-size: 0.86rem;
  font-weight: 760;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 20, 0.62);
  backdrop-filter: blur(14px);
}

.modal-card {
  position: relative;
  width: min(100%, 38rem);
  max-height: min(88vh, 45rem);
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at 0 0, rgba(196, 144, 10, 0.18), transparent 34%),
    #fff;
  padding: clamp(1rem, 3vw, 1.4rem);
  box-shadow: 0 40px 120px rgba(26, 23, 20, 0.34);
  transform: translateY(14px) scale(0.97);
  transition: transform 220ms ease;
}

.modal-card::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.modal-card:hover {
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 144, 10, 0.22) transparent;
}

.modal-card:hover::-webkit-scrollbar {
  width: 3px;
}

.modal-card:hover::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(196, 144, 10, 0.26);
}

.contact-modal.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fff;
}

.modal-close svg {
  width: 1.1rem;
  height: 1.1rem;
}

.modal-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 0.35rem 3rem 0 0;
}

.modal-badge {
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  border-radius: 1.05rem;
  background: var(--ink);
  color: var(--gold);
  box-shadow: 0 16px 36px rgba(26, 23, 20, 0.14);
}

.modal-badge svg {
  width: 1.35rem;
  height: 1.35rem;
}

.modal-intro span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.modal-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 7vw, 3.65rem);
  font-weight: 950;
  line-height: 0.92;
}

.modal-intro p {
  margin: 0.85rem 0 0;
  color: rgba(26, 23, 20, 0.68);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
}

.modal-contact-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin: 1.2rem 0 1rem;
}

.modal-contact-strip a,
.modal-contact-strip span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: rgba(248, 245, 238, 0.72);
  padding: 0.78rem 0.9rem;
  color: rgba(26, 23, 20, 0.72);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.modal-contact-strip svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: var(--gold);
}

.modal-form {
  display: grid;
  gap: 0.72rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.modal-form label {
  display: grid;
  gap: 0.4rem;
}

.modal-form label span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: rgba(248, 245, 238, 0.72);
  padding: 0.88rem 0.95rem;
  color: var(--ink);
  font-weight: 780;
  outline: none;
}

.modal-form input {
  height: 3.05rem;
}

.modal-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.modal-form input:focus,
.modal-form textarea:focus {
  border-color: rgba(196, 144, 10, 0.62);
  box-shadow: 0 0 0 4px rgba(196, 144, 10, 0.14);
}

.modal-form button {
  display: inline-flex;
  height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 1rem;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
}

.modal-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(26, 23, 20, 0.18);
}

.modal-form button svg {
  width: 1rem;
  height: 1rem;
}

[data-theme="dark"] .site-header {
  background: rgba(17, 16, 14, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(17, 16, 14, 0.95);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] .site-header nav a:not(.brand-lockup),
[data-theme="dark"] .mobile-panel a {
  color: rgba(247, 239, 227, 0.72);
}

[data-theme="dark"] .site-header nav a:not(.brand-lockup):hover,
[data-theme="dark"] .mobile-panel a:hover {
  color: #fff7eb;
}

[data-theme="dark"] .brand-mark {
  border-color: rgba(255, 255, 255, 0.12);
  background: #fffaf0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] .nav-action-dark,
[data-theme="dark"] .button-primary,
[data-theme="dark"] .unlock-panel,
[data-theme="dark"] .purpose-band,
[data-theme="dark"] .board-header,
[data-theme="dark"] .pricing-panel-dark,
[data-theme="dark"] .waitlist-panel,
[data-theme="dark"] .site-footer,
[data-theme="dark"] .modal-badge {
  background: #070706;
  color: #fff7eb;
}

[data-theme="dark"] .nav-action-ghost,
[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .button-secondary,
[data-theme="dark"] .mobile-toggle {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: #f7efe3;
}

[data-theme="dark"] .mobile-panel {
  border-top-color: rgba(255, 255, 255, 0.08);
  background: rgba(17, 16, 14, 0.96);
}

[data-theme="dark"] .mobile-panel a:hover {
  background: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .hero-section::before {
  background: radial-gradient(circle, rgba(212, 163, 38, 0.16), transparent 62%);
}

[data-theme="dark"] .hero-copy h1,
[data-theme="dark"] .section-heading h2,
[data-theme="dark"] .trust-copy h2,
[data-theme="dark"] .coverage-section h2,
[data-theme="dark"] .waitlist-panel h2,
[data-theme="dark"] .modal-card h2 {
  color: #fff7eb;
}

[data-theme="dark"] .hero-copy p,
[data-theme="dark"] .trust-copy p,
[data-theme="dark"] .coverage-section p,
[data-theme="dark"] .modal-intro p {
  color: rgba(247, 239, 227, 0.68);
}

[data-theme="dark"] .proof-strip {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .proof-strip div,
[data-theme="dark"] .hero-art,
[data-theme="dark"] .search-row,
[data-theme="dark"] .listing-card,
[data-theme="dark"] .flow-step,
[data-theme="dark"] .trust-board,
[data-theme="dark"] .pricing-panel,
[data-theme="dark"] .asset-frame {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.055);
  color: #f7efe3;
}

[data-theme="dark"] .hero-art {
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.36);
}

[data-theme="dark"] .phone-shell {
  border-color: #050504;
  background: #050504;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.48);
}

[data-theme="dark"] .phone-screen {
  background: #15120f;
}

[data-theme="dark"] .mini-grid span,
[data-theme="dark"] .area-cloud span {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.07);
  color: #f7efe3;
}

[data-theme="dark"] .floating-note {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(17, 16, 14, 0.8);
  color: #f7efe3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .trust-section,
[data-theme="dark"] .coverage-section {
  background: #151310;
}

[data-theme="dark"] .board-map {
  background: #1e1a16;
}

[data-theme="dark"] .board-map span {
  background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .board-row {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .board-row strong,
[data-theme="dark"] .flow-step h3,
[data-theme="dark"] .pricing-panel h3,
[data-theme="dark"] .asset-frame figcaption,
[data-theme="dark"] .trust-list div,
[data-theme="dark"] .listing-card h3,
[data-theme="dark"] .listing-card strong {
  color: #fff7eb;
}

[data-theme="dark"] .pricing-panel p,
[data-theme="dark"] .flow-step p,
[data-theme="dark"] .listing-card p {
  color: rgba(247, 239, 227, 0.62);
}

[data-theme="dark"] .asset-frame figcaption {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .asset-frame img {
  background: #151310;
}

[data-theme="dark"] .waitlist-form input,
[data-theme="dark"] .waitlist-form select,
[data-theme="dark"] .modal-form input,
[data-theme="dark"] .modal-form textarea {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: #fff7eb;
}

[data-theme="dark"] .modal-contact-strip a,
[data-theme="dark"] .modal-contact-strip span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(247, 239, 227, 0.72);
}

[data-theme="dark"] .modal-form {
  border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .waitlist-form select option {
  color: #1a1714;
}

[data-theme="dark"] .modal-card {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(212, 163, 38, 0.12), transparent 38%),
    #171410;
  color: #f7efe3;
}

[data-theme="dark"] .modal-close {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #fff7eb;
}

[data-theme="dark"] .modal-form button {
  background: #f7efe3;
  color: #11100e;
}

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

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

@media (min-width: 760px) {
  .flow-layout,
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .waitlist-panel {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .footer-shell {
    grid-template-columns: 1.25fr 0.55fr 0.75fr;
    align-items: start;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 6.7rem;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .hero-section {
    padding-top: 3.8rem;
    overflow: visible;
  }

  .hero-grid {
    gap: 2.2rem;
  }

  .hero-copy h1 {
    max-width: 9.5ch;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: flex;
    min-height: auto;
    justify-content: center;
    overflow: visible;
    padding: 0.4rem 0 2.8rem;
  }

  .phone-shell {
    position: relative;
    left: auto;
    top: auto;
    width: min(82vw, 20rem);
    margin: 0 auto;
    border-width: 7px;
    border-radius: 2rem;
  }

  .phone-screen {
    min-height: 35rem;
    border-radius: 1.45rem;
  }

  .hero-art {
    display: none;
  }

  .floating-note {
    display: none;
  }

  .contact-modal {
    align-items: end;
    padding: 0.75rem;
  }

  .modal-card {
    width: 100%;
    max-height: 88vh;
    border-radius: 1.25rem;
  }

  .modal-intro {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding-right: 3rem;
  }

  .modal-card h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .modal-contact-strip {
    grid-template-columns: 1fr;
  }

  .section-space,
  .trust-section {
    padding: 4.5rem 0;
  }

  .flow-step {
    min-height: 18rem;
  }

  .flow-step h3 {
    margin-top: 5.5rem;
  }
}

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