body.youme-page.hosting-page {
  min-height: 100vh;
  --host-bg: #760704;
  --host-panel: #ffffff;
  --host-panel-strong: #fbfaf7;
  --host-ink: #161616;
  --host-muted: #62615c;
  --host-subtle: #8a867d;
  --host-line: rgba(22, 22, 22, 0.12);
  --host-line-strong: rgba(22, 22, 22, 0.22);
  --host-accent: #8c2722;
  --host-blue: #214f6d;
  --host-gold: #b5852d;
  --host-shadow: 0 18px 44px rgba(26, 23, 19, 0.11);
  background:
    linear-gradient(180deg, rgba(118, 7, 4, 0.1), rgba(118, 7, 4, 0.28)),
    url('../assets/images/Background2.png') center / cover fixed,
    var(--host-bg);
  color: var(--host-ink);
}

.hosting-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(8px, 1.6vw, 16px) 0 clamp(30px, 5vw, 52px);
  display: grid;
  gap: 12px;
}

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

.hosting-hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.72fr) minmax(0, 0.88fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--host-line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--host-panel) 95%, transparent);
  box-shadow: var(--host-shadow);
  backdrop-filter: blur(18px);
}

.hosting-hero__copy {
  display: grid;
  align-content: center;
  gap: 16px;
  min-width: 0;
}

.hero__eyebrow,
.tool-card__eyebrow {
  display: block;
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--host-accent);
  font-family: var(--text-caps, 'Montserrat', sans-serif);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hosting-hero h1,
.dashboard-heading h2,
.tool-card h3 {
  margin: 0;
  color: var(--host-ink);
  font-family: var(--text-body, 'Montserrat', 'Helvetica Neue', Arial, sans-serif);
  letter-spacing: 0;
  line-height: 1.04;
}

.hosting-hero h1 {
  max-width: 680px;
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 900;
  overflow-wrap: break-word;
}

.hosting-hero p,
.dashboard-heading p,
.tool-card p,
.auth-note {
  margin: 0;
  color: var(--host-muted);
  line-height: 1.55;
}

.hosting-hero p {
  max-width: 620px;
  font-size: 1.06rem;
  overflow-wrap: anywhere;
  white-space: normal;
}

.landing-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.landing-auth-status {
  max-width: 560px;
  padding-top: 4px;
  font-size: 0.92rem !important;
  font-weight: 700;
}

.hosting-slideshow {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.slideshow-stage {
  position: relative;
  min-height: clamp(500px, 50vw, 620px);
  overflow: hidden;
  border: 1px solid var(--host-line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 16px 32px rgba(22, 22, 22, 0.12);
}

.showcase-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.showcase-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.showcase-slide__media {
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 38%, rgba(42, 42, 42, 0.54), rgba(15, 14, 13, 0.16) 58%, rgba(9, 8, 7, 0.06)),
    url('../assets/images/Background2.png') center / cover;
}

.showcase-slide__media--prompt {
  padding: 28px;
}

.showcase-slide__media--signal {
  padding: 22px 16px;
}

.showcase-phone-frame {
  position: relative;
  width: min(268px, 82%);
  padding: 28px 11px 12px;
  border: 8px solid #151515;
  border-radius: 34px;
  background: #151515;
  box-shadow: 0 22px 44px rgba(22, 22, 22, 0.42);
}

.showcase-phone-frame__speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 68px;
  height: 6px;
  border-radius: 999px;
  background: #343434;
  transform: translateX(-50%);
}

.showcase-phone-frame img {
  width: 100%;
  height: auto;
  max-height: 430px;
  display: block;
  border-radius: 22px;
  object-fit: cover;
}

.signal-phone-pair {
  width: min(450px, 100%);
  min-height: 420px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
}

.showcase-phone-frame--signal {
  width: 100%;
  padding: 22px 8px 9px;
  border-width: 7px;
  border-radius: 28px;
}

.showcase-phone-frame--signal.is-offset {
  transform: translateY(22px);
}

.showcase-phone-frame--signal .showcase-phone-frame__speaker {
  top: 10px;
  width: 50px;
  height: 5px;
}

.showcase-phone-frame--signal img {
  max-height: 365px;
  border-radius: 18px;
}

.showcase-slide__copy {
  display: grid;
  gap: 7px;
  padding: 16px;
  border-top: 1px solid var(--host-line);
  background: rgba(255, 250, 240, 0.96);
}

.showcase-slide__copy span {
  color: var(--host-subtle);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.showcase-slide__copy strong {
  color: var(--host-ink);
  font-size: 1.12rem;
  line-height: 1.12;
}

.showcase-slide__copy p {
  margin: 0;
  color: var(--host-muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.showcase-cta {
  min-height: 38px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 9px 12px;
  border: 1px solid var(--host-ink);
  border-radius: 8px;
  background: var(--host-ink);
  color: #fffaf0;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.prompt-polaroid {
  width: min(410px, 86%);
  display: grid;
  gap: 12px;
  padding: 14px 14px 18px;
  border: 1px solid rgba(22, 22, 22, 0.14);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 18px 36px rgba(22, 22, 22, 0.26);
  transform: rotate(-1deg);
}

.prompt-polaroid__image {
  min-height: 270px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 26px;
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 40%, rgba(42, 42, 42, 0.74), rgba(15, 14, 13, 0.26) 60%, rgba(9, 8, 7, 0.08)),
    url('../assets/images/Background2.png') center / cover;
}

.prompt-polaroid__image span {
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.prompt-polaroid__image strong {
  color: #fffaf0;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
}

.prompt-polaroid p {
  margin: 0;
  color: #161616;
  font-weight: 900;
  text-align: center;
}

.slideshow-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slideshow-controls button {
  width: 34px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.58);
  box-shadow: 0 1px 5px rgba(22, 22, 22, 0.18);
  cursor: pointer;
}

.slideshow-controls button.is-active {
  background: #fffaf0;
}

.slideshow-timer {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.3);
}

.slideshow-timer span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #fffaf0;
  transform-origin: left center;
  animation: slideshow-timer 5600ms linear infinite;
}

@keyframes slideshow-timer {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.trust-banner,
.pricing-section,
.newsletter-section,
.contact-section {
  border: 1px solid var(--host-line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--host-panel) 93%, transparent);
  box-shadow: var(--host-shadow);
  backdrop-filter: blur(18px);
}

.trust-banner {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.trust-logo-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 150px;
  background: #f5f6f8;
}

.proof-logo {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 34px);
  border: 0;
  border-right: 1px solid rgba(22, 22, 22, 0.08);
  background: transparent;
  color: var(--host-ink);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.proof-logo img {
  display: block;
  width: min(210px, 82%);
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

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

.proof-logo--curiocity {
  flex-direction: column;
  gap: 7px;
}

.proof-logo--curiocity img {
  width: min(226px, 86%);
}

.proof-logo__city {
  color: var(--host-subtle);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-logo--thursday {
  background: #111;
}

.proof-logo--thursday img {
  width: min(142px, 74%);
}

.trust-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 13px 16px;
  border-top: 1px solid rgba(22, 22, 22, 0.08);
  background: #fffaf0;
}

.trust-links h2 {
  margin: 0 10px 0 0;
  color: var(--host-subtle);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.trust-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(140, 39, 34, 0.18);
  border-radius: 8px;
  background: rgba(140, 39, 34, 0.07);
  color: var(--host-accent);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.pricing-section,
.newsletter-section,
.contact-section {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.pricing-section[hidden] {
  display: none !important;
}

.newsletter-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  align-items: end;
}

.contact-section {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-section h2 {
  margin: 0;
  color: var(--host-ink);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.newsletter-section p {
  margin: 8px 0 0;
  color: var(--host-muted);
  line-height: 1.45;
}

.newsletter-form {
  display: grid;
  gap: 8px;
}

.newsletter-form label {
  color: var(--host-subtle);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.newsletter-form input {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--host-line-strong);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--host-ink);
  font: inherit;
  font-weight: 700;
}

.section-heading {
  display: grid;
  gap: 8px;
}

.section-heading h2 {
  max-width: 720px;
  margin: 0;
  color: var(--host-ink);
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.section-heading p:not(.hero__eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--host-muted);
  line-height: 1.45;
}

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

.pricing-card {
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 260px;
  padding: 16px;
  border: 1px solid var(--host-line);
  border-radius: 8px;
  background: #fffaf0;
}

.pricing-card--featured {
  border-color: rgba(140, 39, 34, 0.36);
  box-shadow: 0 14px 28px rgba(140, 39, 34, 0.12);
}

.pricing-card--screen {
  background:
    linear-gradient(135deg, rgba(33, 79, 109, 0.08), rgba(255, 250, 240, 0.96)),
    #fffaf0;
}

.pricing-card span {
  color: var(--host-subtle);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card strong {
  color: var(--host-ink);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1;
}

.pricing-card p {
  margin: 0;
  color: var(--host-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.pricing-card .btn-inline {
  align-self: end;
  margin-top: auto;
}

.hosting-product-preview {
  display: grid;
  grid-template-rows: minmax(230px, 1fr) auto;
  gap: 12px;
  min-width: 0;
}

.preview-window,
.preview-tile,
.preview-card,
.tool-card,
.dashboard-heading,
.auth-card {
  min-width: 0;
  border: 1px solid var(--host-line);
  border-radius: 8px;
  background: var(--host-panel);
  box-shadow: 0 12px 28px rgba(26, 23, 19, 0.08);
}

.preview-window {
  overflow: hidden;
  background: #151515;
}

.preview-window__chrome {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #242424;
}

.preview-window__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f5f3eb;
  opacity: 0.64;
}

.mini-screenshot {
  min-height: 214px;
  display: grid;
  align-content: end;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 44%, rgba(42, 42, 42, 0.82), rgba(15, 14, 13, 0.36) 58%, rgba(9, 8, 7, 0.12)),
    linear-gradient(180deg, rgba(10, 8, 7, 0.06), rgba(10, 8, 7, 0.42)),
    url('../assets/images/Background2.png') center / cover;
  color: #fffaf0;
}

.mini-screenshot__brand,
.preview-tile span,
.preview-card__heading span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mini-screenshot__question {
  max-width: 280px;
  color: #fffaf0;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.08;
}

.preview-stack {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.preview-tile {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 14px;
  overflow: hidden;
}

.preview-tile span,
.preview-card__heading span {
  color: var(--host-subtle);
}

.preview-tile strong {
  color: var(--host-ink);
  font-size: 1rem;
  line-height: 1.1;
}

.preview-tile--prompt {
  background:
    linear-gradient(135deg, rgba(181, 133, 45, 0.2), rgba(255, 255, 255, 0.92)),
    var(--host-panel);
}

.auth-card {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 16px;
  background: var(--host-panel-strong);
}

.auth-card h3 {
  margin: 0 0 4px;
  color: var(--host-ink);
  font-size: 1.12rem;
  letter-spacing: 0;
}

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

.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--host-ink);
  border-radius: 8px;
  background: var(--host-ink);
  color: #fffaf0;
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.btn-inline:hover:not(:disabled):not(.is-disabled) {
  box-shadow: 0 10px 24px rgba(22, 22, 22, 0.16);
  transform: translateY(-1px);
}

.btn-inline:focus-visible,
.md-button:focus-visible,
.chip:focus-visible {
  outline: 3px solid rgba(181, 133, 45, 0.36);
  outline-offset: 2px;
}

.btn-inline:disabled,
.btn-inline.is-disabled {
  cursor: not-allowed;
  opacity: 0.52;
  pointer-events: none;
}

.btn-inline.secondary {
  border-color: var(--host-line-strong);
  background: var(--host-panel-strong);
  color: var(--host-ink);
  box-shadow: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  gap: 6px;
  padding: 7px 11px;
  border: 1px solid var(--host-line);
  border-radius: 8px;
  background: var(--host-panel);
  color: var(--host-ink);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.user-pill {
  max-width: min(100%, 420px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.is-locked {
  opacity: 0.72;
}

.lock-hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(140, 39, 34, 0.24);
  border-radius: 8px;
  background: rgba(140, 39, 34, 0.08);
  color: var(--host-accent);
  font-weight: 800;
  overflow-wrap: anywhere;
  white-space: normal;
}

.lock-hint i {
  margin-top: 0.2em;
}

.lock-hint span {
  min-width: 0;
}

.hosting-tools {
  display: none;
  gap: 16px;
}

body.is-signed-in .hosting-hero {
  display: none;
}

body.is-signed-in .public-landing {
  display: none;
}

body.is-signed-in .hosting-tools {
  display: grid;
}

.dashboard-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  background: color-mix(in srgb, var(--host-panel) 92%, transparent);
  backdrop-filter: blur(16px);
}

.dashboard-heading h2 {
  margin-top: 4px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.preview-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 16px;
}

.preview-card {
  min-height: 280px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  overflow: hidden;
}

.preview-card__heading {
  display: grid;
  gap: 5px;
}

.preview-card__heading strong {
  color: var(--host-ink);
  font-size: 1.05rem;
  line-height: 1.14;
}

.phone-shot {
  width: min(190px, 100%);
  min-height: 100%;
  justify-self: center;
  display: grid;
  grid-template-rows: 28px minmax(0, 1fr);
  border: 8px solid #1c1c1c;
  border-radius: 26px;
  background: #1c1c1c;
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.18);
}

.phone-shot__top {
  width: 54px;
  height: 6px;
  place-self: center;
  border-radius: 999px;
  background: #3c3c3c;
}

.phone-shot__screen {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 36%, rgba(42, 42, 42, 0.78), rgba(21, 18, 16, 0.36) 58%, rgba(9, 8, 7, 0.08)),
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(22, 22, 22, 0.64)),
    url('../assets/images/Background2.png') center / cover;
  color: #fffaf0;
}

.phone-shot__logo {
  font-weight: 900;
}

.phone-shot__screen strong {
  font-size: 1.2rem;
  line-height: 1.08;
}

.phone-shot__screen p {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.phone-shot__button {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fffaf0;
  color: #161616;
  font-size: 0.84rem;
  font-weight: 900;
}

.prompt-shot {
  min-height: 190px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px 10px 12px;
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.14);
}

.prompt-shot__photo {
  min-height: 142px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 16px;
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 42%, rgba(42, 42, 42, 0.82), rgba(15, 14, 13, 0.36) 62%, rgba(9, 8, 7, 0.12)),
    linear-gradient(180deg, rgba(10, 8, 7, 0.08), rgba(10, 8, 7, 0.56)),
    url('../assets/images/Background2.png') center / cover;
}

.prompt-shot__photo span {
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.prompt-shot__photo strong {
  max-width: 420px;
  color: #fffaf0;
  font-size: clamp(1.65rem, 3.1vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
}

.prompt-shot p {
  margin: 0;
  color: var(--host-ink);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.tool-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  background: var(--host-panel);
}

.tool-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--host-line);
  border-radius: 8px;
  background: var(--host-panel-strong);
  color: var(--host-accent);
  font-size: 1.25rem;
}

.tool-card__body {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.tool-card h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.tool-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.tool-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--host-muted);
  font-weight: 700;
}

.tool-status[data-tone='success'] {
  color: var(--host-blue);
}

.tool-status[data-tone='error'] {
  color: var(--host-accent);
}

.mini-session-meta {
  display: grid;
  grid-template-columns: minmax(120px, auto) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--host-line);
  border-radius: 8px;
  background: var(--host-panel-strong);
}

.mini-session-meta[hidden] {
  display: none !important;
}

.mini-session-meta span {
  display: block;
  margin-bottom: 3px;
  color: var(--host-subtle);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mini-session-meta strong {
  color: var(--host-ink);
  font-size: 1.8rem;
  line-height: 1;
}

.mini-session-meta a {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--host-blue);
  font-weight: 800;
}

.mini-sms-panel {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(33, 79, 109, 0.22);
  border-radius: 8px;
  background: rgba(33, 79, 109, 0.06);
}

.mini-sms-panel[hidden] {
  display: none !important;
}

.mini-sms-panel__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mini-sms-panel__heading span {
  display: block;
  margin-bottom: 3px;
  color: var(--host-subtle);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mini-sms-panel__heading strong {
  color: var(--host-ink);
  font-size: 1rem;
}

.mini-sms-refresh {
  flex: 0 0 auto;
}

.mini-sms-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mini-sms-actions .btn-inline {
  width: 100%;
  justify-content: center;
}

.mini-sms-note {
  margin: 0;
  color: var(--host-muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.missions-config {
  display: grid;
  gap: 7px;
  margin-top: 4px;
}

.missions-config label {
  color: var(--host-muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.missions-config select {
  min-height: 40px;
  border: 1px solid var(--host-line);
  border-radius: 8px;
  padding: 0 11px;
  background: #fff;
  color: var(--host-ink);
  font: inherit;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hosting-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

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

@media (max-width: 860px) {
  .hosting-hero,
  .preview-gallery,
  .pricing-grid,
  .newsletter-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .dashboard-heading {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 620px) {
  body.youme-page.hosting-page {
    overflow-x: hidden;
  }

  .hosting-shell {
    width: min(100vw - 48px, 1180px);
  }

  .hosting-hero,
  .dashboard-heading,
  .tool-card,
  .preview-card,
  .pricing-section,
  .newsletter-section,
  .contact-section {
    padding: 14px;
  }

  .hosting-hero h1 {
    font-size: clamp(2rem, 10.5vw, 2.85rem);
  }

  .lock-hint {
    font-size: 0.9rem;
  }

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

  .slideshow-stage {
    min-height: 470px;
  }

  .showcase-phone-frame {
    width: min(245px, 86%);
  }

  .showcase-phone-frame img {
    max-height: 315px;
  }

  .signal-phone-pair {
    min-height: 285px;
  }

  .showcase-phone-frame--signal {
    padding: 18px 6px 7px;
    border-width: 6px;
    border-radius: 24px;
  }

  .showcase-phone-frame--signal img {
    max-height: 250px;
    border-radius: 15px;
  }

  .prompt-polaroid__image {
    min-height: 225px;
    padding: 20px;
  }

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

  .tool-card__icon {
    width: 44px;
    height: 44px;
  }

  .tool-card__actions,
  .auth-actions,
  .landing-actions,
  .contact-actions,
  .newsletter-form div,
  .trust-links {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .trust-links h2 {
    margin: 0;
    text-align: center;
  }

  .btn-inline {
    width: 100%;
  }

  .mini-session-meta {
    grid-template-columns: 1fr;
  }

  .mini-sms-panel__heading {
    align-items: stretch;
    flex-direction: column;
  }

  .mini-sms-actions {
    grid-template-columns: 1fr;
  }
}
