/* [project]/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
}

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

:root {
  --software-bg: 250 244 233;
  --software-surface: 255 251 244;
  --software-ink: 61 45 27;
  --software-copy: 91 73 50;
  --software-border: 138 112 55;
  --software-accent: 213 162 74;
  --software-accent-deep: 160 108 28;
  --software-shadow: 92 67 24;
  --software-purple: 94 53 177;
  --software-purple-soft: 243 240 255;
  --software-purple-deep: 31 18 56;
  --software-airbnb-accent: 255 56 92;
  --software-airbnb-accent-deep: 224 11 65;
  --software-airbnb-text: 34 34 34;
  --software-airbnb-muted: 106 106 106;
  --software-airbnb-surface: 255 255 255;
  --software-airbnb-border: 235 235 235;
  --software-airbnb-soft: 242 242 242;
  --software-airbnb-shadow: #00000005 0px 0px 0px 1px,
    #0000000a 0px 2px 6px,
    #0000001a 0px 4px 8px;
}

.software-shell {
  gap: 2rem;
  padding: 2rem 1rem 4rem;
  display: grid;
  position: relative;
}

.software-shell, .software-shell--purple {
  background: radial-gradient(circle at top left, #ff385c0f, transparent 24%),
    radial-gradient(circle at top right, #ff385c0a, transparent 26%),
    rgb(var(--software-airbnb-surface));
  gap: 1.5rem;
  padding: 1.5rem 1rem 4rem;
}

.software-features-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 1320px);
  margin: -1rem auto 0;
  padding: 0 1.5rem;
  display: grid;
}

.software-features-strip__item {
  box-shadow: var(--software-airbnb-shadow);
  background: #fff;
  border-radius: 16px;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.15rem;
  display: flex;
}

.software-features-strip__icon {
  background: rgb(var(--software-airbnb-soft));
  width: 2.4rem;
  height: 2.4rem;
  color: rgb(var(--software-airbnb-text));
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: .85rem;
  font-weight: 800;
  display: inline-flex;
}

.software-features-strip__title {
  color: rgb(var(--software-airbnb-text));
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.software-features-strip__desc {
  color: rgb(var(--software-airbnb-muted));
  margin-top: .25rem;
  font-size: .88rem;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .software-features-strip {
    grid-template-columns: 1fr;
  }
}

.software-nav {
  z-index: 20;
  -webkit-backdrop-filter: blur(20px);
  background: #ffffffe0;
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: min(100% - 3rem, 1320px - 3rem);
  margin: 0 auto;
  padding: .75rem 1.5rem;
  display: flex;
  position: sticky;
  top: 0;
  box-shadow: 0 1px 2px #0000000a, 0 4px 16px #0000000f;
}

.software-nav--floating {
  padding-top: .75rem;
}

.software-brand {
  align-items: center;
  gap: .65rem;
  display: flex;
}

.software-brand__logo {
  object-fit: cover;
  background: #fff;
  border-radius: 12px;
  width: 2.4rem;
  height: 2.4rem;
}

.software-brand__text-wrap {
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  display: flex;
}

.software-brand__text {
  color: rgb(var(--software-airbnb-text));
  letter-spacing: -.01em;
  font-size: 1.05rem;
  font-weight: 700;
}

.software-nav__links {
  align-items: center;
  gap: .25rem;
  font-size: .92rem;
  font-weight: 500;
  display: none;
}

.software-nav__links a {
  color: rgb(var(--software-airbnb-muted));
  border-radius: 10px;
  padding: .45rem .85rem;
  text-decoration: none;
  transition: color .15s, background .15s;
}

.software-nav__links a:hover {
  color: rgb(var(--software-airbnb-text));
  background: #0000000a;
}

.software-section {
  width: min(100%, 1320px);
  box-shadow: none;
  background: none;
  border: none;
  border-radius: 0;
  margin: 0 auto;
  padding: 1.5rem;
}

.software-section__header {
  gap: .6rem;
  margin-bottom: 1.5rem;
  display: grid;
}

.software-section__body {
  gap: 1rem;
  display: grid;
}

.software-section__title, .software-hero-pro__title, .software-contact-band__title, .software-problem-card__title, .software-trial-card__title, .software-pricing-card__title {
  color: rgb(var(--software-airbnb-text));
  letter-spacing: -.02em;
}

.software-section__title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
}

.software-section__description, .software-hero-pro__desc, .software-problem-card__desc, .software-trial-card__desc, .software-contact-band__desc, .software-contact-band__meta, .software-pricing-card__summary, .software-pricing-note {
  color: rgb(var(--software-airbnb-muted));
}

.software-section__description {
  line-height: 1.7;
}

.software-cta {
  background: rgb(var(--software-airbnb-accent));
  color: #fff;
  min-height: 48px;
  box-shadow: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 0 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  display: inline-flex;
}

.software-cta:hover {
  background: rgb(var(--software-airbnb-accent-deep));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #00000014;
}

.software-cta--nav {
  background: rgb(var(--software-airbnb-text));
  border-radius: 10px;
  padding: .5rem 1.15rem;
  font-size: .88rem;
  font-weight: 600;
}

.software-cta--nav:hover {
  background: rgb(var(--software-airbnb-accent));
}

.software-cta--ghost {
  color: rgb(var(--software-airbnb-text));
  border: 1px solid rgb(var(--software-airbnb-border));
  box-shadow: none;
  background: #fff;
}

.software-cta--ghost:hover {
  background: rgb(var(--software-airbnb-soft));
  box-shadow: none;
  transform: none;
}

.software-cta--ghost-on-image {
  color: #fff;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #ffffff24;
  border-color: #ffffff59;
}

.software-cta--ghost-on-image:hover {
  background: #fff3;
}

.software-hero-pro {
  align-items: stretch;
  gap: 1.75rem;
  padding-top: 1rem;
  display: grid;
}

.software-section--hero-pro {
  box-shadow: none;
  background: none;
  border: none;
  padding: 0;
}

.software-hero-pro__title {
  text-wrap: balance;
  max-width: 11ch;
  margin-top: 1rem;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
}

.software-hero-pro__title span {
  color: rgb(var(--software-airbnb-accent));
}

.software-hero-pro__desc {
  max-width: 34rem;
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.software-hero-pro__actions {
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
  display: flex;
}

.software-hero-pro__visual {
  gap: 1rem;
  display: grid;
}

.software-hero-visual-card {
  border-radius: 28px;
  min-height: min(42rem, 82vh);
  transition: none;
  position: relative;
  overflow: hidden;
  transform: none;
}

.software-hero-visual-card__image {
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  width: 100%;
  height: min(42rem, 82vh);
  display: block;
}

.software-hero-pro__overlay {
  background: linear-gradient(90deg, #11111185 0%, #11111152 36%, #11111114 64%, #11111103 100%);
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  position: absolute;
  inset: 0;
}

.software-hero-pro__title--overlay {
  color: #fff;
  white-space: nowrap;
  max-width: none;
}

.software-hero-pro__title--overlay span {
  color: #fff;
}

.software-hero-pro__desc--overlay {
  color: #ffffffe6;
  max-width: 34rem;
}

.software-hero-pro__desc--overlay strong {
  color: #fff;
}

.software-hero-pro__actions--overlay {
  margin-top: .15rem;
}

.software-grid {
  gap: 1.25rem;
  display: grid;
}

.software-grid--feature-triptych {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.software-grid--pricing-pro {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: stretch;
}

.software-card {
  box-shadow: var(--software-airbnb-shadow);
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 1.4rem;
  transition: transform .15s, box-shadow .15s;
}

.software-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #00000014;
}

.software-card--featured-pricing, .software-card--recommended {
  border: none;
  box-shadow: 0 0 0 1px #ff385c29, 0 2px 6px #0000000a, 0 4px 8px #0000001a;
}

.software-problem-card {
  text-align: left;
  background: #fff;
}

.software-problem-card__icon {
  background: rgb(var(--software-airbnb-soft));
  width: 3rem;
  height: 3rem;
  color: rgb(var(--software-airbnb-text));
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
}

.software-problem-card__title {
  font-size: 1.35rem;
  font-weight: 600;
}

.software-problem-card__desc {
  margin-top: .65rem;
  font-size: .95rem;
  line-height: 1.75;
}

.software-pricing-card {
  gap: 1rem;
  height: 100%;
  display: grid;
  position: relative;
}

.software-pricing-card__badge {
  color: rgb(var(--software-airbnb-accent));
  letter-spacing: .04em;
  background: #fff5f7;
  border-radius: 999px;
  width: fit-content;
  padding: .2rem .65rem;
  font-size: .72rem;
  font-weight: 600;
  display: inline-block;
}

.software-pricing-card__header {
  gap: .35rem;
  display: grid;
}

.software-pricing-card__price {
  color: rgb(var(--software-airbnb-text));
  letter-spacing: -.02em;
  font-size: 1.85rem;
  font-weight: 700;
}

.software-pricing-card__summary, .software-pricing-card__list {
  font-size: .93rem;
  line-height: 1.65;
}

.software-pricing-card__list {
  gap: .65rem;
  padding-left: 1.25rem;
  display: grid;
}

.software-pricing-card__list li::marker {
  color: rgb(var(--software-airbnb-accent));
}

.software-pricing-card__action {
  background: rgb(var(--software-airbnb-text));
  color: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0 1rem;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.software-pricing-card__action:hover {
  background: rgb(var(--software-airbnb-accent));
}

.software-pricing-highlight, .software-pricing-highlight--purple {
  text-align: center;
  background: #fff5f7;
  border: none;
  border-radius: 20px;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
}

.software-pricing-highlight__main, .software-pricing-highlight__main strong {
  color: rgb(var(--software-airbnb-text));
}

.software-pricing-highlight__main {
  font-size: 1.05rem;
  line-height: 1.6;
}

.software-pricing-highlight__main strong {
  font-size: 1.2rem;
}

.software-experience-unified-card {
  box-shadow: var(--software-airbnb-shadow);
  background: #fff;
  border-radius: 32px;
  padding: 1.25rem;
}

.software-experience-unified-card__grid {
  gap: 1.25rem;
  display: grid;
}

.software-experience-panel {
  align-items: start;
  gap: 1.25rem;
  display: grid;
}

.software-experience-card__image-wrap {
  justify-content: center;
  display: flex;
}

.software-experience-card__image {
  object-fit: contain;
  object-position: top center;
  border: 1px solid rgb(var(--software-airbnb-border));
  border-radius: 28px;
  width: auto;
  max-width: 100%;
  height: min(33rem, 72vh);
  display: block;
}

.software-experience-card__content {
  align-content: start;
  justify-items: start;
  gap: .85rem;
  display: grid;
}

.software-trial-card__step-tag {
  color: rgb(var(--software-airbnb-muted));
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 600;
}

.software-trial-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
}

.software-trial-card__qr {
  border-radius: 20px;
  width: 132px;
  height: 132px;
  overflow: hidden;
}

.software-trial-card__qr-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.software-trial-card__desc {
  font-size: .94rem;
  line-height: 1.72;
}

.software-trial-card__steps {
  text-align: left;
  width: 100%;
  color: rgb(var(--software-airbnb-muted));
  padding-left: 1.15rem;
  font-size: .92rem;
  line-height: 1.8;
  list-style: decimal;
}

.software-trial-card__steps li::marker {
  color: rgb(var(--software-airbnb-accent));
  font-weight: 700;
}

.software-ai-scenarios {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  display: grid;
}

.software-ai-scenario {
  box-shadow: var(--software-airbnb-shadow);
  background: #fff;
  border-radius: 24px;
  flex-direction: column;
  gap: .6rem;
  padding: 1.25rem;
  display: flex;
}

.software-ai-scenario__tag {
  background: rgb(var(--software-airbnb-soft));
  width: fit-content;
  color: rgb(var(--software-airbnb-text));
  border-radius: 999px;
  padding: .25rem .75rem;
  font-size: .82rem;
  font-weight: 600;
  display: inline-block;
}

.software-ai-scenario__prompt {
  color: rgb(var(--software-airbnb-text));
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.software-ai-scenario__screenshot {
  border-radius: 16px;
  margin-top: .4rem;
  overflow: hidden;
}

.software-ai-screenshot__image {
  object-fit: contain;
  object-position: top center;
  border-radius: 16px;
  width: 100%;
  height: auto;
  display: block;
}

.software-contact-band__qr-grid {
  gap: 1.25rem;
  display: grid;
}

.software-contact-band__qr-card {
  text-align: center;
  background: rgb(var(--software-airbnb-soft));
  border-radius: 20px;
  justify-items: center;
  gap: .75rem;
  padding: 1.5rem;
  display: grid;
}

.software-contact-band__qr-card--primary {
  background: #fff5f7;
}

.software-contact-band__qr {
  background: none;
  border-radius: 24px;
  padding: 0;
}

.software-contact-band__qr-image {
  object-fit: cover;
  border-radius: 20px;
  width: 10rem;
  height: 10rem;
  display: block;
}

.software-contact-band__qr-label {
  color: rgb(var(--software-airbnb-text));
  margin-top: .75rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.software-contact-band__qr-hint {
  color: rgb(var(--software-airbnb-muted));
  margin-top: .35rem;
  font-size: .88rem;
  line-height: 1.6;
}

.software-contact-band__info-card {
  background: rgb(var(--software-airbnb-soft));
  border-radius: 20px;
  padding: 1.5rem;
}

.software-contact-band__info-title {
  color: rgb(var(--software-airbnb-text));
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.software-contact-band__info-title:first-child {
  margin-top: 0;
}

.software-contact-band__info-list {
  color: rgb(var(--software-airbnb-muted));
  gap: .45rem;
  margin-top: .6rem;
  padding-left: 0;
  font-size: .93rem;
  line-height: 1.65;
  list-style: none;
  display: grid;
}

.software-contact-band__info-list strong {
  color: rgb(var(--software-airbnb-text));
  font-weight: 500;
}

.software-footer {
  text-align: center;
  color: rgb(var(--software-airbnb-muted));
  padding: 2rem 1rem;
  font-size: .82rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .software-shell, .software-shell--purple {
    gap: 2rem;
    padding: 2rem 1.5rem 5rem;
  }

  .software-section {
    padding: 2rem;
  }

  .software-nav__links {
    display: flex;
  }

  .software-hero-pro {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: .75rem;
  }

  .software-grid--feature-triptych, .software-grid--pricing-pro {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .software-contact-band__qr-grid {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  }

  .software-experience-unified-card {
    padding: 1.5rem;
  }

  .software-experience-unified-card__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .software-experience-panel {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    column-gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .software-nav {
    border-radius: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
    width: min(100% - 2rem, 1320px - 2rem);
    padding: .65rem 1rem;
  }

  .software-nav__links {
    order: 3;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    font-size: .82rem;
    display: flex;
  }

  .software-nav__links a {
    padding: .35rem .5rem;
  }

  .software-hero-pro__title {
    max-width: 9ch;
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .software-hero-visual-card__image {
    border-radius: 24px;
    height: min(26rem, 56vh);
  }

  .software-hero-visual-card {
    border-radius: 24px;
    min-height: min(26rem, 56vh);
  }

  .software-hero-pro__overlay {
    background: linear-gradient(#1111110a 0%, #11111124 34%, #11111185 100%);
    justify-content: flex-start;
    gap: .85rem;
    padding: 1rem;
  }

  .software-hero-pro__title--overlay {
    white-space: nowrap;
    max-width: none;
    font-size: clamp(2.15rem, 10vw, 3.3rem);
  }

  .software-hero-pro__desc--overlay {
    max-width: none;
    font-size: .94rem;
    line-height: 1.65;
  }

  .software-hero-pro__actions--overlay {
    flex-direction: column;
  }

  .software-contact-band__qr-card {
    text-align: center;
    justify-items: center;
  }

  .software-ai-scenarios {
    grid-template-columns: 1fr;
  }
}

.xhs-page {
  --xhs-bg: #f6f7f2;
  --xhs-surface: #fff;
  --xhs-surface-soft: #eef3ec;
  --xhs-ink: #17231e;
  --xhs-copy: #435048;
  --xhs-muted: #6f7b73;
  --xhs-border: #d9ded7;
  --xhs-accent: #b84233;
  --xhs-accent-dark: #8e3026;
  --xhs-sage: #4e6d5b;
  --xhs-yellow: #f4c55f;
  background: var(--xhs-bg);
  min-height: 100vh;
  color: var(--xhs-ink);
  padding: 1rem;
}

.xhs-nav {
  z-index: 10;
  border: 1px solid var(--xhs-border);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #fffffff0;
  border-radius: 8px;
  gap: .35rem;
  width: min(100%, 1180px);
  margin: 0 auto 1rem;
  padding: .45rem;
  display: flex;
  position: sticky;
  top: 0;
  overflow-x: auto;
}

.xhs-nav a {
  color: var(--xhs-copy);
  border-radius: 6px;
  flex: none;
  padding: .55rem .8rem;
  font-size: .9rem;
  font-weight: 600;
}

.xhs-nav a:hover {
  background: var(--xhs-surface-soft);
  color: var(--xhs-ink);
}

.xhs-hero, .xhs-section {
  width: min(100%, 1180px);
  margin: 0 auto 1rem;
}

.xhs-hero {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: stretch;
  gap: 1rem;
  display: grid;
}

.xhs-hero__copy, .xhs-hero__panel, .xhs-section, .xhs-post-card {
  border: 1px solid var(--xhs-border);
  background: var(--xhs-surface);
  border-radius: 8px;
}

.xhs-hero__copy {
  background: linear-gradient(135deg, #4e6d5b1f, #b8423314),
    var(--xhs-surface);
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
}

.xhs-eyebrow, .xhs-section__kicker {
  color: var(--xhs-accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
}

.xhs-hero h1 {
  letter-spacing: 0;
  max-width: 12ch;
  margin-top: .65rem;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
}

.xhs-hero p {
  max-width: 42rem;
  color: var(--xhs-copy);
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.xhs-hero__panel {
  padding: 1.25rem;
}

.xhs-hero__panel dl {
  gap: 1rem;
  display: grid;
}

.xhs-hero__panel div {
  border-bottom: 1px solid var(--xhs-border);
  padding-bottom: 1rem;
}

.xhs-hero__panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.xhs-hero__panel dt {
  color: var(--xhs-muted);
  font-size: .82rem;
  font-weight: 700;
}

.xhs-hero__panel dd {
  color: var(--xhs-ink);
  margin-top: .35rem;
  line-height: 1.65;
}

.xhs-section {
  padding: 1.25rem;
}

.xhs-section--split {
  grid-template-columns: minmax(260px, .42fr) minmax(0, .58fr);
  align-items: start;
  gap: 1.25rem;
  display: grid;
}

.xhs-section__header {
  max-width: 760px;
  margin-bottom: 1rem;
}

.xhs-section h2 {
  letter-spacing: 0;
  margin-top: .35rem;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.2;
}

.xhs-section h3 {
  font-size: 1rem;
  line-height: 1.4;
}

.xhs-section p, .xhs-section li {
  color: var(--xhs-copy);
  line-height: 1.75;
}

.xhs-section ul {
  padding-left: 1.15rem;
}

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

.xhs-chip-card {
  border: 1px solid var(--xhs-border);
  background: var(--xhs-surface-soft);
  min-height: 64px;
  color: var(--xhs-ink);
  border-radius: 8px;
  align-items: center;
  padding: .9rem;
  font-weight: 700;
  display: flex;
}

.xhs-token-groups {
  gap: 1rem;
  display: grid;
}

.xhs-token-groups h3 {
  margin-bottom: .55rem;
}

.xhs-token-list {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.xhs-token-list span {
  border: 1px solid var(--xhs-border);
  color: var(--xhs-copy);
  background: #fff;
  border-radius: 999px;
  padding: .45rem .65rem;
  font-size: .9rem;
}

.xhs-token-list--dense span {
  font-size: .84rem;
}

.xhs-plan-grid, .xhs-review-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
  display: grid;
}

.xhs-plan-card, .xhs-review-grid > div {
  border: 1px solid var(--xhs-border);
  background: #fff;
  border-radius: 8px;
  padding: .95rem;
}

.xhs-plan-card > span {
  color: var(--xhs-accent-dark);
  background: #fdf3e0;
  border-radius: 999px;
  margin-bottom: .75rem;
  padding: .25rem .55rem;
  font-size: .78rem;
  font-weight: 800;
  display: inline-flex;
}

.xhs-plan-card p {
  margin-top: .45rem;
  font-size: .9rem;
}

.xhs-plan-card ul {
  gap: .45rem;
  margin-top: .7rem;
  font-size: .86rem;
  display: grid;
}

.xhs-table-wrap {
  border: 1px solid var(--xhs-border);
  border-radius: 8px;
  overflow-x: auto;
}

.xhs-table {
  border-collapse: collapse;
  background: #fff;
  width: 100%;
  min-width: 720px;
}

.xhs-table th, .xhs-table td {
  border-bottom: 1px solid var(--xhs-border);
  text-align: left;
  vertical-align: top;
  padding: .85rem .9rem;
}

.xhs-table th {
  background: var(--xhs-surface-soft);
  color: var(--xhs-ink);
  font-size: .86rem;
}

.xhs-table td {
  color: var(--xhs-copy);
  font-size: .92rem;
  line-height: 1.6;
}

.xhs-table tbody tr:last-child td {
  border-bottom: 0;
}

.xhs-post-list {
  gap: 1rem;
  display: grid;
}

.xhs-post-card {
  overflow: hidden;
}

.xhs-post-card__meta {
  border-bottom: 1px solid var(--xhs-border);
  background: var(--xhs-surface-soft);
  color: var(--xhs-muted);
  letter-spacing: .06em;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem .85rem;
  font-size: .78rem;
  font-weight: 800;
  display: flex;
}

.xhs-post-card__grid {
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  display: grid;
}

.xhs-cover-preview {
  aspect-ratio: 1;
  color: #1b241d;
  text-align: center;
  background: linear-gradient(160deg, #f4c55f6b, #4e6d5b1f), #fbf5e5;
  border: 1px solid #e5d6b2;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
  padding: 1rem;
  display: flex;
}

.xhs-cover-preview strong {
  letter-spacing: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
  display: block;
}

.xhs-post-card__content {
  min-width: 0;
}

.xhs-post-card__header {
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  display: flex;
}

.xhs-post-card__header h3 {
  font-size: 1.25rem;
}

.xhs-copy-button {
  background: var(--xhs-ink);
  color: #fff;
  min-height: 36px;
  font: inherit;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  flex: none;
  padding: 0 .75rem;
  font-size: .86rem;
  font-weight: 700;
}

.xhs-copy-button:hover {
  background: var(--xhs-accent);
}

.xhs-post-body {
  white-space: pre-wrap;
  border: 1px solid var(--xhs-border);
  color: var(--xhs-copy);
  background: #fbfcf9;
  border-radius: 8px;
  margin-top: .85rem;
  padding: .95rem;
  font-family: inherit;
  font-size: .94rem;
  line-height: 1.8;
}

.xhs-tag-line {
  color: var(--xhs-accent-dark);
  margin-top: .75rem;
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.7;
}

.xhs-location {
  margin-top: .55rem;
  font-size: .92rem;
}

.xhs-replies {
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  margin-top: .75rem;
  display: flex;
}

.xhs-replies p {
  width: 100%;
  color: var(--xhs-muted);
  font-size: .82rem;
  font-weight: 800;
}

.xhs-replies span {
  background: var(--xhs-surface-soft);
  color: var(--xhs-copy);
  border-radius: 6px;
  padding: .45rem .6rem;
  font-size: .86rem;
  line-height: 1.5;
}

.xhs-script-stack {
  gap: .65rem;
  display: grid;
}

.xhs-script-line, .xhs-script-box {
  border: 1px solid var(--xhs-border);
  background: #fff;
  border-radius: 8px;
}

.xhs-script-line {
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  display: flex;
}

.xhs-script-line span {
  color: var(--xhs-copy);
  line-height: 1.55;
}

.xhs-script-box {
  justify-items: start;
  gap: .65rem;
  padding: .9rem;
  display: grid;
}

.xhs-script-box p {
  margin: 0;
}

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

.xhs-review-grid strong {
  color: var(--xhs-sage);
  margin-bottom: .4rem;
  font-size: 1rem;
  display: block;
}

@media (max-width: 1024px) {
  .xhs-hero, .xhs-section--split {
    grid-template-columns: 1fr;
  }

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

  .xhs-post-card__grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

.mcb-shell {
  color: #e8e8f0;
  background: #0a0a12;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.mcb-hero {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 640px;
  padding: 6rem 1.5rem 4rem;
  display: flex;
}

.mcb-hero__badge {
  color: #818cf8;
  letter-spacing: .06em;
  background: #6366f126;
  border-radius: 999px;
  padding: .3rem .9rem;
  font-size: .78rem;
  font-weight: 700;
  display: inline-block;
}

.mcb-hero__title {
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #818cf8, #c084fc, #f472b6);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 800;
}

.mcb-hero__tagline {
  color: #a5b4fc;
  font-size: 1.35rem;
  font-weight: 600;
}

.mcb-hero__desc {
  color: #9ca3af;
  max-width: 30rem;
  font-size: 1rem;
  line-height: 1.8;
}

.mcb-hero__actions {
  margin-top: 1.5rem;
}

.mcb-btn {
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  display: inline-flex;
}

.mcb-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 4px 24px #6366f159;
}

.mcb-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px #6366f180;
}

.mcb-products {
  width: min(100%, 880px);
  padding: 0 1.5rem 4rem;
}

.mcb-products__heading {
  color: #e8e8f0;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.mcb-products__grid {
  gap: 1.25rem;
  display: grid;
}

.mcb-product-card {
  background: #ffffff0a;
  border: 1px solid #ffffff14;
  border-radius: 20px;
  gap: .75rem;
  padding: 1.75rem;
  transition: border-color .15s, background .15s;
  display: grid;
}

.mcb-product-card:hover {
  background: #ffffff0f;
  border-color: #818cf84d;
}

.mcb-product-card__tag {
  color: #9ca3af;
  background: #ffffff0f;
  border-radius: 999px;
  width: fit-content;
  padding: .2rem .7rem;
  font-size: .78rem;
  font-weight: 600;
  display: inline-block;
}

.mcb-product-card__name {
  color: #e8e8f0;
  font-size: 1.4rem;
  font-weight: 700;
}

.mcb-product-card__desc {
  color: #9ca3af;
  font-size: .95rem;
  line-height: 1.7;
}

.mcb-product-card__link {
  color: #818cf8;
  margin-top: .5rem;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
}

.mcb-product-card__link:hover {
  color: #a5b4fc;
}

.mcb-footer {
  text-align: center;
  color: #6b7280;
  border-top: 1px solid #ffffff0f;
  width: 100%;
  padding: 2rem 1rem;
  font-size: .82rem;
  line-height: 1.8;
}

.mcb-footer__icp {
  color: #6b7280;
  text-decoration: none;
}

.mcb-footer__icp:hover {
  color: #9ca3af;
}

@media (max-width: 680px) {
  .mcb-hero {
    padding: 4rem 1.25rem 3rem;
  }

  .xhs-page {
    padding: .65rem;
  }

  .xhs-nav {
    margin-bottom: .65rem;
  }

  .xhs-hero__copy {
    min-height: 280px;
  }

  .xhs-hero h1 {
    max-width: 10ch;
  }

  .xhs-naming-grid, .xhs-plan-grid, .xhs-review-grid, .xhs-post-card__grid {
    grid-template-columns: 1fr;
  }

  .xhs-cover-preview {
    max-width: 260px;
  }

  .xhs-post-card__header, .xhs-script-line {
    flex-direction: column;
    align-items: stretch;
  }

  .xhs-copy-button {
    width: 100%;
  }
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/