:root {
  --black: #050505;
  --ink: #111111;
  --panel: #0c0c0c;
  --paper: #f7f3eb;
  --paper-2: #ede8dd;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --muted-dark: rgba(17, 17, 17, 0.58);
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(17, 17, 17, 0.12);
  --accent: #f0bf6a;
  --radius: 7px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

html.home-root {
  overflow-x: hidden;
  background: #050505;
  scrollbar-color: rgba(255, 255, 255, 0.42) #050505;
  scrollbar-width: thin;
}

html.home-root::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html.home-root::-webkit-scrollbar-track {
  background: #050505;
}

html.home-root::-webkit-scrollbar-thumb {
  border: 2px solid #050505;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
}

html.home-root body {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Geist", system-ui, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, rgba(240, 191, 106, 0.055), transparent 34%),
    linear-gradient(180deg, #050505, #0a0a0a 48%, #050505);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 90;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(var(--scroll, 0));
  transform-origin: left center;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0));
  transform: translate3d(0, var(--home-nav-shift, 0px), 0);
  transition:
    background 260ms var(--ease),
    border-color 260ms var(--ease),
    backdrop-filter 260ms var(--ease);
  will-change: transform;
}

.nav.scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(20px);
}

.wrap,
.nav-inner {
  width: min(1440px, calc(100% - 56px));
  margin: 0 auto;
}

.nav-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.brand,
.nav-links,
.nav-actions,
.button,
.chip,
.eyebrow,
label,
.meta {
  text-transform: uppercase;
}

.brand {
  font-size: 16px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.nav-links a.active {
  color: var(--white);
}

.nav-actions {
  justify-self: end;
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-login {
  font-size: 12px;
  font-weight: 800;
}

.menu-trigger {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition:
    background 220ms var(--ease),
    color 220ms var(--ease),
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

.menu-trigger::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    12px 0 0 currentColor,
    24px 0 0 currentColor,
    0 12px 0 currentColor,
    12px 12px 0 currentColor,
    24px 12px 0 currentColor,
    0 24px 0 currentColor,
    12px 24px 0 currentColor,
    24px 24px 0 currentColor;
}

.menu-trigger:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-1px);
}

.menu-trigger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.home-announcement {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  transform: translate3d(0, var(--home-bar-shift, 0px), 0);
  will-change: transform;
}

.home-announcement::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: -12px;
  border: 2px solid rgba(17, 17, 17, 0.16);
  border-top-color: rgba(17, 17, 17, 0.72);
  border-radius: 50%;
  animation: announcementSpin 1.1s linear infinite;
}

.home-announcement a {
  color: rgba(17, 17, 17, 0.62);
}

body[data-page="home"] .nav {
  inset: 50px 6px auto;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0));
}

body[data-page="home"] .nav.scrolled {
  background: rgba(5, 5, 5, 0.74);
}

body[data-page="home"] .nav-inner {
  width: calc(100% - clamp(48px, 6.3vw, 132px));
  max-width: none;
  min-height: 70px;
}

body[data-page="home"] .brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  font-size: 26px;
  text-transform: lowercase;
}

body[data-page="home"] .nav-links {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  gap: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  text-transform: none;
}

body[data-page="home"] .nav-actions {
  grid-column: 3;
  grid-row: 1;
  text-transform: none;
}

body[data-page="home"] .nav-login {
  font-size: 14px;
  text-transform: none;
}

body[data-page="home"] .nav-actions .button {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  text-transform: none;
  font-size: 13px;
}

.button,
.icon-button,
.chip {
  position: relative;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 240ms var(--ease),
    background 240ms var(--ease),
    color 240ms var(--ease),
    border-color 240ms var(--ease),
    opacity 240ms var(--ease);
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 800;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-120%);
  transition: transform 620ms var(--ease);
}

.button:hover::before {
  transform: translateX(120%);
}

.button:hover,
.icon-button:hover,
.chip:hover,
.chip.active {
  transform: translateY(-1px);
  background: var(--white);
  color: var(--black);
}

.button.dark {
  color: var(--ink);
  border-color: var(--ink);
}

.button.dark:hover {
  color: var(--white);
  background: var(--ink);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.button.ghost:hover {
  color: var(--black);
  background: var(--white);
}

.button.dark.active {
  color: var(--white);
  background: var(--ink);
}

.button:disabled,
.icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.button:disabled::before {
  display: none;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.saved-count {
  min-width: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  font-family: "Geist Mono", "JetBrains Mono", monospace;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 340ms var(--ease),
    visibility 0s linear 340ms;
}

.site-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 130;
  width: min(540px, calc(100vw - 44px));
  min-height: 100svh;
  padding: clamp(24px, 2.3vw, 34px);
  border-radius: 0 0 0 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.22);
  transform: translate3d(104%, 0, 0);
  pointer-events: none;
  visibility: hidden;
  transition:
    transform 420ms var(--ease),
    visibility 0s linear 420ms;
}

.menu-open,
.menu-open body {
  overflow: hidden;
}

.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.site-menu:target {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.site-menu:target + .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.menu-open .site-menu {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.site-menu-head {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-menu h2 {
  margin: 0;
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1;
  font-weight: 500;
  text-transform: none;
}

.site-menu-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.site-menu-login {
  font-size: 15px;
  font-weight: 600;
}

.site-menu-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.site-menu .menu-trigger {
  color: var(--ink);
}

.site-menu .menu-trigger:hover {
  background: rgba(17, 17, 17, 0.08);
}

.site-menu-kicker {
  margin: 28px 0 14px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}

.site-menu-primary {
  display: grid;
  gap: 4px;
}

.site-menu-primary a {
  width: fit-content;
  color: var(--ink);
  font-size: clamp(30px, 2.35vw, 40px);
  line-height: 1.1;
  font-weight: 500;
  text-transform: none;
  transition:
    color 220ms var(--ease),
    transform 220ms var(--ease);
}

.site-menu-primary a:hover,
.site-menu-primary a.active,
.site-menu-secondary a:hover,
.site-menu-secondary a.active {
  color: rgba(17, 17, 17, 0.58);
}

.site-menu-primary a:hover {
  transform: translateX(3px);
}

.site-menu-secondary {
  margin-top: clamp(58px, 9vh, 96px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px);
}

.site-menu-secondary div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-menu-secondary p {
  margin: 0 0 2px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.site-menu-secondary a {
  width: fit-content;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: none;
  transition: color 220ms var(--ease);
}

.page {
  opacity: 0;
  transform: translateY(12px);
  animation: pageIn 680ms var(--ease) forwards;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.home-hero {
  min-height: calc(100svh - 50px);
  margin: 50px 6px 0;
  border-radius: 10px 10px 0 0;
}

.hero.compact {
  min-height: 58svh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.home-hero .hero-media {
  transform: translate3d(0, var(--hero-shift-y, 0), 0) scale(var(--hero-media-scale, 1.03));
  transform-origin: center;
  will-change: transform;
}

.hero-media img {
  filter: saturate(0.84) contrast(1.12) brightness(0.82);
  transform: translate3d(calc(var(--mx, 0) * -9px), calc(var(--my, 0) * -9px), 0) scale(1.04);
  transition: transform 680ms var(--ease);
  animation: imageDrift 22s var(--ease) infinite alternate;
}

.home-hero .hero-media img {
  object-position: 56% center;
  filter: saturate(1.04) contrast(1.08) brightness(1);
  transform: translate3d(calc(var(--hero-pan-x, -5.25vw) + var(--mx, 0) * -8px), calc(var(--my, 0) * -7px), 0) scale(1.105);
  animation: homeHeroDrift 24s var(--ease) infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.36) 48%, rgba(5, 5, 5, 0.72)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.92));
}

.home-hero::after {
  background:
    radial-gradient(circle at 55% 42%, rgba(240, 191, 106, 0.04), transparent 34%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.22) 40%, rgba(5, 5, 5, 0.36) 66%, rgba(5, 5, 5, 0.7)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.02) 42%, rgba(5, 5, 5, 0.86));
}

.network-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.78;
  pointer-events: none;
  transform: translate3d(calc(var(--mx, 0) * 18px), calc(var(--my, 0) * 18px), 0);
  transition: transform 680ms var(--ease);
}

.network-field svg {
  width: 100%;
  height: 100%;
}

.network-line {
  stroke-dasharray: 9 16;
  animation: drift 19s linear infinite;
}

.hero-content {
  padding: 150px 0 62px;
}

.home-hero .hero-content {
  width: calc(100% - clamp(48px, 6.3vw, 132px));
  max-width: none;
  min-height: calc(100svh - 50px);
  padding: 128px 0 62px;
  display: grid;
  align-content: end;
  opacity: var(--hero-copy-opacity, 1);
  transform: translate3d(0, var(--hero-copy-y, 0), 0);
  transition: opacity 120ms linear;
  will-change: transform, opacity;
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 5.6vw, 88px);
  line-height: 1;
  font-weight: 700;
}

.home-hero .hero-copy {
  max-width: 470px;
  margin-top: 16px;
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 700;
  line-height: 1.48;
}

.hero-check {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
}

.hero-check::before {
  margin-right: 10px;
  content: "\2713";
  color: var(--white);
}

.home-hero .hero-actions {
  margin-top: 32px;
  margin-bottom: clamp(34px, 5vh, 64px);
  gap: 14px;
}

.home-hero .button {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  text-transform: none;
  font-size: 14px;
}

.home-hero .button.ghost {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-color: transparent;
  backdrop-filter: blur(16px);
}

.home-hero .hero-search {
  width: min(360px, 100%);
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.home-hero .hero-search label {
  color: rgba(255, 255, 255, 0.5);
}

.home-hero .hero-search input {
  min-height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  width: min(760px, 100%);
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-proof div {
  min-height: 50px;
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  align-content: start;
}

.hero-proof div + div {
  padding-left: 24px;
}

.hero-proof div:last-child {
  border-right: 0;
}

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

.hero-proof strong {
  font-size: 14px;
}

.hero-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 600;
}

.hero-badges {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badges span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.42);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-badges span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-badges span:nth-child(2)::before {
  background: rgba(240, 191, 106, 0.72);
}

.hero-badges span:nth-child(3)::before {
  background: rgba(240, 191, 106, 0.5);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero h1,
.page-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 1.07;
  font-weight: 600;
}

.hero-copy,
.intro-copy {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.5;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-search {
  width: min(680px, 100%);
  margin-top: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.62);
  backdrop-filter: blur(22px);
}

.hero-search-grid {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto;
  gap: 10px;
  align-items: end;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
  padding: 0 13px;
  transition:
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

textarea {
  min-height: 92px;
  padding-top: 13px;
  resize: vertical;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(240, 191, 106, 0.66);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(240, 191, 106, 0.1);
}

.section {
  padding: clamp(72px, 8vw, 108px) 0;
}

.light {
  color: var(--ink);
  background: var(--paper);
}

.warm {
  color: var(--ink);
  background: var(--paper-2);
}

.dark-section {
  color: var(--white);
  background: #050505;
}

.dark-section .intro p {
  color: var(--muted);
}

.intro {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 42px;
  align-items: end;
}

.intro h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 68px);
  line-height: 1.08;
  font-weight: 600;
}

.intro p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.55;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: space-between;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.08;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.market-shell,
.host-shell,
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.panel,
.result-panel,
.card,
.form-panel {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.7);
}

.panel,
.form-panel {
  padding: 18px;
}

.sticky {
  position: sticky;
  top: 92px;
}

.panel-form,
.stack {
  display: grid;
  gap: 12px;
}

.form-note {
  margin: -4px 0 2px;
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.42;
  text-transform: none;
}

.photo-upload input {
  min-height: auto;
  padding: 12px;
}

.photo-hint {
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  text-transform: none;
}

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

.photo-preview figure {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
}

.photo-preview img,
.listing-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-preview figcaption {
  position: absolute;
  left: 6px;
  bottom: 6px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.host-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.light label,
.warm label,
.modal label {
  color: rgba(17, 17, 17, 0.54);
}

.light input,
.light select,
.light textarea,
.warm input,
.warm select,
.warm textarea,
.modal input,
.modal select,
.modal textarea {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line-dark);
}

.light input:focus,
.light select:focus,
.light textarea:focus,
.warm input:focus,
.warm select:focus,
.warm textarea:focus,
.modal input:focus,
.modal select:focus,
.modal textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 34px;
  padding: 0 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.result-panel {
  min-height: 620px;
  padding: 20px;
}

.result-head {
  margin-bottom: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.result-head h2,
.result-head h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 600;
}

.result-head p {
  margin: 8px 0 0;
  color: var(--muted-dark);
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-card {
  position: relative;
  min-height: 560px;
  padding: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  align-content: end;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.82)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.04));
}

.process-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.04);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.process-card:hover img {
  filter: saturate(1.04) contrast(1.12);
  transform: scale(1.11);
}

.process-card span {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--accent);
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 13px;
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.08;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.feature-band {
  overflow: hidden;
}

.feature-list {
  border-top: 1px solid var(--line-dark);
}

.feature-row {
  position: relative;
  min-height: 148px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: minmax(90px, 0.18fr) minmax(0, 0.82fr) minmax(240px, 0.44fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
}

.feature-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(240, 191, 106, 0.12), transparent 44%);
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
}

.feature-row:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.feature-row > * {
  position: relative;
}

.feature-row span {
  color: var(--muted-dark);
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.feature-row h3 {
  margin: 0;
  font-size: clamp(24px, 3.1vw, 42px);
  line-height: 1.08;
  font-weight: 600;
}

.feature-row p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.5;
}

.proof-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(240, 191, 106, 0.16), transparent 32%),
    linear-gradient(180deg, #050505, #111111);
}

.proof-shell {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.proof-shell h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(36px, 5.2vw, 82px);
  line-height: 1.06;
  font-weight: 600;
}

.minimal-section {
  min-height: 92svh;
  display: grid;
  align-items: center;
  color: var(--ink);
  background: var(--paper);
}

.minimal-copy {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.minimal-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5.1vw, 74px);
  line-height: 1.06;
  font-weight: 600;
}

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

.minimal-step {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  display: grid;
  align-content: space-between;
  background: rgba(255, 255, 255, 0.45);
  transition:
    transform 420ms var(--ease),
    background 420ms var(--ease),
    box-shadow 420ms var(--ease);
  will-change: transform;
}

.minimal-step:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.12);
}

.minimal-step span {
  color: var(--muted-dark);
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 12px;
}

.minimal-step strong {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
  font-weight: 600;
}

.minimal-step em {
  max-width: 300px;
  color: var(--muted-dark);
  font-style: normal;
  font-size: 15px;
  line-height: 1.45;
}

.motion-ready .stack-scene {
  min-height: 212svh;
  padding: 0;
  align-items: start;
  overflow: hidden;
  overflow: clip;
}

.motion-ready .stack-scene > .wrap {
  position: sticky;
  top: 0;
  min-height: 100svh;
  padding: 102px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.7fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}

.motion-ready .stack-scene .minimal-copy {
  max-width: 660px;
  margin: 0;
  text-align: left;
}

.motion-ready .stack-scene .minimal-copy::after {
  content: "";
  display: block;
  width: min(420px, 100%);
  height: 2px;
  margin-top: 34px;
  background:
    linear-gradient(90deg, var(--ink) var(--scene-progress-percent, 0%), rgba(17, 17, 17, 0.14) 0);
}

.motion-ready .stack-scene .minimal-steps {
  position: relative;
  min-height: min(540px, 66svh);
  display: block;
  perspective: 1100px;
}

.motion-ready .stack-scene .minimal-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 12%;
  left: -24px;
  width: 1px;
  background: rgba(17, 17, 17, 0.16);
  transform: translateY(-50%);
}

.motion-ready .stack-scene .minimal-steps::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  width: 1px;
  height: 38%;
  background: var(--ink);
  transform: translateY(-50%) scaleY(var(--scene-progress, 0));
  transform-origin: top center;
}

.motion-ready .stack-scene .minimal-step {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  min-height: clamp(260px, 36svh, 330px);
  border-radius: 8px;
  overflow: hidden;
  opacity: var(--card-opacity, 1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, var(--card-fill, 0.58)), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    0 var(--card-shadow-y, 26px) var(--card-shadow-blur, 64px) rgba(17, 17, 17, var(--card-shadow-alpha, 0.12));
  transform: translate3d(var(--card-x, 0px), calc(-50% + var(--card-y, 0px)), 0) scale(var(--card-scale, 1));
  transform-origin: center;
  z-index: var(--card-z, 1);
}

.motion-ready .stack-scene .minimal-step::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: var(--card-sheen, 0.18);
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(240, 191, 106, 0.18), transparent 42%),
    linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.06));
}

.motion-ready .stack-scene .minimal-step > * {
  position: relative;
}

.motion-ready .stack-scene .minimal-step.is-current {
  border-color: rgba(17, 17, 17, 0.28);
}

.motion-ready .stack-scene .minimal-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.split-showcase {
  min-height: 92svh;
  display: grid;
  align-items: center;
  color: var(--white);
  background: #050505;
}

.split-showcase.alt {
  background: #0d0d0d;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.split-showcase.alt .showcase-grid {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.8fr);
}

.showcase-copy h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(36px, 4.9vw, 72px);
  line-height: 1.06;
  font-weight: 600;
}

.showcase-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.showcase-copy .button,
.closing-copy .button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  text-transform: none;
  font-size: 14px;
}

.showcase-image {
  height: min(620px, 68svh);
  border-radius: 8px;
  overflow: hidden;
  transform: translateY(42px) scale(0.96);
  transition:
    transform 900ms var(--ease),
    clip-path 900ms var(--ease);
  clip-path: inset(8% 0 8% 0);
  will-change: transform, clip-path;
}

.showcase-image.is-visible {
  transform: translateY(0) scale(1);
  clip-path: inset(0);
}

.showcase-image img {
  filter: saturate(0.88) contrast(1.08) brightness(0.8);
  transform: scale(1.08);
  transition: transform 1200ms var(--ease);
  will-change: transform;
}

.scroll-scene.scene-active .showcase-image img {
  transform: translate3d(0, var(--scene-y-reverse), 0) scale(1.12);
}

.showcase-image:hover img {
  transform: scale(1.14);
}

.closing-panel {
  min-height: 74svh;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(240, 191, 106, 0.12), transparent 40%),
    #050505;
}

.closing-copy {
  text-align: center;
}

.closing-copy h2 {
  max-width: 800px;
  margin: 0 auto 34px;
  font-size: clamp(40px, 6.1vw, 82px);
  line-height: 1.05;
  font-weight: 600;
}

.listing-card {
  position: relative;
  min-height: 382px;
  border: 1px solid var(--line-dark);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  animation: cardIn 680ms var(--ease) both;
  animation-delay: var(--delay, 0ms);
  transition:
    transform 320ms var(--ease),
    border-color 320ms var(--ease),
    box-shadow 320ms var(--ease);
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.2);
}

.listing-card img {
  position: absolute;
  inset: 0;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.03);
  transition: transform 600ms var(--ease);
}

.listing-card:hover img {
  transform: scale(1.08);
}

.listing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.76)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.02));
}

.listing-body {
  position: relative;
  z-index: 2;
  min-height: 382px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.listing-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.5);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}

.favorite {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.44);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

.favorite:hover,
.favorite.active {
  transform: scale(1.06);
  background: var(--white);
  color: var(--black);
}

.listing-title h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
  font-weight: 600;
}

.listing-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-meta,
.stats-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.meta-cell,
.stat {
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.stat {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.58);
}

.meta-cell strong,
.stat strong {
  display: block;
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 15px;
}

.meta-cell span,
.stat span,
.meta {
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 700;
}

.listing-card .meta-cell span {
  color: var(--muted);
}

.empty {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px solid var(--line-dark);
  text-align: center;
  background: rgba(255, 255, 255, 0.58);
}

.empty h3 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 600;
}

.empty p {
  max-width: 420px;
  margin: 0 auto 18px;
  color: var(--muted-dark);
  line-height: 1.5;
}

.booking-row,
.space-row {
  padding: 18px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.58);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.booking-row h3,
.space-row h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 600;
}

.booking-row[role="link"] {
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    background 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.booking-row[role="link"]:hover,
.booking-row[role="link"]:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.1);
}

.booking-row p,
.space-row p {
  margin: 0;
  color: var(--muted-dark);
}

.status {
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.space-row-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.space-row-title h3 {
  margin-bottom: 0;
}

.space-row-actions {
  justify-content: flex-end;
}

.verification-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0 9px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  background: rgba(240, 191, 106, 0.22);
  color: rgba(17, 17, 17, 0.78);
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-actions {
  align-items: center;
  justify-content: flex-end;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease);
}

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

.modal {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 110;
  width: min(620px, 100%);
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
  transform: translateX(105%);
  transition: transform 420ms var(--ease);
}

.modal.open {
  transform: translateX(0);
}

.modal-hero {
  position: relative;
  min-height: 310px;
  color: var(--white);
  overflow: hidden;
}

.modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.76));
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(5, 5, 5, 0.46);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.modal-title {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.modal-title h3 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 600;
}

.modal-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.modal-body {
  padding: 22px;
  display: grid;
  gap: 18px;
}

.listing-gallery img {
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.owner-panel {
  padding: 16px;
  border: 1px solid var(--line-dark);
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.owner-panel h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 600;
}

.owner-panel p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.45;
}

.summary {
  border-top: 1px solid var(--line-dark);
  padding-top: 14px;
  display: grid;
  gap: 9px;
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 13px;
}

.summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.book-hero {
  position: relative;
  min-height: 64svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.book-hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.book-hero-media img {
  filter: saturate(0.9) contrast(1.12) brightness(0.72);
  transform: scale(1.04);
}

.book-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.28) 58%, rgba(5, 5, 5, 0.78)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.88));
}

.book-hero-content {
  padding: 132px 0 42px;
}

.book-back {
  width: fit-content;
  min-height: 34px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.book-back::before {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.book-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(44px, 6.2vw, 86px);
  line-height: 1.04;
  font-weight: 650;
}

.book-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.48;
  font-weight: 650;
}

.book-hero-stats {
  width: min(720px, 100%);
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.book-hero-stats div {
  min-height: 86px;
  padding: 18px 22px 18px 0;
  display: grid;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.book-hero-stats div + div {
  padding-left: 22px;
}

.book-hero-stats div:last-child {
  border-right: 0;
}

.book-hero-stats strong {
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 18px;
}

.book-hero-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.book-section {
  padding-top: clamp(44px, 5vw, 78px);
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: clamp(18px, 2.6vw, 36px);
  align-items: start;
}

.book-detail-panel,
.book-request-card {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.68);
}

.book-detail-panel {
  display: grid;
  gap: 16px;
  background: transparent;
  border-color: transparent;
}

.book-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-auto-rows: minmax(160px, 21vw);
  gap: 10px;
}

.book-gallery img {
  min-height: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
}

.book-gallery img:first-child {
  grid-row: span 2;
}

.book-gallery img:nth-child(n + 4) {
  display: none;
}

.book-host-card {
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(240, 191, 106, 0.16), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.68);
}

.book-host-card h2 {
  max-width: 720px;
  margin: 16px 0 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  font-weight: 600;
}

.book-host-card p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted-dark);
  line-height: 1.5;
  font-weight: 650;
}

.book-assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.book-assurance-grid div {
  min-height: 130px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  display: grid;
  align-content: space-between;
  background: rgba(255, 255, 255, 0.58);
}

.book-assurance-grid strong {
  font-size: 18px;
  font-weight: 750;
}

.book-assurance-grid span {
  color: var(--muted-dark);
  line-height: 1.42;
  font-weight: 650;
}

.book-request-card {
  position: sticky;
  top: 92px;
  padding: clamp(18px, 2.2vw, 28px);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.1);
}

.book-request-head {
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.book-request-head .eyebrow {
  margin-bottom: 10px;
  color: rgba(17, 17, 17, 0.48);
}

.book-request-head h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  font-weight: 650;
}

.book-request-head > span {
  padding-top: 2px;
  white-space: nowrap;
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

.booking-intake-form {
  gap: 14px;
}

.booking-date-field {
  position: relative;
}

.date-trigger {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
  text-align: left;
  transition:
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.date-trigger span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.date-trigger:hover,
.date-trigger[aria-expanded="true"] {
  border-color: rgba(17, 17, 17, 0.28);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.09);
}

.date-trigger-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid rgba(17, 17, 17, 0.28);
  border-radius: 5px;
}

.date-trigger-icon::before,
.date-trigger-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.date-trigger-icon::before {
  top: 5px;
  left: 4px;
  right: 4px;
  height: 1px;
  opacity: 0.55;
}

.date-trigger-icon::after {
  top: 9px;
  left: 6px;
  width: 4px;
  height: 4px;
  box-shadow: 7px 0 0 currentColor, 0 7px 0 currentColor, 7px 7px 0 currentColor;
  opacity: 0.68;
}

.booking-calendar {
  position: absolute;
  inset: calc(100% + 8px) 0 auto;
  z-index: 30;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.2);
  backdrop-filter: blur(22px);
}

.calendar-head {
  min-height: 38px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 8px;
}

.calendar-head strong {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.calendar-head button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.calendar-head button::before {
  content: "";
  width: 9px;
  height: 9px;
  margin: auto;
  display: block;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.calendar-head button:first-child::before {
  transform: rotate(45deg);
}

.calendar-head button:last-child::before {
  transform: rotate(-135deg);
}

.calendar-head button:hover {
  background: var(--ink);
  color: var(--white);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  margin-top: 12px;
  color: rgba(17, 17, 17, 0.44);
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.calendar-grid {
  margin-top: 6px;
  gap: 4px;
}

.calendar-grid button {
  aspect-ratio: 1;
  min-width: 0;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.calendar-grid button:hover {
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(17, 17, 17, 0.06);
}

.calendar-grid button.outside {
  color: rgba(17, 17, 17, 0.28);
}

.calendar-grid button.today {
  border-color: rgba(127, 140, 120, 0.56);
}

.calendar-grid button.in-range {
  border-color: rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.06);
}

.calendar-grid button.range-start,
.calendar-grid button.range-end {
  border-color: rgba(17, 17, 17, 0.26);
}

.calendar-grid button.selected {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.18);
}

.calendar-grid button:disabled {
  cursor: not-allowed;
  color: rgba(17, 17, 17, 0.18);
  background: transparent;
  box-shadow: none;
}

.duration-control {
  display: grid;
  grid-template-columns: minmax(86px, 0.6fr) minmax(120px, 1fr);
  gap: 8px;
}

.duration-control input,
.duration-control select {
  min-height: 54px;
  background: rgba(255, 255, 255, 0.86);
}

.book-request-card .summary {
  margin-top: 2px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background:
    linear-gradient(135deg, rgba(127, 140, 120, 0.13), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.68);
}

.book-request-card .summary div:last-child {
  min-height: 42px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  align-items: end;
}

.book-request-card .button[type="submit"] {
  min-height: 52px;
}

.logout-confirm-open,
.logout-confirm-open body {
  overflow: hidden;
}

.logout-confirm-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(5, 5, 5, 0.64);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease);
}

.logout-confirm-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.logout-confirm {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 22px;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 260ms var(--ease),
    transform 260ms var(--ease);
}

.logout-confirm.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.logout-confirm-card {
  width: min(410px, 100%);
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.logout-confirm-kicker {
  margin: 0 0 14px;
  color: rgba(17, 17, 17, 0.48);
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.logout-confirm h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
  font-weight: 650;
}

.logout-confirm p:not(.logout-confirm-kicker) {
  margin: 12px 0 0;
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.48;
}

.logout-confirm-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logout-confirm-actions .button {
  min-height: 44px;
  flex: 1 1 140px;
  border-radius: 999px;
  text-transform: none;
  font-size: 13px;
}

.logout-confirm-actions [data-logout-confirm] {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.logout-confirm-actions .logout-cancel {
  background: transparent;
  color: var(--ink);
  border-color: rgba(17, 17, 17, 0.18);
}

.logout-confirm-actions .logout-cancel:hover {
  background: rgba(17, 17, 17, 0.08);
  color: var(--ink);
}

.toast {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 140;
  max-width: min(420px, calc(100% - 48px));
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

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

.toast strong {
  display: block;
  margin-bottom: 3px;
}

.toast span {
  color: var(--muted-dark);
}

body[data-page="account"] {
  color: #17181c;
  background: #fbfaf8;
}

body[data-page="account"]::before {
  background: #fbfaf8;
}

body[data-page="account"]::after {
  display: none;
}

body[data-page="account"] .scroll-progress {
  background: #17181c;
  opacity: 0.16;
}

.account-page {
  min-height: 100svh;
  color: #17181c;
  background: #fbfaf8;
}

.account-checkout {
  min-height: 100svh;
  padding: clamp(28px, 4vw, 52px) 0 64px;
}

.account-checkout-shell {
  width: min(1024px, calc(100% - 40px));
  margin: 0 auto;
}

.account-header {
  min-height: 42px;
  display: flex;
  align-items: center;
  margin-bottom: clamp(26px, 4.5vw, 54px);
}

.account-logo {
  color: #17181c;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  text-transform: lowercase;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 482px) minmax(340px, 480px);
  gap: clamp(44px, 6vw, 64px);
  align-items: start;
}

.account-pill {
  min-height: 30px;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  color: #d96737;
  background: #fff0e7;
  font-size: 14px;
  font-weight: 500;
}

.account-intake h1 {
  max-width: 500px;
  margin: 0;
  color: #111217;
  font-size: clamp(34px, 3.1vw, 44px);
  line-height: 1.08;
  font-weight: 700;
}

.account-lede {
  max-width: 470px;
  margin: 12px 0 0;
  color: #6b6d73;
  font-size: 16px;
  line-height: 1.45;
}

.account-trust {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #65676e;
  font-size: 15px;
  line-height: 1.35;
}

.avatar-stack {
  display: flex;
  flex: 0 0 auto;
  padding-left: 8px;
}

.avatar-stack span {
  width: 28px;
  height: 28px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border: 2px solid #fbfaf8;
  border-radius: 50%;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.avatar-stack span:nth-child(1) {
  background: #2f5b7f;
}

.avatar-stack span:nth-child(2) {
  background: #b85f38;
}

.avatar-stack span:nth-child(3) {
  background: #222329;
}

.account-divider {
  height: 1px;
  margin: 34px 0 28px;
  background: #e4e4e5;
}

.account-card {
  width: 100%;
  color: #17181c;
}

.account-panel-step {
  margin-bottom: 22px;
}

.checkout-step-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-step-label span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: #e36d42;
  font-size: 14px;
  font-weight: 800;
}

.checkout-step-label strong {
  color: #17181c;
  font-size: 16px;
  font-weight: 800;
}

.account-card h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.account-card .intro-copy {
  max-width: 460px;
  margin: 8px 0 0;
  color: #6d6f75;
  font-size: 14px;
  line-height: 1.45;
}

.account-form {
  gap: 15px;
}

.auth-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 4px;
}

.auth-switch .button {
  width: 100%;
  min-height: 44px;
  border-color: #dbdcdf;
  border-radius: var(--radius);
  color: #17181c;
  background: #fbfaf8;
  font-size: 14px;
  font-weight: 800;
  text-transform: none;
}

.auth-switch .button:hover {
  transform: none;
  color: #17181c;
  background: #ffffff;
}

.auth-switch .button.active,
.auth-switch .button.active:hover {
  color: #ffffff;
  background: #17181c;
  border-color: #17181c;
}

.account-card label {
  gap: 10px;
  color: #17181c;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

.account-card input {
  min-height: 56px;
  padding: 0 22px;
  border-color: #dcdddf;
  border-radius: var(--radius);
  color: #17181c;
  background: #ffffff;
  font-size: 15px;
  box-shadow: 0 1px 0 rgba(17, 18, 23, 0.02);
}

.account-card input::placeholder {
  color: #9a9ca3;
}

.account-card input:focus {
  border-color: #17181c;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(23, 24, 28, 0.08);
}

.account-form > .button,
.account-card > .button {
  width: 100%;
  min-height: 56px;
  border-color: #17181c;
  border-radius: var(--radius);
  color: #ffffff;
  background: #17181c;
  font-size: 15px;
  font-weight: 800;
  text-transform: none;
}

.account-card > .button {
  margin-top: 14px;
}

.account-form > .button:hover,
.account-card > .button:hover {
  transform: translateY(-1px);
  color: #ffffff;
  background: #050506;
}

.account-next-step {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.account-next-step .checkout-step-label span {
  background: #f0b9a4;
}

.account-next-step .checkout-step-label strong {
  color: #8f9197;
}

.account-next-step button {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid #e5e5e6;
  border-radius: var(--radius);
  color: #92949a;
  background: transparent;
  cursor: not-allowed;
}

.lock-mark {
  position: relative;
  width: 11px;
  height: 10px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 2px;
  background: #b5b6bb;
}

.lock-mark::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -7px;
  width: 7px;
  height: 8px;
  border: 2px solid #b5b6bb;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.order-card {
  width: 100%;
  padding: 20px;
  border: 1px solid #e2e2e4;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(23, 24, 28, 0.06);
}

.order-card h2 {
  margin: 0 0 18px;
  color: #686a70;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}

.order-visual {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  border: 1px solid #ededee;
  border-radius: var(--radius);
  background: #f5f2ed;
}

.order-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.1) 42%, rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.74), transparent 42%, rgba(255, 255, 255, 0.52));
}

.order-visual img {
  height: 258px;
  object-position: center;
  filter: saturate(0.8) contrast(0.96) brightness(1.12);
}

.order-visual-tag {
  position: absolute;
  z-index: 2;
  max-width: calc(100% - 32px);
  padding: 7px 10px;
  border: 1px solid rgba(23, 24, 28, 0.08);
  border-radius: var(--radius);
  color: #4e5056;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(23, 24, 28, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.order-visual-tag.top {
  top: 18px;
  left: 18px;
}

.order-visual-tag.bottom {
  right: 18px;
  bottom: 70px;
}

.order-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: rgba(23, 24, 28, 0.54);
}

.order-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}

.order-dots span:nth-child(3) {
  width: 32px;
  border-radius: 99px;
  background: #ffffff;
}

.order-copy {
  padding: 18px 0 16px;
}

.order-copy h3 {
  margin: 0 0 8px;
  color: #111217;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 700;
}

.order-copy p {
  margin: 0;
  color: #66686f;
  font-size: 15px;
  line-height: 1.4;
}

.order-lines {
  border-top: 1px solid #e7e7e8;
}

.order-lines div {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #eeeeef;
  color: #17181c;
  font-size: 15px;
}

.order-lines div:last-child {
  border-bottom: 0;
}

.order-lines strong {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 800;
}

.order-total {
  min-height: 60px;
  font-weight: 800;
}

.account-card .stats-grid {
  margin-top: 18px;
}

.account-card .stat {
  border-color: #e1e1e3;
  background: #ffffff;
}

.account-actions {
  margin-top: 14px;
}

.account-actions .button {
  flex: 1 1 120px;
  min-height: 44px;
  color: #17181c;
  background: transparent;
  text-transform: none;
}

.account-actions .button:hover {
  color: #ffffff;
  background: #17181c;
}

.footer {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  clip-path: inset(0 0 18% 0);
  transition:
    opacity 780ms var(--ease),
    transform 780ms var(--ease),
    clip-path 780ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.scroll-scene {
  --scene-y: 0px;
  --scene-y-reverse: 0px;
  --scene-scale: 1;
}

.motion-ready .minimal-copy.reveal,
.motion-ready .showcase-copy.reveal,
.motion-ready .closing-copy.reveal {
  transform: translateY(42px);
  transition-duration: 900ms;
}

.motion-ready .minimal-step.reveal {
  transform: translateY(52px) scale(0.97);
  clip-path: inset(7% 0 8% 0);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease),
    clip-path 900ms var(--ease),
    background 420ms var(--ease),
    box-shadow 420ms var(--ease);
}

.motion-ready .showcase-image.reveal {
  transform: translateY(48px) scale(0.96);
  clip-path: inset(9% 0 9% 0);
  transition:
    opacity 980ms var(--ease),
    transform 980ms var(--ease),
    clip-path 980ms var(--ease);
}

.motion-ready .scroll-scene .minimal-copy.reveal.is-visible,
.motion-ready .scroll-scene .showcase-copy.reveal.is-visible,
.motion-ready .scroll-scene .closing-copy.reveal.is-visible {
  transform: translateY(var(--scene-y-reverse));
}

.motion-ready .scroll-scene .minimal-step.reveal.is-visible {
  opacity: 1;
  transform: translateY(var(--scene-y)) scale(var(--scene-scale));
  clip-path: inset(0);
}

.motion-ready .scroll-scene .minimal-step.reveal.is-visible:nth-child(2) {
  transform: translateY(var(--scene-y-reverse)) scale(var(--scene-scale));
}

.motion-ready .scroll-scene .showcase-image.reveal.is-visible {
  opacity: 1;
  transform: translateY(var(--scene-y)) scale(1);
  clip-path: inset(0);
}

.motion-ready .scroll-scene.alt .showcase-image.reveal.is-visible {
  transform: translateY(var(--scene-y-reverse)) scale(1);
}

.motion-ready .stack-scene .minimal-step.reveal {
  transform: translate3d(0, calc(-50% + 62px), 0) scale(0.97);
}

.motion-ready .stack-scene .minimal-step.reveal.is-visible {
  opacity: var(--card-opacity, 1);
  transform: translate3d(var(--card-x, 0px), calc(-50% + var(--card-y, 0px)), 0) scale(var(--card-scale, 1));
  clip-path: inset(0);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease),
    clip-path 900ms var(--ease),
    background 420ms var(--ease),
    border-color 420ms var(--ease),
    box-shadow 420ms var(--ease);
}

.motion-ready .system-row.reveal {
  opacity: 0;
  transform: translateX(54px);
  clip-path: inset(0 0 0 12%);
  transition:
    opacity 920ms var(--ease),
    transform 920ms var(--ease),
    clip-path 920ms var(--ease),
    background 320ms var(--ease);
}

.motion-ready .system-row.reveal.is-visible {
  opacity: 1;
  transform: translateX(var(--scene-row-x, 0px));
  clip-path: inset(0);
}

.motion-ready .system-row.reveal.is-visible:nth-child(even) {
  transform: translateX(var(--scene-row-x-reverse, 0px));
}

.motion-ready .membership-copy.reveal {
  transform: translateY(46px);
  transition-duration: 960ms;
}

.motion-ready .membership-copy.reveal.is-visible {
  transform: translateY(var(--scene-y-reverse, 0px));
}

.motion-ready .membership-card.reveal {
  transform: translateY(72px) rotateX(8deg) scale(0.96);
  transform-origin: center top;
  clip-path: inset(8% 0 10% 0);
  transition:
    opacity 980ms var(--ease),
    transform 980ms var(--ease),
    clip-path 980ms var(--ease),
    box-shadow 420ms var(--ease);
}

.motion-ready .membership-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(var(--scene-y, 0px)) rotateX(var(--scene-tilt, 0deg)) scale(1);
  clip-path: inset(0);
}

.motion-ready .story-card.reveal {
  opacity: 0;
  transform: translateY(58px) scale(0.94);
  clip-path: inset(10% 0 12% 0);
  transition:
    opacity 920ms var(--ease),
    transform 920ms var(--ease),
    clip-path 920ms var(--ease),
    border-color 320ms var(--ease);
}

.motion-ready .story-card.reveal.is-visible {
  opacity: 1;
  transform: translate3d(var(--story-card-x, 0px), var(--scene-y, 0px), 0) scale(1);
  clip-path: inset(0);
}

.motion-ready .story-rail {
  transform: translate3d(var(--rail-x, 0px), 0, 0);
  transition: transform 120ms linear;
  will-change: transform;
}

.motion-ready .faq-list.reveal {
  transform: translateY(28px);
  clip-path: inset(4% 0 8% 0);
  transition-duration: 920ms;
}

.motion-ready .faq-list.reveal.is-visible {
  transform: translateY(var(--scene-y, 0px));
  clip-path: inset(0);
}

.motion-ready .faq-list.reveal details {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease),
    border-color 320ms var(--ease);
}

.motion-ready .faq-list.reveal.is-visible details {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .faq-list.reveal.is-visible details:nth-child(2) {
  transition-delay: 80ms;
}

.motion-ready .faq-list.reveal.is-visible details:nth-child(3) {
  transition-delay: 160ms;
}

.motion-ready .faq-list.reveal.is-visible details:nth-child(4) {
  transition-delay: 240ms;
}

.home-premium .home-hero {
  min-height: calc(100svh - 50px);
}

.home-premium .home-hero .hero-content {
  grid-template-columns: 1fr;
  align-items: end;
}

.home-premium .home-hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 5.6vw, 88px);
  line-height: 1;
}

.home-premium .home-hero .hero-copy {
  max-width: 450px;
  font-size: clamp(16px, 1.18vw, 18px);
  text-wrap: pretty;
}

.hero-story {
  width: min(760px, 100%);
  min-height: clamp(560px, calc(100dvh - 190px), 660px);
  min-width: 0;
  padding-top: clamp(72px, 11.5vh, 116px);
  display: flex;
  flex-direction: column;
}

.home-hero .hero-proof {
  margin-top: auto;
}

.membership-items div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.membership-items div {
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.membership-items strong {
  color: var(--white);
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.home-premium .minimal-section {
  background:
    linear-gradient(160deg, rgba(240, 191, 106, 0.08), transparent 34%),
    var(--paper);
}

.home-premium .minimal-copy h2 {
  max-width: 920px;
}

.home-premium .minimal-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-system {
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper), #ffffff 46%, #eef1ed);
}

.system-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

.system-copy {
  position: sticky;
  top: 112px;
}

.system-copy h2,
.membership-copy h2,
.stories-head h2,
.faq-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5.3vw, 78px);
  line-height: 1.05;
  font-weight: 600;
}

.system-copy p:not(.eyebrow),
.membership-copy p {
  max-width: 470px;
  margin: 20px 0 28px;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.55;
}

.system-copy .button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-transform: none;
  font-size: 14px;
}

.system-list {
  display: grid;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.system-row {
  min-height: 172px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(90px, auto);
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  transform-style: preserve-3d;
}

.system-row span,
.story-card span {
  color: rgba(17, 17, 17, 0.46);
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 12px;
}

.system-row h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 600;
}

.system-row p {
  max-width: 560px;
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.5;
}

.system-row > strong {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 11px;
  text-transform: uppercase;
}

.membership-section {
  color: var(--ink);
  background: #eef1ed;
}

.membership-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
}

.membership-card {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.54)),
    var(--white);
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.12);
  transform-style: preserve-3d;
}

.membership-price {
  display: grid;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.membership-price strong {
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: clamp(64px, 9vw, 112px);
  line-height: 0.92;
}

.membership-price span {
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.membership-items {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.membership-items div {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(17, 17, 17, 0.04);
  color: rgba(17, 17, 17, 0.66);
}

.membership-items strong {
  color: var(--ink);
}

.membership-card .button {
  width: 100%;
}

.stories-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(240, 191, 106, 0.12), transparent 34%),
    linear-gradient(180deg, #050505, #111111);
}

.stories-head {
  max-width: 840px;
  margin-bottom: 36px;
}

.story-rail {
  width: min(1440px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 420px);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.story-rail::-webkit-scrollbar {
  height: 6px;
}

.story-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.story-card {
  min-height: 360px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  scroll-snap-align: start;
  transform-style: preserve-3d;
}

.story-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(240, 191, 106, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.story-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(240, 191, 106, 0.07), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.story-card span {
  color: rgba(255, 255, 255, 0.42);
}

.story-card h3 {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: 1.05;
  font-weight: 600;
}

.story-card p {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.trust-hero {
  min-height: 74svh;
}

.trust-hero::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.34) 52%, rgba(5, 5, 5, 0.74)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.92));
}

.trust-hero .hero-media img {
  filter: saturate(0.72) contrast(1.12) brightness(0.74);
  object-position: center;
}

.trust-hero .page-title {
  max-width: 740px;
}

.trust-hero .hero-copy {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.trust-hero-proof {
  width: fit-content;
  max-width: 100%;
  grid-template-columns: repeat(3, max-content);
  gap: 10px;
  margin-top: 30px;
}

.trust-hero-proof div,
.trust-hero-proof div + div,
.trust-hero-proof div:last-child {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.trust-hero-proof strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.trust-system {
  background:
    linear-gradient(180deg, var(--paper), #fffaf0 58%, var(--paper-2));
}

.trust-system-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.42fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
}

.trust-system-copy {
  max-width: 800px;
}

.trust-system-copy h2,
.trust-protection-intro h2,
.trust-playbook-head h2 {
  margin: 0;
  font-size: clamp(36px, 5.2vw, 78px);
  line-height: 1.04;
  font-weight: 600;
}

.trust-system-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 20px 0 0;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.55;
}

.trust-ledger {
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.1);
}

.trust-ledger div {
  min-height: 82px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.trust-ledger div:last-child {
  border-bottom: 0;
}

.trust-ledger span,
.trust-feature-card span,
.trust-timeline-step span {
  color: rgba(17, 17, 17, 0.46);
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.trust-ledger strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}

.trust-feature-grid {
  margin-top: clamp(34px, 5vw, 66px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-feature-card {
  position: relative;
  min-height: 318px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.13);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.56);
  transition:
    transform 360ms var(--ease),
    border-color 360ms var(--ease),
    box-shadow 360ms var(--ease);
}

.trust-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(140deg, rgba(240, 191, 106, 0.16), transparent 46%);
  transition: opacity 360ms var(--ease);
}

.trust-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.1);
}

.trust-feature-card:hover::before {
  opacity: 1;
}

.trust-feature-card > * {
  position: relative;
}

.trust-feature-card h3 {
  margin: 46px 0 12px;
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.07;
  font-weight: 600;
}

.trust-feature-card p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.52;
}

.trust-feature-card-wide {
  grid-column: span 2;
}

.trust-protection {
  background:
    linear-gradient(135deg, rgba(240, 191, 106, 0.11), transparent 34%),
    linear-gradient(180deg, #050505, #0d0d0d 52%, #050505);
}

.trust-protection-intro {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 70px);
}

.trust-protection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-protection-card {
  min-height: 560px;
  padding: clamp(22px, 3.4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.trust-protection-card .meta {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.44);
}

.trust-protection-card h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 600;
}

.trust-protection-card ul {
  margin: clamp(34px, 4vw, 56px) 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.trust-protection-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.trust-protection-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(240, 191, 106, 0.64);
  border-radius: 50%;
  background: rgba(240, 191, 106, 0.18);
  transform: translateY(-50%);
}

.trust-playbook {
  background:
    linear-gradient(180deg, var(--paper-2), var(--paper));
}

.trust-playbook-head {
  max-width: 920px;
}

.trust-timeline {
  margin-top: clamp(34px, 5vw, 68px);
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-timeline-step {
  min-height: 284px;
  padding: 24px 22px;
  border-right: 1px solid rgba(17, 17, 17, 0.14);
  display: grid;
  align-content: space-between;
}

.trust-timeline-step:last-child {
  border-right: 0;
}

.trust-timeline-step strong {
  display: block;
  margin-top: 42px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  font-weight: 600;
}

.trust-timeline-step p {
  margin: 14px 0 0;
  color: var(--muted-dark);
  line-height: 1.5;
}

.faq-section {
  color: var(--ink);
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.54fr) minmax(0, 0.86fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.faq-list details {
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  padding: 22px 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.14;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 16px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--muted-dark);
  line-height: 1.55;
}

.home-footer {
  min-height: 128px;
  align-items: center;
}

.home-footer div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-footer strong {
  color: var(--white);
  font-size: 20px;
  text-transform: lowercase;
}

.home-footer a {
  color: rgba(255, 255, 255, 0.58);
  transition: color 220ms var(--ease);
}

.home-footer a:hover {
  color: var(--white);
}

.motion-ready .home-premium .stack-scene {
  min-height: 252svh;
}

@keyframes pageIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes announcementSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes drift {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes imageDrift {
  from {
    transform: translate3d(calc(var(--mx, 0) * -9px), calc(var(--my, 0) * -9px), 0) scale(1.04);
  }

  to {
    transform: translate3d(calc(var(--mx, 0) * -14px + 8px), calc(var(--my, 0) * -14px - 7px), 0) scale(1.075);
  }
}

@keyframes homeHeroDrift {
  from {
    transform: translate3d(calc(var(--hero-pan-x, -5.25vw) + var(--mx, 0) * -8px), calc(var(--my, 0) * -7px), 0) scale(1.105);
  }

  to {
    transform: translate3d(calc(var(--hero-pan-x, -5.25vw) + var(--mx, 0) * -13px - 10px), calc(var(--my, 0) * -11px - 8px), 0) scale(1.135);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.78;
  }

  50% {
    transform: scale(1.42);
    opacity: 1;
  }
}

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

@media (max-width: 1080px) {
  .market-shell,
  .host-shell,
  .dashboard-grid,
  .book-layout,
  .hero-search-grid,
  .intro,
  .account-grid,
  .showcase-grid,
  .split-showcase.alt .showcase-grid {
    grid-template-columns: 1fr;
  }

  .sticky {
    position: relative;
    top: auto;
  }

  .book-request-card {
    position: relative;
    top: auto;
  }

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

  .trust-system-layout,
  .trust-protection-grid {
    grid-template-columns: 1fr;
  }

  .trust-feature-grid,
  .trust-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-timeline-step:nth-child(2) {
    border-right: 0;
  }

  .trust-timeline-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  }

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

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

  .motion-ready .stack-scene {
    min-height: auto;
    padding: 74px 0;
    overflow: visible;
  }

  .motion-ready .stack-scene > .wrap {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 0;
    grid-template-columns: 1fr;
  }

  .motion-ready .stack-scene .minimal-copy {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
  }

  .motion-ready .stack-scene .minimal-copy::after {
    margin: 30px auto 0;
  }

  .motion-ready .stack-scene .minimal-steps {
    min-height: auto;
    display: grid;
    gap: 12px;
    perspective: none;
  }

  .motion-ready .stack-scene .minimal-steps::before,
  .motion-ready .stack-scene .minimal-steps::after {
    display: none;
  }

  .motion-ready .stack-scene .minimal-step {
    position: relative;
    top: auto;
    min-height: 230px;
    opacity: 1;
    transform: none;
  }

  .motion-ready .stack-scene .minimal-step.reveal {
    transform: translateY(52px) scale(0.97);
  }

  .motion-ready .stack-scene .minimal-step.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .account-card,
  .order-card {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .wrap,
  .nav-inner {
    width: calc(100% - 34px);
  }

  .nav-inner {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  body[data-page="home"] .nav {
    inset: 50px 6px auto;
  }

  body[data-page="home"] .brand {
    grid-column: 1;
    justify-self: start;
    font-size: 20px;
  }

  body[data-page="home"] .nav-actions {
    grid-column: 2;
  }

  .nav-actions .button:not(.account-link) {
    display: none;
  }

  .nav-login {
    display: none;
  }

  .site-menu {
    width: 100vw;
    padding: 22px 18px 30px;
    border-radius: 0;
  }

  .site-menu-head {
    align-items: flex-start;
    gap: 14px;
  }

  .site-menu-actions {
    gap: 10px;
  }

  .site-menu-login {
    display: none;
  }

  .site-menu-cta {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }

  .site-menu-secondary {
    margin-top: 46px;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(38px, 10.8vw, 68px);
  }

  .account-checkout {
    padding-top: 24px;
  }

  .account-checkout-shell {
    width: calc(100% - 34px);
  }

  .account-header {
    margin-bottom: 34px;
  }

  .account-intake h1 {
    font-size: clamp(34px, 8.8vw, 48px);
  }

  .order-visual,
  .order-visual img {
    min-height: 230px;
    height: 230px;
  }

  .home-announcement {
    min-height: 50px;
    gap: 16px;
    padding: 0 14px;
    font-size: 13px;
  }

  .home-hero {
    min-height: calc(100svh - 50px);
    margin-top: 50px;
  }

  .home-hero .hero-content {
    width: calc(100% - 34px);
    min-height: calc(100svh - 50px);
    padding: 98px 0 30px;
  }

  .home-hero h1 {
    font-size: clamp(38px, 11.4vw, 64px);
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .hero-proof div,
  .hero-proof div + div {
    min-height: 46px;
    padding: 0 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-proof div:first-child {
    padding-left: 0;
  }

  .hero-proof div:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .hero-proof strong {
    font-size: 12px;
  }

  .hero-proof span {
    font-size: 11px;
    line-height: 1.3;
  }

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

  .process-grid,
  .feature-row,
  .proof-shell {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 420px;
  }

  .feature-row {
    gap: 10px;
    align-items: start;
  }

  .proof-shell {
    min-height: 360px;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .trust-hero {
    min-height: 82svh;
  }

  .trust-feature-grid,
  .trust-timeline {
    grid-template-columns: 1fr;
  }

  .trust-feature-card-wide {
    grid-column: span 1;
  }

  .trust-protection-card {
    min-height: auto;
  }

  .trust-timeline-step,
  .trust-timeline-step:nth-child(2) {
    border-right: 0;
  }

  .trust-timeline-step,
  .trust-timeline-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  }

  .trust-timeline-step:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .wrap,
  .nav-inner {
    width: calc(100% - 28px);
  }

  .site-menu-secondary {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .split,
  .stats-grid,
  .book-hero-stats,
  .book-gallery,
  .book-assurance-grid,
  .duration-control,
  .listing-meta,
  .photo-preview,
  .listing-gallery,
  .host-actions,
  .booking-row,
  .space-row,
  .footer {
    grid-template-columns: 1fr;
  }

  .account-checkout-shell {
    width: calc(100% - 28px);
  }

  .account-grid {
    gap: 32px;
  }

  .account-trust {
    align-items: flex-start;
  }

  .auth-switch {
    gap: 6px;
  }

  .account-card input {
    min-height: 54px;
    padding: 0 16px;
  }

  .order-card {
    padding: 14px;
  }

  .order-lines div {
    min-height: 58px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .book-hero {
    min-height: 72svh;
  }

  .book-hero-content {
    padding-bottom: 28px;
  }

  .book-hero h1 {
    max-width: min(calc(100vw - 56px), 350px);
    font-size: clamp(36px, 10vw, 44px);
  }

  .book-hero p:not(.eyebrow) {
    max-width: min(calc(100vw - 56px), 350px);
    font-size: 15px;
  }

  .book-hero-stats div,
  .book-hero-stats div + div {
    min-height: 68px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .book-hero-stats div:last-child {
    border-bottom: 0;
  }

  .book-gallery {
    grid-auto-rows: minmax(190px, 54vw);
  }

  .book-gallery img:first-child {
    grid-row: auto;
  }

  .book-request-head {
    display: grid;
  }

  .booking-row,
  .space-row,
  .footer {
    align-items: start;
  }

  .booking-actions {
    justify-content: flex-start;
  }

  .space-row-actions {
    justify-content: flex-start;
  }

  .modal {
    width: 100%;
  }

  .trust-ledger div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .trust-ledger strong {
    text-align: left;
  }

  .trust-feature-card,
  .trust-timeline-step {
    min-height: 240px;
  }

  .trust-protection-card h3 {
    font-size: clamp(28px, 9vw, 42px);
  }
}

@media (max-width: 1080px) {
  .home-premium .home-hero .hero-content,
  .system-grid,
  .membership-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .system-copy {
    position: relative;
    top: auto;
  }

  .home-premium .minimal-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .home-premium .home-hero {
    min-height: calc(100svh - 50px);
  }

  .home-premium .home-hero .hero-content {
    min-height: calc(100svh - 50px);
    align-content: end;
  }

  .home-premium .home-hero h1 {
    font-size: clamp(42px, 12.2vw, 68px);
  }

  .system-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .system-row > strong {
    justify-self: start;
  }

  .story-rail {
    width: calc(100% - 34px);
    grid-auto-columns: minmax(280px, 84vw);
  }

  .home-footer,
  .home-footer div {
    display: grid;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .home-premium .minimal-steps {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-proof div,
  .hero-proof div + div {
    padding: 0;
    border-right: 0;
  }

  .membership-card {
    padding: 18px;
  }

  .membership-items div {
    min-height: 54px;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .faq-list summary {
    font-size: 20px;
  }
}

@media (max-width: 820px) {
  .trust-hero-proof {
    grid-template-columns: repeat(3, max-content);
    gap: 8px;
  }

  .trust-hero-proof div,
  .trust-hero-proof div + div,
  .trust-hero-proof div:last-child {
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
  }
}

@media (max-width: 560px) {
  .trust-hero-proof {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .trust-hero-proof div,
  .trust-hero-proof div + div,
  .trust-hero-proof div:last-child {
    justify-content: center;
    padding: 0 12px;
  }
}

.home-snap {
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
}

@media (min-width: 1181px) {
  .home-snap.home-pager-animating,
  .home-snap.home-pager-buffering {
    scroll-snap-type: none;
  }

  .home-pager-animating .journey-step,
  .home-pager-buffering .journey-step {
    transform: translate3d(0, var(--journey-panel-offset, 0px), 0);
    will-change: transform;
  }
}

body[data-page="home"] {
  background: #f7f3eb;
}

body[data-page="home"]::before {
  background:
    linear-gradient(180deg, #f7f3eb, #ffffff 44%, #050505);
}

body[data-page="home"] .nav {
  inset: 0 0 auto;
  padding-top: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  pointer-events: none;
  transform: none;
  transition: padding-top 620ms var(--ease);
}

body[data-page="home"] .nav.scrolled {
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

body[data-page="home"] .nav.is-compact {
  padding-top: 14px;
}

body[data-page="home"] .nav-inner {
  width: calc(100% - clamp(48px, 6.3vw, 132px));
  max-width: none;
  min-height: 70px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 0;
  background: rgba(17, 17, 17, 0);
  box-shadow: none;
  backdrop-filter: blur(0);
  pointer-events: auto;
  transition:
    width 620ms var(--ease),
    min-height 620ms var(--ease),
    padding 620ms var(--ease),
    border-color 620ms var(--ease),
    border-radius 620ms var(--ease),
    background 620ms var(--ease),
    box-shadow 620ms var(--ease),
    backdrop-filter 620ms var(--ease);
}

body[data-page="home"] .nav.is-compact .nav-inner {
  width: min(952px, calc(100% - 40px));
  min-height: 52px;
  padding: 0 7px 0 24px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.66);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(22px);
}

body[data-page="home"] .brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  font-size: 26px;
  text-transform: lowercase;
  transition: font-size 620ms var(--ease);
}

body[data-page="home"] .nav.is-compact .brand {
  font-size: 22px;
}

body[data-page="home"] .nav-links {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  text-transform: none;
  transition:
    opacity 360ms var(--ease),
    transform 560ms var(--ease),
    visibility 0s linear 0s;
}

body[data-page="home"] .nav-links a {
  white-space: nowrap;
}

body[data-page="home"] .nav-links a.active,
body[data-page="home"] .nav-links a.is-active {
  color: var(--white);
}

body[data-page="home"] .nav-links-open {
  gap: 30px;
  font-size: 13px;
}

body[data-page="home"] .nav-links-compact {
  gap: 24px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 360ms var(--ease),
    transform 560ms var(--ease),
    visibility 0s linear 360ms;
}

body[data-page="home"] .nav.is-compact .nav-links-open {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate3d(0, -8px, 0);
  transition:
    opacity 300ms var(--ease),
    transform 500ms var(--ease),
    visibility 0s linear 300ms;
}

body[data-page="home"] .nav.is-compact .nav-links-compact {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 360ms var(--ease) 120ms,
    transform 560ms var(--ease),
    visibility 0s linear 0s;
}

body[data-page="home"] .nav-actions {
  grid-column: 3;
  grid-row: 1;
  text-transform: none;
}

body[data-page="home"] .nav-login {
  font-size: 14px;
  text-transform: none;
}

body[data-page="home"] .nav-actions .button {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  text-transform: none;
  font-size: 13px;
}

body:not([data-page="home"]) .nav {
  inset: 0 0 auto;
  padding-top: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
  transform: none;
  transition: padding-top 620ms var(--ease);
}

body:not([data-page="home"]) .nav.scrolled {
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

body:not([data-page="home"]) .nav.is-compact {
  padding-top: 14px;
}

body:not([data-page="home"]) .nav-inner {
  width: calc(100% - clamp(48px, 6.3vw, 132px));
  max-width: none;
  min-height: 70px;
  grid-template-columns: 1fr auto 1fr;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 0;
  background: rgba(17, 17, 17, 0);
  box-shadow: none;
  backdrop-filter: blur(0);
  pointer-events: auto;
  transition:
    width 620ms var(--ease),
    min-height 620ms var(--ease),
    padding 620ms var(--ease),
    border-color 620ms var(--ease),
    border-radius 620ms var(--ease),
    background 620ms var(--ease),
    box-shadow 620ms var(--ease),
    backdrop-filter 620ms var(--ease);
}

body:not([data-page="home"]) .nav.is-compact .nav-inner {
  width: min(952px, calc(100% - 40px));
  min-height: 52px;
  padding: 0 7px 0 24px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.66);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(22px);
}

body:not([data-page="home"]) .brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  font-size: 26px;
  text-transform: lowercase;
  transition: font-size 620ms var(--ease);
}

body:not([data-page="home"]) .nav.is-compact .brand {
  font-size: 22px;
}

body:not([data-page="home"]) .nav-links {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  gap: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  text-transform: none;
}

body:not([data-page="home"]) .nav-links a {
  white-space: nowrap;
}

body:not([data-page="home"]) .nav-actions {
  grid-column: 3;
  grid-row: 1;
  text-transform: none;
}

body:not([data-page="home"]) .nav-login {
  font-size: 14px;
  text-transform: none;
}

body:not([data-page="home"]) .nav-actions .button {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  text-transform: none;
  font-size: 13px;
}

@media (max-width: 820px) {
  body:not([data-page="home"]) .nav.is-compact {
    padding-top: 12px;
  }

  body:not([data-page="home"]) .nav-inner {
    width: calc(100% - 24px);
    min-height: 52px;
    grid-template-columns: 1fr auto;
    padding-left: 18px;
  }

  body:not([data-page="home"]) .nav.is-compact .nav-inner {
    width: calc(100% - 24px);
  }

  body:not([data-page="home"]) .brand {
    grid-column: 1;
    justify-self: start;
    font-size: 20px;
  }

  body:not([data-page="home"]) .nav-actions {
    grid-column: 2;
  }
}

.home-journey {
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--ink);
  background: #f7f3eb;
}

.page.home-journey {
  opacity: 1;
  transform: none;
  animation: none;
}

.home-opener {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  color: var(--white);
  background: #050505;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.home-premium .home-opener {
  min-height: 100vh;
  min-height: 100dvh;
}

.home-opener .hero-content,
.home-premium .home-opener .hero-content {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 128px;
}

.work-overview {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(104px, 13vh, 132px) 0 clamp(42px, 6vh, 70px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfaf7 0%, #f7f3eb 58%, #fbfaf7 100%);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.work-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.028) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

.work-overview-inner {
  position: relative;
  z-index: 1;
  width: min(1368px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.work-overview-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: rgba(17, 17, 17, 0.82);
}

.work-overview-proof p {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
}

.proof-faces {
  display: flex;
  align-items: center;
}

.proof-faces span {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(240, 191, 106, 0.92), rgba(92, 106, 87, 0.9)),
    #d9d2c5;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.12);
}

.proof-faces span + span {
  margin-left: -9px;
}

.proof-faces span:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(177, 184, 174, 0.92)),
    #d9d2c5;
}

.proof-faces span:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(28, 28, 28, 0.94), rgba(240, 191, 106, 0.82)),
    #d9d2c5;
}

.work-overview-labels {
  width: min(760px, 100%);
  margin: -8px auto 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  color: rgba(17, 17, 17, 0.28);
  text-align: center;
}

.work-overview-labels span {
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.work-overview-head {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.work-overview-head .eyebrow {
  margin: 0;
}

.work-overview-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 650;
}

.work-overview-head p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 17px;
  line-height: 1.48;
}

.work-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.work-step {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 12px;
}

.work-step-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #e8e4dc;
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.09);
  isolation: isolate;
}

.work-step-visual img {
  position: absolute;
  inset: 0;
  z-index: -2;
  filter: saturate(0.92) contrast(1.08) brightness(0.82);
}

.storage-visual img {
  object-position: 54% center;
}

.approval-visual img {
  object-position: center center;
}

.storage-visual::after,
.approval-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.42)),
    linear-gradient(90deg, rgba(240, 191, 106, 0.16), transparent 54%);
}

.compare-visual {
  display: grid;
  place-items: end center;
  background:
    linear-gradient(180deg, #efefed, #dedbd4),
    #e8e4dc;
}

.manage-visual {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #f4bd61, #d94723 86%),
    #e8722a;
}

.work-step-number {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: rgba(17, 17, 17, 0.34);
  color: var(--white);
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.mini-confirmation {
  position: absolute;
  left: 13%;
  right: 13%;
  top: 38%;
  z-index: 2;
  min-height: 88px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  background: rgba(17, 17, 17, 0.58);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(5, 5, 5, 0.22);
  backdrop-filter: blur(18px);
}

.mini-confirmation i {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(240, 191, 106, 0.58);
}

.mini-confirmation i::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 3px solid var(--white);
  border-top: 0;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.mini-confirmation strong,
.mini-confirmation span {
  display: block;
}

.mini-confirmation strong {
  font-size: 14px;
  line-height: 1.15;
}

.mini-confirmation span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 650;
}

.mini-confirmation b {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.mini-confirmation b::before {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  margin: 6px auto 0;
  border: solid rgba(17, 17, 17, 0.74);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.mini-browser {
  width: min(76%, 268px);
  height: 82%;
  margin-bottom: -1px;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px 8px 0 0;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.12);
}

.browser-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.browser-top span {
  width: 38px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.1);
}

.browser-list {
  min-height: 54px;
  padding: 9px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  background: #fbfaf7;
}

.browser-list i {
  width: 42px;
  height: 36px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(240, 191, 106, 0.86), rgba(92, 106, 87, 0.72)),
    #d9d2c5;
}

.browser-list:nth-child(3) i {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.86), rgba(240, 191, 106, 0.64)),
    #d9d2c5;
}

.browser-list strong,
.browser-list span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-list strong {
  font-size: 12px;
}

.browser-list span {
  margin-top: 3px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 11px;
  font-weight: 700;
}

.browser-meter {
  align-self: end;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  overflow: hidden;
}

.browser-meter span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.mini-stack {
  position: absolute;
  right: 16%;
  top: 30%;
  z-index: 2;
  width: min(250px, 68%);
  padding: 8px;
  border-radius: 8px;
  display: grid;
  gap: 7px;
  background: rgba(17, 17, 17, 0.6);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(5, 5, 5, 0.2);
  backdrop-filter: blur(18px);
}

.mini-stack div {
  min-height: 42px;
  padding: 8px;
  border-radius: 7px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
}

.mini-stack i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(240, 191, 106, 0.16);
}

.mini-stack span {
  font-size: 12px;
  font-weight: 750;
}

.mini-phone {
  width: min(68%, 230px);
  height: 82%;
  padding: 16px;
  border-radius: 28px 28px 0 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(5, 5, 5, 0.24);
  overflow: hidden;
  transform: translateY(8%);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
}

.phone-top strong {
  font-size: 14px;
  text-transform: lowercase;
}

.phone-card {
  min-height: 76px;
  padding: 12px;
  border-radius: 8px;
  display: grid;
  align-content: center;
  gap: 5px;
  background: #f5f3ef;
}

.phone-card span,
.phone-total span {
  color: rgba(17, 17, 17, 0.46);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-card strong {
  font-size: 15px;
  line-height: 1.15;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.phone-grid i {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 191, 106, 0.74), rgba(17, 17, 17, 0.1)),
    #f2efe8;
}

.phone-grid i:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(92, 106, 87, 0.7), rgba(17, 17, 17, 0.08)),
    #f2efe8;
}

.phone-grid i:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.78), rgba(240, 191, 106, 0.34)),
    #f2efe8;
}

.phone-total {
  min-height: 42px;
  padding-top: 10px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-total strong {
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 18px;
}

.work-step h3 {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.08;
  font-weight: 650;
}

.work-step p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 500;
}

#scroll-container {
  position: relative;
  height: 400vh;
  min-height: 400vh;
  background: #f7f3eb;
}

.sticky-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100dvh;
  isolation: isolate;
  overflow: hidden;
  color: var(--ink);
  background: #f7f3eb;
  transition:
    color 240ms var(--ease),
    background 240ms var(--ease);
}

.sticky-viewport[data-tone="dark"] {
  color: var(--white);
  background: #050505;
}

.sticky-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(248, 245, 239, 0.98), rgba(248, 245, 239, 0.78) 34%, rgba(248, 245, 239, 0.15) 62%, rgba(248, 245, 239, 0.82)),
    linear-gradient(180deg, rgba(248, 245, 239, 0.56), rgba(248, 245, 239, 0.2) 46%, rgba(248, 245, 239, 0.74));
}

.sticky-viewport[data-tone="dark"]::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.58) 36%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0.84)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.08) 44%, rgba(5, 5, 5, 0.78));
}

.story-backgrounds,
.story-media {
  position: absolute;
  inset: 0;
}

.story-backgrounds {
  z-index: -3;
}

.story-media {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 0, 0) scale(1.035);
  will-change: opacity, transform;
}

.story-media.is-active,
.story-media.is-exiting {
  opacity: 1;
  visibility: visible;
}

.story-media.is-active {
  z-index: 1;
}

.story-media.is-entering {
  z-index: 2;
}

.story-media.is-exiting {
  z-index: 1;
}

.story-media img {
  filter: saturate(0.86) contrast(1.08) brightness(0.88);
  object-position: center center;
}

.story-media[data-stage="0"] img {
  filter: saturate(1.02) contrast(1.05) brightness(1.06);
}

.story-media[data-stage="1"] img {
  object-position: center 58%;
}

.story-media[data-stage="2"] img {
  filter: saturate(0.82) contrast(1.12) brightness(1.02);
}

.story-media[data-stage="3"] img {
  filter: saturate(0.9) contrast(1.12) brightness(0.74);
}

.scroll-story-layout {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 56px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(340px, 0.48fr) minmax(210px, 0.28fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  padding: 118px 0 58px;
}

.step-copy {
  position: relative;
  min-height: clamp(440px, calc(100vh - 176px), 650px);
}

.step-text {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
}

.step-text.is-active,
.step-text.is-exiting {
  opacity: 1;
  visibility: visible;
}

.step-text.is-active {
  z-index: 1;
  pointer-events: auto;
}

.step-text.is-entering {
  z-index: 2;
}

.step-text.is-exiting {
  z-index: 1;
}

.story-panel .journey-copy,
.story-panel .journey-prompts {
  grid-column: auto;
  grid-row: auto;
}

.scroll-story .journey-copy h1,
.scroll-story .journey-copy h2 {
  font-size: 72px;
}

.scroll-story .journey-copy p:not(.eyebrow) {
  color: currentColor;
}

.story-device-stack {
  position: relative;
  width: min(520px, 100%);
  min-height: clamp(360px, 54svh, 540px);
  margin: 0 auto;
  perspective: 1200px;
}

.story-device-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  grid-column: auto;
  grid-row: auto;
  justify-self: stretch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transform-origin: center top;
  will-change: opacity, transform;
}

.story-device-panel.is-active,
.story-device-panel.is-exiting {
  opacity: 1;
  visibility: visible;
}

.story-device-panel.is-active {
  z-index: 1;
}

.story-device-panel.is-entering {
  z-index: 2;
}

.story-device-panel.is-exiting {
  z-index: 1;
}

.motion-ready .step-text.is-entering.from-bottom,
.motion-ready .story-device-panel.is-entering.from-bottom {
  animation: storySlideInFromBottom 760ms var(--ease) both;
}

.motion-ready .step-text.is-entering.from-top,
.motion-ready .story-device-panel.is-entering.from-top {
  animation: storySlideInFromTop 760ms var(--ease) both;
}

.motion-ready .step-text.is-exiting.from-bottom,
.motion-ready .story-device-panel.is-exiting.from-bottom {
  animation: storySlideOutToTop 560ms var(--ease) both;
}

.motion-ready .step-text.is-exiting.from-top,
.motion-ready .story-device-panel.is-exiting.from-top {
  animation: storySlideOutToBottom 560ms var(--ease) both;
}

.motion-ready .story-media.is-entering {
  animation: storyMediaIn 760ms var(--ease) both;
}

.motion-ready .story-media.is-exiting {
  animation: storyMediaOut 760ms var(--ease) both;
}

@keyframes storySlideInFromBottom {
  from {
    opacity: 0;
    transform: translate3d(0, 88px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes storySlideInFromTop {
  from {
    opacity: 0;
    transform: translate3d(0, -88px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes storySlideOutToTop {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -44px, 0) scale(0.99);
  }
}

@keyframes storySlideOutToBottom {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 44px, 0) scale(0.99);
  }
}

@keyframes storyMediaIn {
  from {
    opacity: 0;
    transform: translate3d(0, 2.5vh, 0) scale(1.055);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.035);
  }
}

@keyframes storyMediaOut {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.035);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -1.5vh, 0) scale(1.045);
  }
}

.story-device-panel[data-tone="dark"] {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(8, 8, 8, 0.62);
  color: var(--white);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
}

.story-device-panel[data-tone="dark"] .device-top,
.story-device-panel[data-tone="dark"] .device-field,
.story-device-panel[data-tone="dark"] .approval-head,
.story-device-panel[data-tone="dark"] .approval-line,
.story-device-panel[data-tone="dark"] .approval-message,
.story-device-panel[data-tone="dark"] .dashboard-row,
.story-device-panel[data-tone="dark"] .dashboard-total,
.story-device-panel[data-tone="dark"] .space-card,
.story-device-panel[data-tone="dark"] .device-note {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.sticky-viewport[data-tone="dark"] .journey-actions .button {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.sticky-viewport[data-tone="dark"] .journey-actions .button.ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.sticky-viewport[data-tone="dark"] .journey-prompts details {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.6);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.sticky-viewport[data-tone="dark"] .journey-prompts summary::after {
  background: rgba(255, 255, 255, 0.12);
}

.step-numbers {
  position: relative;
  display: grid;
  gap: 22px;
  justify-items: stretch;
}

.step-number {
  position: relative;
  opacity: 0.3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  color: currentColor;
  font-size: 19px;
  line-height: 1.16;
  font-weight: 750;
  transition:
    opacity 180ms linear,
    transform 260ms var(--ease);
}

.step-number::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: -16px;
  width: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 260ms var(--ease);
}

.step-number strong {
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 17px;
}

.step-number.is-active {
  opacity: 1;
  transform: translateX(-2px);
}

.step-number.is-active::before {
  transform: scaleY(1);
}

.step-number:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 8px;
}

.post-story-cta {
  position: relative;
  z-index: 8;
  padding: clamp(92px, 10vh, 112px) 0 clamp(28px, 4vh, 44px);
  display: grid;
  align-items: start;
  color: var(--ink);
  background: var(--white);
  isolation: isolate;
}

.post-story-cta-inner {
  width: min(720px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.post-story-kicker {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.post-story-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

.post-story-list {
  width: min(684px, 100%);
  display: grid;
  gap: 0;
  margin-top: 4px;
  text-align: left;
}

.post-story-list div {
  min-height: 40px;
  display: grid;
  grid-template-columns: minmax(210px, 0.43fr) minmax(0, 0.57fr);
  gap: 28px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 3px;
}

.post-story-list div:nth-child(odd) {
  background: rgba(17, 17, 17, 0.035);
}

.post-story-list strong {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 650;
}

.post-story-list span {
  color: rgba(17, 17, 17, 0.58);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 560;
}

@media (max-width: 1180px) {
  .work-overview {
    min-height: auto;
    padding: 104px 0 82px;
  }

  .work-overview-inner {
    width: calc(100% - 44px);
    gap: 28px;
  }

  .work-overview-labels {
    margin-bottom: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-overview-head h2 {
    font-size: 36px;
  }

  .work-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .work-overview {
    padding: 88px 0 68px;
  }

  .work-overview-inner {
    width: calc(100% - 28px);
  }

  .work-overview-proof {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .work-overview-proof p {
    font-size: 14px;
  }

  .work-overview-labels {
    display: none;
  }

  .work-overview-head {
    justify-items: start;
    text-align: left;
  }

  .work-overview-head h2 {
    font-size: 31px;
  }

  .work-overview-head p:not(.eyebrow) {
    font-size: 15px;
  }

  .work-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .work-step {
    gap: 10px;
  }

  .work-step-visual {
    aspect-ratio: 16 / 11;
  }

  .mini-confirmation {
    left: 9%;
    right: 9%;
    top: 34%;
  }

  .mini-browser {
    width: min(72%, 260px);
  }

  .mini-phone {
    width: min(58%, 210px);
    min-width: 174px;
  }

  .work-step h3 {
    font-size: 21px;
  }
}

@media (max-width: 1180px) {
  .scroll-story-layout {
    width: calc(100% - 44px);
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    grid-template-rows: minmax(0, 1fr);
    align-content: center;
    gap: 22px;
    padding: 104px 0;
  }

  .step-copy {
    min-height: clamp(360px, calc(100vh - 208px), 560px);
  }

  .step-text {
    grid-template-rows: auto auto;
    align-content: center;
  }

  .scroll-story .journey-copy {
    max-width: 680px;
  }

  .scroll-story .journey-copy h1,
  .scroll-story .journey-copy h2 {
    font-size: 56px;
  }

  .scroll-story .journey-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .story-device-stack {
    width: min(520px, 100%);
    min-height: 300px;
    justify-self: end;
  }

  .step-numbers {
    position: absolute;
    right: 22px;
    bottom: 18px;
    left: 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.64);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(22px);
  }

  .step-number {
    min-height: 38px;
    grid-template-columns: 1fr;
    justify-items: center;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0;
    transform: none;
  }

  .step-number span {
    display: none;
  }

  .step-number strong {
    font-size: 13px;
  }

  .step-number::before {
    inset: auto 12px 4px;
    width: auto;
    height: 2px;
    transform: scaleX(0);
  }

  .step-number.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    transform: none;
  }

  .step-number.is-active::before {
    transform: scaleX(1);
  }
}

@media (max-width: 760px) {
  .scroll-story-layout {
    width: calc(100% - 28px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 76px 0 82px;
  }

  .step-copy {
    min-height: clamp(220px, calc(100vh - 322px), 330px);
  }

  .story-panel .journey-prompts {
    display: none;
  }

  .scroll-story .journey-copy h1,
  .scroll-story .journey-copy h2 {
    font-size: 40px;
  }

  .scroll-story .journey-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .story-device-stack {
    min-height: 210px;
    justify-self: stretch;
  }

  .post-story-cta {
    padding: 88px 0 40px;
  }

  .post-story-cta-inner {
    width: calc(100% - 28px);
    gap: 24px;
  }

  .post-story-kicker {
    font-size: 16px;
  }

  .post-story-cta h2 {
    font-size: 36px;
  }

  .post-story-list div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 13px 14px;
  }

  .post-story-list strong {
    font-size: 16px;
  }

  .post-story-list span {
    font-size: 15px;
  }
}

.journey-step {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: grid;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.journey-step[data-tone="light"] {
  color: var(--ink);
  background: #f7f3eb;
}

.journey-step[data-tone="dark"] {
  color: var(--white);
  background: #050505;
}

.journey-step::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.journey-step[data-tone="light"]::after {
  background:
    linear-gradient(90deg, rgba(248, 245, 239, 0.98), rgba(248, 245, 239, 0.78) 34%, rgba(248, 245, 239, 0.15) 62%, rgba(248, 245, 239, 0.82)),
    linear-gradient(180deg, rgba(248, 245, 239, 0.56), rgba(248, 245, 239, 0.2) 46%, rgba(248, 245, 239, 0.74));
}

.journey-step[data-tone="dark"]::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.58) 36%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0.84)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.08) 44%, rgba(5, 5, 5, 0.78));
}

.journey-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.journey-media img {
  filter: saturate(0.86) contrast(1.08) brightness(0.88);
  object-position: center center;
  transform: translate3d(0, var(--scene-y, 0), 0) scale(1.08);
  transition:
    filter 980ms var(--ease),
    transform 1380ms var(--ease);
  will-change: transform;
}

.journey-step:nth-of-type(1) .journey-media img {
  filter: saturate(1.02) contrast(1.05) brightness(1.06);
  object-position: center center;
}

.journey-step:nth-of-type(2) .journey-media img {
  object-position: center 58%;
}

.journey-step:nth-of-type(3) .journey-media img {
  filter: saturate(0.82) contrast(1.12) brightness(1.02);
  object-position: center center;
}

.journey-step:nth-of-type(4) .journey-media img {
  filter: saturate(0.9) contrast(1.12) brightness(0.74);
  object-position: center center;
}

.motion-ready .journey-step.scene-active .journey-media img {
  transform: translate3d(0, var(--scene-y-reverse, 0), 0) scale(1.13);
}

.journey-layout {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(340px, 0.48fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(28px, 7vw, 116px);
  align-items: center;
  padding: clamp(108px, 14vh, 148px) clamp(190px, 17vw, 270px) clamp(34px, 6vh, 58px) 0;
}

.journey-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  max-width: 580px;
}

.journey-copy h1,
.journey-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.04;
  font-weight: 650;
}

.journey-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 18px 0 0;
  color: currentColor;
  opacity: 0.72;
  font-size: clamp(16px, 1.18vw, 18px);
  font-weight: 650;
  line-height: 1.48;
}

.journey-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.journey-actions .button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  text-transform: none;
  font-size: 14px;
}

.journey-step[data-tone="dark"] .journey-actions .button {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.journey-actions .button.ghost-dark {
  background: rgba(17, 17, 17, 0.08);
  color: var(--ink);
  border-color: rgba(17, 17, 17, 0.18);
}

.journey-actions .button.ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.journey-device {
  grid-column: 2;
  grid-row: 1 / 3;
  justify-self: center;
  width: min(520px, 100%);
  min-height: clamp(360px, 54svh, 540px);
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.18);
  color: var(--ink);
  overflow: hidden;
  transform-style: preserve-3d;
}

.journey-step[data-tone="dark"] .journey-device {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(8, 8, 8, 0.62);
  color: var(--white);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
}

.device-top,
.device-field,
.approval-head,
.approval-line,
.approval-message,
.dashboard-row,
.dashboard-total,
.space-card,
.device-note {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.journey-step[data-tone="dark"] .device-top,
.journey-step[data-tone="dark"] .device-field,
.journey-step[data-tone="dark"] .approval-head,
.journey-step[data-tone="dark"] .approval-line,
.journey-step[data-tone="dark"] .approval-message,
.journey-step[data-tone="dark"] .dashboard-row,
.journey-step[data-tone="dark"] .dashboard-total,
.journey-step[data-tone="dark"] .space-card,
.journey-step[data-tone="dark"] .device-note {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.device-top,
.approval-head,
.dashboard-total {
  min-height: 68px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.device-top span,
.device-field span,
.approval-head span,
.space-card span,
.dashboard-row span,
.dashboard-total span {
  opacity: 0.58;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.device-top strong,
.approval-head strong,
.dashboard-total strong {
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 15px;
}

.device-field {
  min-height: 82px;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.device-field strong,
.space-card strong,
.dashboard-row strong {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
  font-weight: 650;
}

.device-bars {
  height: 128px;
  padding: 18px;
  border-radius: 8px;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background:
    linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.06)),
    rgba(255, 255, 255, 0.52);
}

.device-bars i {
  display: block;
  border-radius: 999px 999px 4px 4px;
  background: var(--accent);
}

.device-bars i:nth-child(1) {
  height: 44%;
}

.device-bars i:nth-child(2) {
  height: 74%;
  background: var(--ink);
}

.device-bars i:nth-child(3) {
  height: 58%;
  background: #7f8c78;
}

.device-note {
  min-height: 72px;
  padding: 14px;
  display: grid;
  align-items: center;
  color: rgba(17, 17, 17, 0.62);
  font-weight: 700;
}

.compare-device {
  align-content: center;
}

.space-card {
  min-height: 126px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.space-card.is-featured {
  min-height: 156px;
  background:
    linear-gradient(135deg, rgba(240, 191, 106, 0.26), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.13);
}

.space-card em,
.dashboard-row em {
  opacity: 0.6;
  font-style: normal;
  font-weight: 800;
}

.approval-device {
  align-content: center;
}

.approval-line {
  min-height: 72px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.approval-line i {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(240, 191, 106, 0.16);
}

.approval-line.muted {
  opacity: 0.52;
}

.approval-message {
  min-height: 78px;
  padding: 14px;
  display: grid;
  align-items: center;
  color: rgba(17, 17, 17, 0.62);
  font-weight: 750;
}

.dashboard-device {
  align-content: center;
}

.dashboard-row {
  min-height: 112px;
  padding: 16px;
  display: grid;
  gap: 8px;
}

.dashboard-total strong {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
}

.journey-prompts {
  grid-column: 1;
  grid-row: 2;
  width: min(480px, 100%);
  display: grid;
  gap: 8px;
  align-self: end;
}

.journey-prompts details {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.journey-step[data-tone="dark"] .journey-prompts details {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.6);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.journey-prompts summary {
  min-height: 56px;
  padding: 0 12px 0 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
}

.journey-prompts summary::-webkit-details-marker {
  display: none;
}

.journey-prompts summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(17, 17, 17, 0.1);
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 18px;
}

.journey-step[data-tone="dark"] .journey-prompts summary::after {
  background: rgba(255, 255, 255, 0.12);
}

.journey-prompts details[open] summary::after {
  content: "-";
}

.journey-prompts p {
  margin: 0;
  padding: 0 18px 18px;
  color: currentColor;
  opacity: 0.68;
  line-height: 1.45;
}

.journey-nav {
  position: fixed;
  z-index: 54;
  top: 50%;
  right: clamp(36px, 4vw, 72px);
  width: min(270px, 22vw);
  display: grid;
  gap: 22px;
  transform: translateY(-50%);
  pointer-events: auto;
  transition:
    opacity 260ms var(--ease),
    visibility 0s linear 0s,
    transform 260ms var(--ease);
}

.journey-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-44%);
  transition:
    opacity 220ms var(--ease),
    visibility 0s linear 220ms,
    transform 220ms var(--ease);
}

.journey-nav a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  color: rgba(17, 17, 17, 0.46);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.16;
  font-weight: 750;
  transition:
    color 260ms var(--ease),
    opacity 260ms var(--ease),
    transform 260ms var(--ease);
}

.journey-nav[data-tone="dark"] a {
  color: rgba(255, 255, 255, 0.42);
}

.journey-nav a::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: -16px;
  width: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 260ms var(--ease);
}

.journey-nav a.is-active {
  color: var(--ink);
  transform: translateX(-2px);
}

.journey-nav[data-tone="dark"] a.is-active {
  color: var(--white);
}

.journey-nav a.is-active::before {
  transform: scaleY(1);
}

.journey-nav strong {
  font-family: "Geist Mono", "JetBrains Mono", monospace;
  font-size: 17px;
}

.motion-ready .journey-copy.reveal {
  transform: translateY(48px);
  transition-duration: 1320ms;
}

.motion-ready .journey-copy.reveal.is-visible {
  transform: translate3d(0, var(--scene-y-reverse, 0), 0);
}

.motion-ready .journey-device.reveal {
  opacity: 0;
  transform: translateY(64px) rotateX(7deg) scale(0.96);
  transform-origin: center top;
  clip-path: inset(7% 0 8% 0);
  transition:
    opacity 1380ms var(--ease),
    transform 1380ms var(--ease),
    clip-path 1380ms var(--ease);
}

.motion-ready .journey-device.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--scene-y, 0), 0) rotateX(var(--scene-tilt, 0deg)) scale(1);
  clip-path: inset(0);
}

.motion-ready .journey-prompts.reveal {
  transform: translateY(34px);
  transition-duration: 1240ms;
}

.motion-ready .journey-prompts.reveal.is-visible {
  transform: translate3d(0, var(--scene-y-reverse, 0), 0);
}

@media (min-width: 1181px) {
  .home-opener,
  .home-opener .hero-content,
  .home-premium .home-opener,
  .home-premium .home-opener .hero-content,
  .journey-step,
  .journey-layout {
    height: 100vh;
    min-height: 100vh;
  }
}

@media (max-width: 1180px) {
  .home-snap {
    scroll-snap-type: y proximity;
  }

  .journey-layout {
    width: calc(100% - 44px);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-content: center;
    gap: 22px;
    padding: 104px 0 126px;
  }

  .journey-copy,
  .journey-device,
  .journey-prompts {
    grid-column: 1;
  }

  .journey-copy {
    grid-row: 1;
    max-width: 680px;
  }

  .journey-device {
    grid-row: 2;
    justify-self: end;
    width: min(520px, 100%);
    min-height: 300px;
  }

  .journey-prompts {
    grid-row: 3;
    width: min(620px, 100%);
  }

  .journey-nav {
    top: auto;
    right: 22px;
    bottom: 18px;
    left: 22px;
    width: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.64);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(22px);
    transform: none;
  }

  .journey-nav a,
  .journey-nav[data-tone="dark"] a {
    min-height: 38px;
    grid-template-columns: 1fr;
    justify-items: center;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0;
  }

  .journey-nav a span {
    display: none;
  }

  .journey-nav strong {
    font-size: 13px;
  }

  .journey-nav a::before {
    inset: auto 12px 4px;
    width: auto;
    height: 2px;
    transform: scaleX(0);
  }

  .journey-nav a.is-active,
  .journey-nav[data-tone="dark"] a.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    transform: none;
  }

  .journey-nav a.is-active::before {
    transform: scaleX(1);
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .nav {
    inset: 0 0 auto;
    padding-top: 0;
  }

  body[data-page="home"] .nav.is-compact {
    padding-top: 12px;
  }

  body[data-page="home"] .nav-inner {
    width: calc(100% - 24px);
    min-height: 52px;
    padding-left: 18px;
  }

  body[data-page="home"] .nav.is-compact .nav-inner {
    width: calc(100% - 24px);
  }

  body[data-page="home"] .brand {
    font-size: 20px;
  }

  .journey-step::after {
    background:
      linear-gradient(180deg, rgba(248, 245, 239, 0.92), rgba(248, 245, 239, 0.58) 36%, rgba(248, 245, 239, 0.86)) !important;
  }

  .journey-step[data-tone="dark"]::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.58) 40%, rgba(5, 5, 5, 0.9)) !important;
  }

  .journey-copy h1,
  .journey-copy h2 {
    font-size: clamp(38px, 10.5vw, 58px);
  }

  .journey-copy p:not(.eyebrow) {
    max-width: 620px;
    font-size: 15px;
  }

  .home-opener,
  .home-premium .home-opener {
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
  }

  .home-opener .hero-content,
  .home-premium .home-opener .hero-content {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 98px;
  }

  .journey-device {
    justify-self: stretch;
  }
}

@media (max-width: 620px) {
  .journey-layout {
    width: calc(100% - 28px);
    gap: 18px;
    padding: 88px 0 104px;
  }

  .journey-actions .button {
    min-height: 44px;
    padding: 0 16px;
  }

  .journey-device {
    min-height: 244px;
    padding: 14px;
    gap: 10px;
  }

  .device-bars {
    height: 82px;
  }

  .device-field,
  .approval-line,
  .dashboard-row {
    min-height: 58px;
  }

  .device-field strong,
  .space-card strong,
  .dashboard-row strong {
    font-size: 18px;
  }

  .space-card {
    min-height: 76px;
    padding: 12px;
    gap: 5px;
  }

  .space-card.is-featured {
    min-height: 92px;
  }

  .journey-prompts details:nth-child(2) {
    display: none;
  }

  .journey-prompts summary {
    min-height: 50px;
    padding-left: 14px;
    font-size: 14px;
  }

  .journey-prompts p {
    padding: 0 14px 14px;
    font-size: 13px;
  }

  .journey-nav {
    right: 14px;
    bottom: 12px;
    left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-snap {
    scroll-snap-type: none;
  }

  #scroll-container {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .sticky-viewport {
    position: relative;
    height: auto;
    min-height: 0;
    align-items: start;
  }

  .step-copy {
    min-height: 0;
    display: grid;
    gap: 28px;
  }

  .step-text {
    position: relative;
    top: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .story-media:not(:first-child),
  .story-device-panel:not(:first-child) {
    display: none;
  }

  body[data-page="home"] .nav,
  body[data-page="home"] .nav-inner,
  body[data-page="home"] .brand,
  body[data-page="home"] .nav-links,
  body:not([data-page="home"]) .nav,
  body:not([data-page="home"]) .nav-inner,
  body:not([data-page="home"]) .brand {
    transition: none;
  }
}
