:root {
  --bg: #080706;
  --ink: #fff8ed;
  --muted: #b9aaa0;
  --panel: #15110f;
  --panel-2: #211815;
  --line: rgba(255, 255, 255, 0.13);
  --red: #f0182d;
  --red-dark: #9b0d19;
  --gold: #d6a44a;
  --green: #20d06b;
  --cream: #fff3df;
  --map: #1a1d1f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

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

button,
a,
input {
  font: inherit;
}

button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
}

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

svg {
  flex: 0 0 auto;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  letter-spacing: 0;
}

.site-shell {
  background:
    radial-gradient(circle at 20% 0%, rgba(240, 24, 45, 0.24), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(214, 164, 74, 0.16), transparent 28%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.nav-bar {
  align-items: center;
  background: rgba(8, 7, 6, 0.88);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 14px clamp(16px, 4vw, 58px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 0;
  width: fit-content;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--red) 0%, #ff4d58 55%, var(--gold) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(240, 24, 45, 0.28);
  color: white;
  display: inline-flex;
  font-weight: 950;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.brand span:last-child {
  display: grid;
  line-height: 1;
  min-width: 0;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1;
  white-space: nowrap;
}

.brand small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-bar nav {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
  min-width: 0;
}

.nav-bar nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.download-pill,
.primary-action,
.secondary-action,
.booking-total a,
.dark-action {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
}

.download-pill {
  background: white;
  color: #111;
  justify-self: end;
  white-space: nowrap;
}

.download-pill svg,
.primary-action svg,
.secondary-action svg,
.booking-total svg,
.dark-action svg {
  height: 18px;
  width: 18px;
}

.arrival-hero {
  min-height: 78svh;
  overflow: hidden;
  position: relative;
}

.arrival-bg,
.arrival-shade {
  inset: 0;
  height: 100%;
  position: absolute;
  width: 100%;
}

.arrival-bg {
  object-fit: cover;
  object-position: center;
}

.arrival-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.36) 42%, rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.88) 0%, transparent 34%);
  z-index: 1;
}

.arrival-copy {
  display: grid;
  gap: 22px;
  margin-left: auto;
  max-width: 650px;
  padding: clamp(56px, 9vw, 128px) clamp(18px, 5vw, 70px) 96px;
  position: relative;
  z-index: 2;
}

.kicker {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0;
  text-transform: uppercase;
  width: fit-content;
}

.kicker.dark {
  color: var(--red);
}

.kicker svg {
  height: 17px;
  width: 17px;
}

.arrival-copy h1 {
  font-size: 6.4rem;
  font-weight: 950;
  line-height: 0.98;
  max-width: 100%;
  white-space: nowrap;
}

.arrival-copy p,
.section-head p,
.moment-card p,
.launch-strip p,
.partner-network p,
.market-plan p,
.profile-promo p,
.compliance-page p,
.profile-page p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.hero-actions,
.arrival-stats,
.host-meta,
.host-tags,
.site-footer nav,
.profile-actions,
.profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.primary-action {
  background: var(--red);
  color: white;
}

.secondary-action {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  color: white;
}

.arrival-stats span,
.host-meta span,
.host-tags span,
.session-proof span,
.profile-stats span,
.safety-note span {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  gap: 8px;
  min-height: 38px;
  padding: 7px 10px;
}

.arrival-stats svg,
.host-meta svg,
.session-proof svg,
.profile-stats svg,
.safety-note svg {
  height: 16px;
  width: 16px;
}

.live-map-section,
.vip-band,
.how-it-feels,
.partner-network,
.market-plan,
.profile-promo,
.compliance-page,
.profile-page {
  padding: 64px clamp(16px, 4vw, 58px);
}

.launch-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1440px;
  padding: 22px clamp(16px, 4vw, 58px) 0;
}

.launch-strip article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  min-height: 158px;
  padding: 18px;
}

.launch-strip span,
.market-grid span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.launch-strip strong {
  color: white;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1;
}

.launch-strip p {
  color: var(--muted);
  line-height: 1.45;
}

.section-head {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
  margin: 0 auto 26px;
  max-width: 1440px;
}

.section-head h2,
.moment-card h2,
.profile-promo h2,
.compliance-page h1,
.profile-page h1 {
  font-size: clamp(2.15rem, 4.4vw, 5rem);
  font-weight: 920;
  line-height: 0.94;
}

.app-experience {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(440px, 1fr) minmax(330px, 420px);
  margin: 0 auto;
  max-width: 1440px;
}

.map-canvas {
  aspect-ratio: 1.62;
  background:
    radial-gradient(circle at 48% 54%, rgba(240, 24, 45, 0.28), transparent 10%),
    linear-gradient(35deg, transparent 0 47%, rgba(255, 255, 255, 0.12) 48% 49%, transparent 50%),
    linear-gradient(120deg, transparent 0 39%, rgba(255, 255, 255, 0.1) 40% 41%, transparent 42%),
    var(--map);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.map-grid-lines {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  inset: 0;
  position: absolute;
}

.map-search {
  align-items: center;
  background: rgba(10, 9, 8, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px 1fr 18px;
  left: 18px;
  min-height: 48px;
  padding: 0 14px;
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 5;
}

.map-search svg {
  color: var(--gold);
  height: 18px;
  width: 18px;
}

.strip-label {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.8rem;
  font-weight: 850;
  left: 52%;
  position: absolute;
  text-transform: uppercase;
  top: 48%;
  transform: rotate(57deg);
}

.user-location {
  align-items: center;
  background: white;
  border-radius: 8px;
  bottom: 21%;
  color: #101010;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 6px;
  left: 48%;
  padding: 8px 10px;
  position: absolute;
  z-index: 4;
}

.user-location svg {
  color: var(--red);
  height: 14px;
  width: 14px;
}

.map-brand-chip {
  align-items: center;
  background: rgba(8, 7, 6, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 18px;
  color: white;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 900;
  gap: 8px;
  left: 18px;
  min-height: 40px;
  padding: 6px 10px;
  position: absolute;
  z-index: 5;
}

.map-brand-chip span {
  align-items: center;
  background: var(--red);
  border-radius: 6px;
  display: inline-flex;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.host-pin {
  background: transparent;
  border-radius: 999px;
  display: block;
  height: clamp(62px, 7vw, 92px);
  padding: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(62px, 7vw, 92px);
  z-index: 4;
}

.host-pin img {
  border: 3px solid var(--red);
  border-radius: 999px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.host-pin span {
  background: var(--green);
  border: 3px solid #111;
  border-radius: 999px;
  bottom: 4px;
  height: 20px;
  position: absolute;
  right: 4px;
  width: 20px;
}

.host-pin.active img {
  border-color: var(--gold);
  box-shadow: 0 0 0 8px rgba(214, 164, 74, 0.22), 0 0 44px rgba(214, 164, 74, 0.4);
}

.route-line {
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  height: 3px;
  opacity: 0.7;
  position: absolute;
  transform-origin: left center;
  z-index: 2;
}

.route-line.one {
  left: 50%;
  top: 67%;
  transform: rotate(-36deg);
  width: 220px;
}

.route-line.two {
  left: 52%;
  top: 67%;
  transform: rotate(34deg);
  width: 180px;
}

.booking-card,
.moment-card,
.flow-steps article,
.profile-promo,
.compliance-card,
.profile-panel,
.profile-booking-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.booking-card {
  align-content: start;
  display: grid;
  gap: 18px;
  padding: 18px;
}

.host-summary {
  display: grid;
  gap: 14px;
  grid-template-columns: 112px minmax(0, 1fr);
}

.host-summary img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  width: 112px;
}

.availability {
  align-items: center;
  color: var(--green);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 850;
  gap: 6px;
  margin-bottom: 8px;
}

.availability svg {
  height: 14px;
  width: 14px;
}

.host-summary h3 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.host-summary p {
  color: var(--muted);
  line-height: 1.45;
  margin-top: 8px;
}

.host-meta span {
  font-size: 0.86rem;
}

.time-selector {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, 1fr);
  padding: 6px;
}

.time-selector button {
  background: transparent;
  border-radius: 6px;
  color: var(--muted);
  min-height: 40px;
}

.time-selector button.selected {
  background: white;
  color: #111;
  font-weight: 900;
}

.host-tags span {
  background: rgba(240, 24, 45, 0.14);
  border: 1px solid rgba(240, 24, 45, 0.32);
  border-radius: 8px;
  color: #ffd2d7;
  font-size: 0.84rem;
  padding: 7px 9px;
}

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

.session-proof span {
  color: var(--muted);
  font-size: 0.82rem;
  justify-content: flex-start;
}

.booking-total {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-top: 18px;
}

.booking-total small {
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.booking-total strong {
  font-size: 2rem;
  line-height: 1;
}

.booking-total a {
  background: var(--red);
  color: white;
  white-space: nowrap;
}

.how-it-feels {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(460px, 1.28fr);
  margin: 0 auto;
  max-width: 1556px;
}

.moment-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.moment-card svg {
  color: var(--gold);
  height: 28px;
  width: 28px;
}

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

.flow-steps article {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 18px;
}

.flow-steps article span {
  align-items: center;
  background: var(--red);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.flow-steps strong {
  font-size: 1.2rem;
}

.flow-steps p {
  color: var(--muted);
  line-height: 1.45;
}

.vip-band {
  background: var(--cream);
  color: #15100d;
}

.vip-band .section-head p,
.vip-band .kicker,
.profile-promo p {
  color: #6b5547;
}

.vip-media-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(380px, 0.9fr) minmax(460px, 1.1fr);
  margin: 0 auto;
  max-width: 1440px;
}

.video-frame {
  background: #000;
  border-radius: 8px;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.video-frame iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

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

.gallery-grid figure {
  border-radius: 8px;
  margin: 0;
  min-height: 204px;
  overflow: hidden;
  position: relative;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-grid figcaption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
  bottom: 0;
  color: white;
  font-weight: 800;
  left: 0;
  padding: 46px 14px 14px;
  position: absolute;
  right: 0;
}

.partner-network {
  background:
    linear-gradient(180deg, rgba(12, 32, 38, 0.54), rgba(8, 7, 6, 0.98)),
    var(--bg);
  display: grid;
  gap: 28px;
}

.partner-proof {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(300px, 0.84fr) minmax(320px, 1fr);
  margin: 0 auto;
  max-width: 1280px;
}

.partner-proof > img {
  aspect-ratio: 1.08;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.partner-proof > div,
.commission-panel > div:first-child {
  display: grid;
  gap: 18px;
}

.partner-proof h2,
.commission-panel h2 {
  font-size: clamp(2.15rem, 4.4vw, 5rem);
  font-weight: 920;
  line-height: 0.94;
}

.partner-proof p {
  color: var(--muted);
}

.commission-panel {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1280px;
}

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

.commission-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  min-height: 174px;
  padding: 18px;
}

.commission-grid strong {
  color: white;
  font-size: 1.2rem;
}

.commission-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.profile-promo {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  margin: 64px auto;
  max-width: 1180px;
}

.profile-promo > img {
  aspect-ratio: 0.9;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.profile-promo > div {
  display: grid;
  gap: 18px;
  padding: 20px 24px 20px 0;
}

.dark-action {
  background: var(--red);
  color: white;
  width: fit-content;
}

.market-plan {
  background: #f7efe2;
  color: #15100d;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
}

.market-plan > div:first-child {
  align-content: start;
  display: grid;
  gap: 16px;
}

.market-plan h2 {
  font-size: clamp(2.15rem, 4vw, 4.6rem);
  font-weight: 920;
  line-height: 0.94;
}

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

.market-grid article {
  background: white;
  border: 1px solid rgba(20, 17, 16, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 18px;
}

.market-grid strong {
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1;
}

.market-grid p {
  color: #6b5547;
  line-height: 1.5;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(16px, 4vw, 58px);
}

.site-footer > div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: white;
}

.site-footer nav a {
  color: var(--muted);
  font-weight: 800;
}

.profile-page {
  background:
    linear-gradient(180deg, rgba(240, 24, 45, 0.12), transparent 360px),
    var(--bg);
}

.profile-hero {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1.15fr);
  margin: 0 auto;
  max-width: 1280px;
}

.profile-panel {
  overflow: hidden;
}

.profile-panel img {
  aspect-ratio: 0.82;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.profile-copy {
  align-content: center;
  display: grid;
  gap: 18px;
}

.profile-actions a {
  background: var(--red);
  border-radius: 8px;
  color: white;
  font-weight: 900;
  min-height: 46px;
  padding: 0 16px;
}

.profile-stats span {
  color: white;
}

.profile-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  margin: 34px auto 0;
  max-width: 1280px;
}

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

.profile-gallery img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.profile-booking-card {
  align-content: start;
  display: grid;
  gap: 16px;
  padding: 18px;
}

.profile-booking-card h2 {
  font-size: 1.6rem;
  line-height: 1;
}

.profile-booking-card button {
  background: var(--red);
  border-radius: 8px;
  color: white;
  font-weight: 900;
  min-height: 46px;
}

.safety-note {
  display: grid;
  gap: 10px;
}

.compliance-page {
  background: #fbf5ea;
  color: #141110;
}

.compliance-hero {
  display: grid;
  gap: 16px;
  margin: 0 auto 32px;
  max-width: 980px;
}

.compliance-hero p {
  color: #63554d;
}

.compliance-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1280px;
}

.compliance-card {
  background: white;
  color: #141110;
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 18px;
}

.compliance-card svg {
  color: var(--red);
  height: 24px;
  width: 24px;
}

.compliance-card h2 {
  font-size: 1.25rem;
}

.compliance-card p,
.compliance-card li {
  color: #63554d;
  line-height: 1.55;
}

.compliance-card ul {
  margin: 0;
  padding-left: 20px;
}

.plain-link {
  color: var(--red);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .nav-bar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-bar nav {
    display: none;
  }

  .arrival-copy h1 {
    font-size: 5.25rem;
  }

  .section-head,
  .app-experience,
  .how-it-feels,
  .vip-media-grid,
  .partner-proof,
  .commission-panel,
  .market-plan,
  .profile-hero,
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .map-canvas {
    min-height: 500px;
  }

  .flow-steps,
  .launch-strip,
  .compliance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .nav-bar {
    grid-template-columns: 1fr auto;
  }

  .download-pill {
    min-height: 40px;
    padding: 0 12px;
  }

  .arrival-hero {
    background:
      linear-gradient(180deg, rgba(240, 24, 45, 0.12), transparent 42%),
      #080706;
    display: grid;
    min-height: auto;
    overflow: visible;
    padding-bottom: 28px;
  }

  .arrival-bg {
    aspect-ratio: 1.06;
    background: #080706;
    border-bottom: 1px solid var(--line);
    height: auto;
    inset: auto;
    object-fit: cover;
    object-position: left center;
    position: relative;
    width: 100%;
  }

  .arrival-shade {
    display: none;
  }

  .arrival-copy {
    background: linear-gradient(180deg, rgba(8, 7, 6, 0.96), #080706);
    gap: 16px;
    margin-left: 0;
    max-width: none;
    padding: 22px 18px 0;
    text-align: left;
  }

  .arrival-copy h1 {
    font-size: 3.9rem;
    line-height: 1;
  }

  .arrival-copy p {
    font-size: 1.02rem;
    line-height: 1.5;
    max-width: 34rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .primary-action,
  .secondary-action {
    font-size: 0.92rem;
    line-height: 1.1;
    min-height: 46px;
    padding: 0 12px;
    text-align: center;
  }

  .arrival-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .arrival-stats span {
    justify-content: flex-start;
  }

  .map-canvas {
    aspect-ratio: auto;
    min-height: 470px;
  }

  .host-summary {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .host-summary img {
    width: 86px;
  }

  .flow-steps,
  .gallery-grid,
  .launch-strip,
  .commission-grid,
  .market-grid,
  .profile-promo,
  .profile-gallery,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .profile-promo > div {
    padding: 0 18px 18px;
  }
}

@media (max-width: 520px) {
  .live-map-section,
  .vip-band,
  .how-it-feels,
  .partner-network,
  .market-plan,
  .profile-promo,
  .compliance-page,
  .profile-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .download-pill {
    font-size: 0;
    width: 44px;
  }

  .arrival-copy h1 {
    font-size: 3.2rem;
  }

  .download-pill svg {
    height: 18px;
    width: 18px;
  }

  .booking-total {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-total a {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .brand-mark {
    height: 40px;
    width: 40px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .arrival-copy h1 {
    font-size: 2.85rem;
  }
}

/* HappyHost web app */
.mvp-shell {
  --mvp-bg: #080706;
  --mvp-panel: #15110f;
  --mvp-panel-strong: #211815;
  --mvp-text: #fff8ed;
  --mvp-muted: #b9aaa0;
  --mvp-red: #f0182d;
  --mvp-gold: #d6a44a;
  --mvp-teal: #38d8c2;
  --mvp-green: #20d06b;
  --mvp-blue: #62a8ff;
  background:
    linear-gradient(180deg, rgba(240, 24, 45, 0.18) 0, transparent 360px),
    linear-gradient(135deg, #080706 0%, #12100f 48%, #070b0b 100%);
  color: var(--mvp-text);
  min-height: 100vh;
  overflow-x: hidden;
}

.mvp-shell input,
.mvp-shell select,
.mvp-shell textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--mvp-text);
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.mvp-shell textarea {
  line-height: 1.45;
  resize: vertical;
}

.mvp-shell option {
  color: #111;
}

.mvp-topbar {
  align-items: center;
  background: rgba(8, 7, 6, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 70px;
  padding: 12px 12px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.mvp-topbar nav {
  display: none;
}

.mvp-topbar nav button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.mvp-brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 0;
}

.mvp-brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--mvp-red), #ff5864 55%, var(--mvp-gold));
  border-radius: 8px;
  color: white;
  display: inline-flex;
  flex: 0 0 42px;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.mvp-brand span:last-child {
  display: grid;
  line-height: 1;
  min-width: 0;
}

.mvp-brand strong {
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.mvp-brand small {
  color: var(--mvp-gold);
  font-size: 0.68rem;
  font-weight: 850;
  margin-top: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.mvp-top-action,
.mvp-primary,
.mvp-secondary,
.portal-tabs button,
.slot-row button,
.availability-actions button,
.booking-row-actions button,
.partner-actions button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  gap: 8px;
  justify-content: center;
  min-height: 44px;
}

.mvp-top-action {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  cursor: pointer;
  font-size: 0.84rem;
  font-family: inherit;
  padding: 0 10px;
  white-space: nowrap;
}

.mvp-top-action svg,
.mvp-primary svg,
.mvp-secondary svg,
.portal-tabs svg,
.mvp-kicker svg,
.mvp-status-bar svg,
.host-proof-row svg,
.safety-stack svg,
.admin-policy svg {
  height: 17px;
  width: 17px;
}

.mvp-hero,
.mvp-metrics,
.portal-tabs,
.guest-app,
.portal-panel,
.mvp-founder-band,
.mvp-footer {
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
}

.mvp-hero {
  display: grid;
  gap: 14px;
  padding: 14px 14px 18px;
}

.mvp-hero-copy {
  display: grid;
  gap: 16px;
}

.mvp-kicker {
  align-items: center;
  color: var(--mvp-gold);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 920;
  gap: 8px;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  width: fit-content;
}

.mvp-hero h1,
.mvp-section-head h2,
.mvp-founder-band h2 {
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.mvp-hero h1 {
  font-size: clamp(2.12rem, 10.7vw, 2.55rem);
  max-width: 760px;
}

.mvp-hero p,
.mvp-section-head p,
.mvp-founder-band p,
.booking-sheet p,
.host-control p,
.partner-detail p,
.booking-row p,
.booking-row small,
.empty-state {
  color: var(--mvp-muted);
  line-height: 1.55;
}

.mvp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mvp-primary {
  background: var(--mvp-red);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  min-width: 0;
  padding: 0 16px;
}

.mvp-primary:disabled,
.mvp-secondary:disabled,
.booking-row-actions button:disabled,
.availability-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.54;
}

.mvp-secondary {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  padding: 0 14px;
}

.mvp-status-bar {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--mvp-muted);
  display: inline-flex;
  font-size: 0.9rem;
  gap: 10px;
  line-height: 1.35;
  min-height: 46px;
  padding: 10px 12px;
  width: fit-content;
}

.live-dot {
  background: var(--mvp-green);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(32, 208, 107, 0.14);
  flex: 0 0 10px;
  height: 10px;
  width: 10px;
}

.live-dot.pending {
  background: var(--mvp-gold);
  box-shadow: 0 0 0 7px rgba(214, 164, 74, 0.14);
}

.mvp-arrival-card {
  align-self: stretch;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  display: grid;
  gap: 0;
  order: -1;
  overflow: hidden;
}

.mvp-arrival-card img {
  aspect-ratio: 1730 / 909;
  background: #15110f;
  height: auto;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.mvp-arrival-card div {
  display: grid;
  gap: 8px;
  padding: 13px 14px 14px;
}

.mvp-arrival-card strong {
  font-size: 1rem;
}

.mvp-arrival-card span {
  color: var(--mvp-muted);
  line-height: 1.4;
}

.arrival-card-action {
  background: var(--mvp-red);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
  min-height: 44px;
  padding: 0 14px;
  width: 100%;
}

.mvp-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 14px 14px;
}

.mvp-metrics article,
.admin-kpis article {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 14px;
}

.mvp-metrics svg,
.admin-kpis svg {
  color: var(--mvp-gold);
  height: 20px;
  width: 20px;
}

.mvp-metrics span,
.admin-kpis span {
  color: var(--mvp-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.mvp-metrics strong,
.admin-kpis strong {
  color: white;
  font-size: 1.58rem;
  line-height: 1;
}

.portal-tabs {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 4px 14px 18px;
}

.portal-tabs button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--mvp-muted);
  min-width: 0;
  padding: 0 8px;
}

.portal-tabs button.active {
  background: white;
  color: #111;
}

.guest-app,
.portal-panel {
  padding: 0 14px 28px;
}

.mvp-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.mvp-section-head h2 {
  font-size: 2rem;
}

.mvp-section-head.compact h2 {
  max-width: 980px;
}

.guest-layout,
.dashboard-grid,
.host-recruitment-grid,
.partner-recruitment-grid,
.partner-grid,
.admin-grid {
  display: grid;
  gap: 14px;
}

.map-panel {
  background:
    linear-gradient(31deg, transparent 0 46%, rgba(255, 255, 255, 0.16) 47% 48%, transparent 49%),
    linear-gradient(119deg, transparent 0 43%, rgba(255, 255, 255, 0.11) 44% 45%, transparent 46%),
    linear-gradient(0deg, #171c1d, #121415);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.map-toolbar {
  align-items: center;
  background: rgba(8, 7, 6, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr) 18px;
  left: 12px;
  min-height: 48px;
  padding: 0 12px;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 5;
}

.map-toolbar span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-toolbar svg {
  color: var(--mvp-gold);
  height: 18px;
  width: 18px;
}

.strip-road {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.76rem;
  font-weight: 900;
  left: 45%;
  position: absolute;
  text-transform: uppercase;
  top: 48%;
  transform: rotate(57deg);
  white-space: nowrap;
}

.guest-position {
  align-items: center;
  background: white;
  border-radius: 8px;
  bottom: 19%;
  color: #111;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  gap: 6px;
  left: 45%;
  min-height: 34px;
  padding: 0 10px;
  position: absolute;
  z-index: 4;
}

.guest-position svg {
  color: var(--mvp-red);
  height: 15px;
  width: 15px;
}

.host-marker {
  background: transparent;
  border: 0;
  border-radius: 999px;
  height: 58px;
  padding: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 58px;
  z-index: 4;
}

.host-marker img {
  border: 3px solid var(--mvp-red);
  border-radius: 999px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.host-marker.selected img {
  border-color: var(--mvp-gold);
  box-shadow: 0 0 0 7px rgba(214, 164, 74, 0.2), 0 18px 36px rgba(0, 0, 0, 0.34);
}

.marker-dot {
  background: var(--mvp-green);
  border: 3px solid #111;
  border-radius: 999px;
  bottom: 1px;
  height: 17px;
  position: absolute;
  right: 1px;
  width: 17px;
}

.marker-dot.offline {
  background: #76706b;
}

.arrival-path {
  background: linear-gradient(90deg, transparent, var(--mvp-teal), transparent);
  height: 3px;
  opacity: 0.78;
  position: absolute;
  transform-origin: left center;
  z-index: 2;
}

.arrival-path.primary {
  left: 47%;
  top: 68%;
  transform: rotate(-36deg);
  width: 180px;
}

.arrival-path.secondary {
  left: 48%;
  top: 68%;
  transform: rotate(33deg);
  width: 146px;
}

.booking-sheet,
.host-control,
.queue-panel,
.host-recruitment-card,
.partner-recruitment-card,
.partner-list,
.partner-detail,
.admin-queue,
.admin-policy,
.incident-form,
.referral-review {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.booking-sheet {
  display: grid;
  gap: 16px;
  padding: 14px;
}

.host-profile-showcase {
  display: grid;
  gap: 12px;
  scroll-margin-top: 88px;
}

.profile-stage {
  background: #090807;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.profile-stage img {
  aspect-ratio: 0.78;
  display: block;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.profile-stage > div {
  background: linear-gradient(0deg, rgba(8, 7, 6, 0.96), rgba(8, 7, 6, 0.5) 70%, transparent);
  bottom: 0;
  display: grid;
  gap: 4px;
  left: 0;
  padding: 70px 14px 14px;
  position: absolute;
  right: 0;
}

.profile-stage h3 {
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
  margin: 0;
}

.profile-stage span:not(.status-pill) {
  color: var(--mvp-gold);
  font-weight: 900;
}

.guest-gallery-strip {
  display: grid;
  gap: 8px;
  grid-auto-columns: 76px;
  grid-auto-flow: column;
  overflow-x: auto;
  padding-bottom: 2px;
}

.guest-gallery-strip button {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  height: 92px;
  overflow: hidden;
  padding: 0;
}

.guest-gallery-strip button.selected {
  border-color: var(--mvp-gold);
}

.guest-gallery-strip img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.profile-copy-card {
  align-items: center;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 12px;
}

.profile-copy-card h3 {
  font-size: 1.2rem;
  font-weight: 920;
  margin: 0 0 5px;
}

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

.selected-host img,
.host-control-profile img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  width: 96px;
}

.selected-host h3,
.host-control h3,
.queue-panel h3,
.partner-detail h3,
.admin-queue h3,
.admin-policy h3,
.incident-form h3,
.referral-review h3 {
  font-size: 1.35rem;
  font-weight: 920;
  line-height: 1.05;
  margin: 0;
}

.status-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--mvp-muted);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 900;
  gap: 6px;
  line-height: 1;
  margin-bottom: 8px;
  min-height: 28px;
  padding: 0 9px;
  text-transform: capitalize;
  width: fit-content;
}

.status-available_now,
.status-accepted,
.status-checked_in,
.status-active,
.status-payout_ready {
  color: var(--mvp-green);
}

.status-in_2_hours,
.status-tonight,
.status-requested,
.status-review {
  color: var(--mvp-gold);
}

.status-offline,
.status-declined,
.status-canceled,
.status-paused {
  color: #aaa19a;
}

.status-completed {
  color: var(--mvp-teal);
}

.host-proof-row,
.safety-stack,
.host-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.host-proof-row span,
.safety-stack span,
.host-tags span {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: var(--mvp-text);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 7px;
  min-height: 34px;
  padding: 7px 9px;
}

.booking-form,
.incident-form {
  display: grid;
  gap: 12px;
}

.booking-form,
.guest-app,
.portal-panel {
  scroll-margin-top: 88px;
}

.booking-form label,
.host-control label,
.incident-form label {
  color: var(--mvp-muted);
  display: grid;
  font-size: 0.79rem;
  font-weight: 850;
  gap: 7px;
  text-transform: uppercase;
}

.slot-row,
.availability-actions,
.partner-actions,
.booking-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot-row button,
.availability-actions button,
.booking-row-actions button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  min-width: 0;
  padding: 0 12px;
}

.slot-row button.selected,
.availability-actions button.selected {
  background: white;
  color: #111;
}

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

.booking-controls {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 12px;
  padding-top: 12px;
}

.booking-controls small,
.partner-wallet small {
  color: var(--mvp-muted);
  display: block;
  font-weight: 800;
  line-height: 1.35;
}

.booking-controls strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  margin-top: 4px;
}

.host-carousel,
.photo-lineup {
  display: grid;
  gap: 10px;
  grid-auto-columns: 168px;
  grid-auto-flow: column;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.host-tile {
  align-items: start;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: white;
  display: grid;
  gap: 8px;
  justify-content: stretch;
  min-height: 230px;
  padding: 10px;
  text-align: left;
}

.host-tile.selected {
  border-color: rgba(214, 164, 74, 0.75);
}

.host-tile img {
  aspect-ratio: 0.78;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.host-tile span {
  font-weight: 900;
}

.host-tile small {
  color: var(--mvp-muted);
}

.portal-panel {
  display: grid;
  gap: 16px;
}

.host-control,
.queue-panel,
.host-recruitment-card,
.partner-recruitment-card,
.partner-list,
.partner-detail,
.admin-queue,
.admin-policy,
.incident-form,
.referral-review {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.host-control-profile {
  display: grid;
  gap: 12px;
  grid-template-columns: 96px minmax(0, 1fr);
}

.host-control-profile span {
  color: var(--mvp-gold);
  display: inline-block;
  font-weight: 900;
  margin-top: 8px;
}

.panel-title-row {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.panel-title-row span {
  color: var(--mvp-gold);
  font-size: 0.83rem;
  font-weight: 900;
}

.booking-row {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 12px;
}

.booking-row h4 {
  font-size: 1rem;
  line-height: 1.2;
  margin: 0 0 6px;
}

.booking-row-actions {
  align-content: start;
}

.booking-row-actions small {
  flex-basis: 100%;
  font-size: 0.78rem;
}

.partner-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: white;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px;
  text-align: left;
  width: 100%;
}

.partner-row.selected {
  border-color: rgba(214, 164, 74, 0.75);
}

.partner-row span {
  display: grid;
  gap: 4px;
}

.partner-row small {
  color: var(--mvp-muted);
}

.partner-row em {
  color: var(--mvp-gold);
  font-style: normal;
  font-weight: 950;
}

.qr-block {
  align-items: center;
  aspect-ratio: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    #110e0d;
  background-size: 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: grid;
  justify-items: center;
  max-width: 240px;
  padding: 20px;
  width: 100%;
}

.qr-block svg {
  color: var(--mvp-red);
  height: 78px;
  width: 78px;
}

.qr-block strong {
  font-size: 1.5rem;
}

.partner-wallet {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-wallet span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  min-height: 86px;
  padding: 12px;
}

.partner-wallet strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  margin-top: 8px;
}

.credited-list,
.incident-list {
  display: grid;
  gap: 8px;
}

.credited-list h4 {
  margin: 0;
}

.credited-list span,
.incident-list span,
.referral-review span,
.admin-policy span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: var(--mvp-muted);
  line-height: 1.4;
  padding: 10px;
}

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

.admin-policy span {
  align-items: center;
  color: var(--mvp-text);
  display: flex;
  gap: 8px;
}

.admin-policy svg {
  color: var(--mvp-green);
}

.admin-policy a {
  color: var(--mvp-gold);
  font-weight: 900;
}

.referral-review span {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.referral-review strong {
  color: var(--mvp-gold);
}

.referral-review em {
  color: var(--mvp-green);
  font-style: normal;
  font-weight: 900;
}

.mvp-founder-band {
  align-items: center;
  display: grid;
  gap: 18px;
  padding: 18px 14px 34px;
}

.mvp-founder-band div {
  display: grid;
  gap: 10px;
}

.mvp-founder-band h2 {
  font-size: 2rem;
}

.mvp-footer {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 14px;
  padding: 22px 14px 34px;
}

.mvp-footer div {
  display: grid;
  gap: 5px;
}

.mvp-footer span,
.mvp-footer nav a {
  color: var(--mvp-muted);
}

.mvp-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-admin-link {
  background: transparent;
  border: 0;
  color: var(--mvp-muted);
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.mvp-footer strong {
  font-size: 1.2rem;
}

.checkout-panel,
.host-application-card,
.host-account-card,
.host-login-form,
.host-settings-form,
.host-account-panel,
.host-recruitment-card,
.partner-recruitment-card,
.partner-application-card,
.partner-payout-form,
.host-profile-form,
.admin-login-card,
.payment-ledger,
.application-review,
.host-admin-list,
.admin-settings-form {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 14px;
}

.host-application-card,
.host-account-card,
.host-login-form,
.host-settings-form,
.host-account-panel,
.host-recruitment-card,
.partner-recruitment-card,
.partner-application-card,
.admin-login-card {
  align-content: start;
}

.host-recruitment-card p,
.host-application-card p,
.host-login-form p,
.host-account-panel p,
.partner-recruitment-card p {
  color: var(--mvp-muted);
  line-height: 1.55;
}

.checkout-panel {
  background:
    linear-gradient(135deg, rgba(56, 216, 194, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.075);
}

.checkout-panel h4,
.host-application-card h3,
.host-login-form h3,
.host-account-panel h3,
.host-settings-form h3,
.host-recruitment-card h3,
.partner-recruitment-card h3,
.partner-application-card h3,
.partner-payout-form h3,
.host-profile-form h3,
.payment-ledger h3,
.application-review h3,
.host-admin-list h3,
.admin-settings-form h3,
.admin-login-card h3 {
  font-size: 1.18rem;
  line-height: 1.1;
  margin: 0;
}

.booking-controls em {
  color: var(--mvp-muted);
  display: block;
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.45;
  margin-top: 8px;
}

.check-row {
  align-items: start;
  color: var(--mvp-muted);
  display: grid !important;
  gap: 10px !important;
  grid-template-columns: auto minmax(0, 1fr);
  line-height: 1.4;
  text-transform: none !important;
}

.check-row input {
  margin-top: 2px;
  min-height: auto;
  padding: 0;
  width: auto;
}

.upload-preview {
  align-items: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr);
  min-height: 94px;
  padding: 10px;
}

.mini-photo-stack {
  display: flex;
  gap: 7px;
  overflow-x: auto;
}

.upload-preview img,
.upload-slot {
  aspect-ratio: 0.78;
  border-radius: 8px;
  flex: 0 0 58px;
  width: 58px;
}

.upload-preview img {
  object-fit: cover;
  object-position: center top;
}

.upload-slot {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.upload-preview span {
  color: var(--mvp-muted);
  font-size: 0.86rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

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

.earnings-strip span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  min-height: 82px;
  padding: 10px;
}

.earnings-strip small {
  color: var(--mvp-muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.25;
}

.earnings-strip strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 8px;
}

.host-recruitment-points,
.partner-benefits {
  display: grid;
  gap: 8px;
}

.host-recruitment-points span,
.partner-benefits span {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--mvp-text);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.3;
  padding: 11px 12px;
}

.host-account-card,
.host-account-panel,
.host-login-form,
.host-settings-form {
  align-content: start;
}

.host-account-card {
  gap: 12px;
}

.host-account-panel.pending {
  background:
    linear-gradient(135deg, rgba(214, 164, 74, 0.14), transparent 58%),
    rgba(255, 255, 255, 0.075);
}

.host-account-profile {
  align-items: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 72px minmax(0, 1fr);
  padding: 10px;
}

.host-account-profile img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  width: 72px;
}

.host-account-profile div {
  display: grid;
  gap: 4px;
}

.host-account-profile span,
.host-review-steps span {
  color: var(--mvp-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

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

.host-settings-form {
  background: rgba(0, 0, 0, 0.2);
}

.host-review-steps {
  display: grid;
  gap: 8px;
}

.host-review-steps span {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--mvp-text);
  font-weight: 850;
  padding: 10px 12px;
}

.application-gallery {
  display: flex;
  gap: 7px;
  margin-top: 10px;
  overflow-x: auto;
}

.application-gallery img {
  aspect-ratio: 0.78;
  border-radius: 8px;
  flex: 0 0 48px;
  object-fit: cover;
  object-position: center top;
  width: 48px;
}

.host-profile-form label,
.host-application-card label,
.host-login-form label,
.host-settings-form label,
.partner-application-card label,
.partner-payout-form label,
.admin-login-card label,
.admin-settings-form label {
  color: var(--mvp-muted);
  display: grid;
  font-size: 0.79rem;
  font-weight: 850;
  gap: 7px;
  text-transform: uppercase;
}

.partner-selector {
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding-right: 2px;
}

.admin-login-card {
  margin: 0 auto;
  max-width: 460px;
  width: 100%;
}

.expanded-admin {
  align-items: start;
}

.payment-ledger span,
.host-admin-list article,
.application-row {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.payment-ledger span {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.payment-ledger strong {
  color: var(--mvp-green);
}

.payment-ledger em {
  color: white;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 920;
}

.payment-ledger small,
.application-row small,
.host-admin-list small {
  color: var(--mvp-muted);
  line-height: 1.35;
}

.application-row {
  align-items: start;
  display: grid;
  gap: 12px;
  padding: 12px;
}

.application-row img,
.host-admin-list img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  width: 78px;
}

.application-row h4 {
  font-size: 1rem;
  line-height: 1.15;
  margin: 0 0 6px;
}

.application-row p {
  color: var(--mvp-muted);
  line-height: 1.4;
  margin-bottom: 6px;
}

.host-admin-list article {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  padding: 10px;
}

.host-admin-list img {
  width: 64px;
}

.host-admin-list div {
  display: grid;
  gap: 4px;
}

.host-admin-list button,
.application-row button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: white;
  font-size: 0.82rem;
  font-weight: 850;
  min-height: 38px;
  padding: 0 10px;
}

.live-mode-hero .mvp-primary,
.live-mode-hero .mvp-secondary {
  min-height: 46px;
}

@media (min-width: 640px) {
  .mvp-hero h1 {
    font-size: 3.6rem;
  }

  .mvp-section-head h2,
  .mvp-founder-band h2 {
    font-size: 2.6rem;
  }

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

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

  .host-marker {
    height: 68px;
    width: 68px;
  }

  .application-row {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .application-row .booking-row-actions {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .mvp-topbar {
    gap: 18px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 13px 28px;
  }

  .mvp-topbar nav {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: center;
    min-width: 0;
  }

  .mvp-topbar nav a,
  .mvp-topbar nav button {
    color: var(--mvp-muted);
    font-size: 0.9rem;
    font-weight: 820;
    white-space: nowrap;
  }

  .mvp-hero,
  .mvp-metrics,
  .portal-tabs,
  .guest-app,
  .portal-panel,
  .mvp-founder-band,
  .mvp-footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .mvp-hero {
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    padding-top: 34px;
  }

  .mvp-arrival-card img {
    aspect-ratio: auto;
  }

  .mvp-arrival-card {
    order: 0;
  }

  .profile-copy-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mvp-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .guest-layout,
  .host-recruitment-grid,
  .partner-recruitment-grid,
  .partner-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  }

  .host-recruitment-grid .host-application-card,
  .partner-recruitment-grid .partner-application-card {
    grid-row: span 2;
  }

  .map-panel {
    min-height: 650px;
  }

  .host-marker {
    height: 78px;
    width: 78px;
  }

  .dashboard-grid {
    grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr);
  }

  .dashboard-grid.three-column {
    grid-template-columns: minmax(300px, 0.8fr) minmax(330px, 0.9fr) minmax(0, 1.1fr);
  }

  .admin-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  }

  .expanded-admin {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  }

  .admin-kpis {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .application-row {
    grid-template-columns: 78px minmax(0, 1fr) auto;
  }

  .application-row .booking-row-actions {
    grid-column: auto;
  }

  .mvp-founder-band,
  .mvp-footer {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1200px) {
  .mvp-hero h1 {
    font-size: 5rem;
  }

  .mvp-section-head {
    align-items: end;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.45fr);
  }

  .mvp-section-head.compact {
    align-items: start;
    grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.42fr);
  }

  .mvp-section-head h2 {
    font-size: 3.35rem;
  }

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

@media (max-width: 380px) {
  .mvp-brand strong {
    font-size: 0.92rem;
  }

  .mvp-brand small {
    font-size: 0.6rem;
  }

  .mvp-brand-mark {
    flex-basis: 38px;
    height: 38px;
    width: 38px;
  }

  .mvp-top-action {
    font-size: 0.78rem;
    padding: 0 8px;
  }

  .mvp-hero h1 {
    font-size: 2.28rem;
  }

  .portal-tabs button {
    font-size: 0.78rem;
  }
}
