:root {
  color-scheme: light;
  --bg: #fff5f7;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-pink: rgba(255, 244, 248, 0.92);
  --ink: #2f2830;
  --muted: #765263;
  --soft: #fff0f5;
  --line: rgba(236, 70, 126, 0.22);
  --line-strong: rgba(236, 70, 126, 0.48);
  --pink: #ec477e;
  --pink-deep: #c52662;
  --rose: #f7cad7;
  --rose-2: #e68ca9;
  --sand: #e3b56d;
  --dark: #402934;
  --shadow: 0 28px 90px rgba(129, 53, 77, 0.16);
  --max: 1440px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 37%, rgba(248, 208, 220, 0.78), transparent 9rem),
    radial-gradient(circle at 78% 30%, rgba(244, 191, 209, 0.74), transparent 14rem),
    linear-gradient(180deg, #fff9f8 0%, #fff2f7 58%, #f8dde7 100%);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(236, 70, 126, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 70, 126, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.36) 72%, transparent);
}

body::after {
  position: fixed;
  inset: auto -10% -12% 52%;
  z-index: -1;
  height: 44vh;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(236, 70, 126, 0.18), transparent 65%);
}

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

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

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(236, 70, 126, 0.12);
  background: rgba(255, 250, 250, 0.78);
  backdrop-filter: blur(18px);
}

@media (min-width: 821px) {
  .site-header {
    position: relative;
    top: auto;
    width: min(var(--max), calc(100% - 64px));
    margin: 36px auto 0;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 34px 34px 0 0;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 70px rgba(129, 53, 77, 0.08);
  }

  .site-header + main .hero {
    border-top: 0;
    border-radius: 0 0 34px 34px;
  }

  .hero {
    align-items: start;
  }

  .hero-copy,
  .hero-visual {
    margin-top: clamp(34px, 4vw, 56px);
  }

  .nav-shell {
    width: calc(100% - 112px);
    min-height: 132px;
  }
}

.nav-shell {
  width: min(var(--max), calc(100% - 64px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  box-shadow: 0 12px 36px rgba(209, 49, 116, 0.2);
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.brand-copy strong {
  font-size: 28px;
  line-height: 1;
}

.owner-badge {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffe0ea;
  color: #8d415d;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.badge-divider {
  width: 1px;
  height: 14px;
  background: rgba(141, 65, 93, 0.45);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 36px);
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.nav-menu a:not(.nav-cta) {
  color: rgba(47, 40, 48, 0.86);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--pink);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.nav-cta,
.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border-radius: 999px;
  font-weight: 950;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.nav-cta:hover,
.btn:hover,
.text-link:hover,
.nav-cta:focus-visible,
.btn:focus-visible,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.nav-cta,
.btn-primary {
  border: 1px solid rgba(236, 70, 126, 0.54);
  background: linear-gradient(135deg, #ef4a86, #e83475);
  color: #fff;
  box-shadow: 0 18px 36px rgba(236, 70, 126, 0.22);
}

.nav-cta {
  min-height: 54px;
  padding: 0 25px;
}

.btn {
  min-width: 220px;
  padding: 0 26px;
  font-size: 17px;
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
}

main {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: clamp(960px, 68vw, 1040px);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(510px, 0.86fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  padding: clamp(40px, 5vw, 72px) clamp(34px, 4.8vw, 72px) 74px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  content: "";
  border-radius: 50%;
}

.hero::before {
  left: 11%;
  top: 28%;
  width: 170px;
  height: 170px;
  background: rgba(250, 214, 226, 0.75);
}

.hero::after {
  right: 4%;
  top: 10%;
  width: 240px;
  height: 240px;
  background: rgba(247, 198, 216, 0.76);
}

.hero-copy,
.hero-visual,
.mobile-preview {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 10px 20px;
  border-radius: 999px;
  background: #ffe0ea;
  color: var(--pink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 670px;
  margin: 34px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 4.2vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.43;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.support-line {
  max-width: 760px;
  margin: 24px 0 0;
  color: #7e5262;
  font-size: 16px;
  line-height: 1.45;
}

.guidance-card {
  width: min(500px, 100%);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 245, 248, 0.86);
}

.soft-dot {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: inset 0 -14px 0 rgba(255, 255, 255, 0.16);
}

.guidance-card h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.guidance-card p {
  margin: 0;
  color: var(--muted);
}

.hero-visual {
  min-height: 600px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background: rgba(255, 241, 246, 0.9);
  box-shadow: 0 26px 80px rgba(236, 70, 126, 0.09);
}

.hero-bottom-cards {
  position: absolute;
  right: clamp(34px, 4.8vw, 72px);
  bottom: 36px;
  z-index: 3;
  display: flex;
  gap: 24px;
}

.hero-bottom-cards a {
  width: 220px;
  min-height: 170px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: #402934;
  color: #fff;
  box-shadow: 0 22px 60px rgba(64, 41, 52, 0.16);
}

.hero-bottom-cards strong {
  font-size: 18px;
  line-height: 1.1;
}

.hero-bottom-cards span {
  color: rgba(255, 240, 246, 0.82);
  font-size: 14px;
}

@media (min-width: 821px) {
  .hero {
    align-items: start;
  }

  .hero-copy,
  .hero-visual {
    margin-top: clamp(34px, 4vw, 56px);
  }
}

.portrait-frame {
  position: relative;
  width: min(100%, 365px);
  aspect-ratio: 1;
  padding: 7px;
  border-radius: 50%;
  background:
    linear-gradient(#fff0f5, #fff0f5) padding-box,
    linear-gradient(135deg, #f05289, #f9b7ca) border-box;
  border: 2px solid transparent;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center 47%;
}

.live-pill,
.role-pill {
  position: absolute;
  z-index: 2;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.live-pill {
  left: -28px;
  top: 54px;
  padding: 0 22px;
  background: var(--pink);
  color: #fff;
}

.role-pill {
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.78);
  color: #8b5266;
}

.host-pill {
  right: -42px;
  top: 86px;
}

.agent-pill {
  left: -20px;
  bottom: 26px;
}

.visual-card {
  width: min(100%, 390px);
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.visual-card h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.visual-card p {
  margin-bottom: 14px;
  color: var(--muted);
}

.heart-row {
  display: flex;
  gap: 12px;
}

.heart-row span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pink);
}

.heart-row span:nth-child(2) {
  background: var(--rose-2);
}

.heart-row span:nth-child(3) {
  background: var(--rose);
}

.mobile-preview {
  display: none;
}

.quick-cards {
  position: absolute;
  left: clamp(34px, 4.8vw, 72px);
  right: 560px;
  bottom: 36px;
  z-index: 2;
  width: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
}

.quick-cards article,
.split-section,
.steps,
.live-room,
.support,
.faq,
.final-cta,
.site-footer {
  border: 1px solid var(--line);
  background: rgba(255, 246, 249, 0.86);
  box-shadow: 0 18px 54px rgba(129, 53, 77, 0.08);
}

.quick-cards article {
  min-height: 150px;
  height: 170px;
  padding: 20px;
  border-radius: 24px;
}

.quick-cards span {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--pink);
}

.quick-cards article:nth-child(2) span {
  background: var(--rose-2);
}

.quick-cards article:nth-child(3) span {
  background: var(--sand);
}

.quick-cards h2 {
  margin-bottom: 8px;
  font-size: 21px;
}

.quick-cards p,
.split-section p,
.steps p,
.live-room p,
.support p,
.faq p,
.final-cta p,
.site-footer span {
  color: var(--muted);
  line-height: 1.55;
}

.quick-cards p {
  font-size: 13px;
  line-height: 1.28;
}

.split-section,
.steps,
.live-room,
.support,
.faq,
.final-cta {
  margin: 24px 0;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 30px;
}

.split-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.split-section h2,
.steps h2,
.live-room h2,
.support h2,
.faq h2,
.final-cta h2 {
  margin: 18px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.split-section p,
.steps > p,
.live-room p,
.support > p,
.final-cta p {
  max-width: 760px;
  font-size: 18px;
}

.text-link {
  flex: 0 0 auto;
  min-width: 180px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  color: var(--pink-deep);
  background: rgba(255, 255, 255, 0.6);
}

.step-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.step-grid article,
.support-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.step-grid strong {
  color: var(--pink);
  font-size: 22px;
}

.support-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.live-room {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 30px;
  align-items: center;
}

.room-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--dark);
  color: #fff;
}

.room-card > span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.room-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center 46%;
}

.room-card .room-meta {
  padding: 20px;
}

.room-card strong {
  display: block;
  font-size: 22px;
}

.room-card small {
  color: rgba(255, 240, 246, 0.78);
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--ink);
  font-weight: 950;
  font-size: 19px;
}

.faq p {
  max-width: 820px;
  margin-bottom: 22px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto 34px;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 1120px) {
  .hero,
  .live-room {
    grid-template-columns: 1fr;
  }

  .quick-cards {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 20px 0 32px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-bottom-cards {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    top: 0;
    width: auto;
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgba(236, 70, 126, 0.12);
    border-radius: 0;
    box-shadow: none;
  }

  .nav-shell,
  main,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    min-height: 76px;
    gap: 10px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    display: none;
  }

  .owner-badge {
    max-width: 250px;
    padding: 7px 10px;
    font-size: 11px;
    line-height: 1.1;
    white-space: normal;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 84px;
    z-index: 29;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 250, 250, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: 0;
    display: block;
    padding: 22px 18px 18px;
    border-radius: 28px;
  }

  .hero::before,
  .hero::after,
  .hero-visual {
    display: none;
  }

  .eyebrow,
  .section-kicker {
    padding: 9px 14px;
    font-size: 11px;
  }

  .hero h1 {
    margin: 22px 0 12px;
    font-size: clamp(42px, 11.4vw, 52px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .btn {
    width: 100%;
    min-height: 56px;
  }

  .support-line,
  .guidance-card {
    display: none;
  }

  .mobile-preview {
    display: block;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
  }

  .mobile-preview img {
    width: 100%;
    height: clamp(286px, 73vw, 318px);
    object-fit: cover;
    object-position: center 46%;
  }

  .preview-chip {
    margin: -28px auto 12px;
    position: relative;
    z-index: 2;
    width: max-content;
    max-width: calc(100% - 28px);
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
  }

  .quick-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 16px 0 18px;
  }

  .quick-cards article {
    height: auto;
    min-height: 66px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 16px;
  }

  .quick-cards span {
    width: 22px;
    height: 22px;
    margin: 0;
  }

  .quick-cards h2 {
    margin: 0;
    font-size: 17px;
  }

  .quick-cards p {
    margin: 0;
    font-size: 13px;
    text-align: right;
  }

  .split-section,
  .steps,
  .live-room,
  .support,
  .faq,
  .final-cta {
    margin: 14px 0;
    padding: 18px;
    border-radius: 24px;
  }

  .split-section,
  .final-cta {
    display: block;
  }

  .split-section h2,
  .steps h2,
  .live-room h2,
  .support h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(30px, 8.5vw, 39px);
  }

  .text-link {
    width: 100%;
    margin-top: 12px;
  }

  .step-grid,
  .support-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .room-card img {
    height: 210px;
  }

  .faq summary {
    font-size: 17px;
  }

  .site-footer {
    display: grid;
    margin-bottom: 18px;
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .nav-shell,
  main,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .hero h1 {
    font-size: 40px;
  }

  .owner-badge {
    max-width: clamp(168px, 54vw, 238px);
    font-size: 10px;
  }
}
