:root {
  color-scheme: light;
  --bg: #fff5f8;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #fff;
  --ink: #2e2430;
  --muted: #7c5868;
  --pink: #ee4f91;
  --pink-strong: #d92f78;
  --pink-soft: #ffe1ec;
  --gold: #d9a84f;
  --gold-soft: #fff0bd;
  --line: rgba(224, 71, 135, 0.2);
  --line-strong: rgba(217, 168, 79, 0.48);
  --shadow: 0 24px 70px rgba(174, 63, 114, 0.18);
  --max: 1180px;
  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 14% 18%, rgba(255, 118, 174, 0.2), transparent 18rem),
    radial-gradient(circle at 86% 12%, rgba(255, 222, 145, 0.32), transparent 20rem),
    linear-gradient(135deg, rgba(255, 230, 239, 0.9), transparent 34%),
    linear-gradient(215deg, rgba(255, 240, 189, 0.68), transparent 34%),
    linear-gradient(180deg, #fffafa 0%, #fff3f8 48%, #ffe1ec 100%);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(238, 79, 145, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 79, 145, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.35) 70%, transparent);
}

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(224, 71, 135, 0.14);
  background: rgba(255, 250, 251, 0.82);
  backdrop-filter: blur(18px);
}

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

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(238, 79, 145, 0.22);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand strong {
  color: #251b27;
  font-weight: 950;
  white-space: nowrap;
}

.brand-divider {
  color: var(--gold);
  font-weight: 950;
}

.brand-id {
  color: var(--pink-strong);
  font-weight: 950;
}

.brand small {
  color: var(--pink-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 800;
}

.nav-menu a {
  white-space: nowrap;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-weight: 950;
}

.nav-cta {
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff7aad 58%, #e7b65c);
  box-shadow: 0 14px 32px rgba(238, 79, 145, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

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

main {
  padding: 34px 0 0;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.98fr);
  gap: 28px;
  align-items: center;
  min-width: 0;
  min-height: calc(100vh - 116px);
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(217, 168, 79, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 244, 248, 0.96) 0%, rgba(255, 236, 246, 0.9) 48%, rgba(255, 220, 234, 0.42) 48.2%, rgba(255, 238, 200, 0.7) 100%),
    linear-gradient(135deg, rgba(238, 79, 145, 0.23), rgba(255, 240, 189, 0.42));
  box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 18px;
  border: 1px solid rgba(217, 168, 79, 0.28);
  border-radius: 8px;
}

.hero::after {
  width: 520px;
  height: 520px;
  right: -180px;
  top: -160px;
  border: 1px solid rgba(217, 168, 79, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 38px rgba(255, 218, 236, 0.16);
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding: 9px 16px 9px 9px;
  border: 1px solid rgba(217, 168, 79, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 18px 42px rgba(238, 79, 145, 0.14);
}

.hero-logo-mark img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(238, 79, 145, 0.2);
}

.hero-logo-mark span {
  color: #7a4f27;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-portrait-spotlight {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--pink-strong);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: #241824;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5.85vw, 5.35rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 12px;
  color: #5f4051;
  font-size: clamp(1.05rem, 1.7vw, 1.36rem);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.support-line {
  max-width: 560px;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--pink);
  color: var(--muted);
  font-weight: 750;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.lounge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 16px;
}

.lounge-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(217, 168, 79, 0.36);
  border-radius: 999px;
  color: #7b4d5e;
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-width: 180px;
  padding: 0 22px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink-strong), #ff78ad 58%, #e6b557);
  box-shadow: 0 18px 36px rgba(238, 79, 145, 0.28);
}

.btn-secondary {
  color: #6b3a50;
  background: rgba(255, 255, 255, 0.78);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 460px;
  margin-top: 28px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.hero-note img {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  object-fit: cover;
}

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

.hero-note strong {
  margin-bottom: 4px;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.lead-name {
  direction: ltr;
  unicode-bidi: isolate;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  display: grid;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  padding: 18px 0 18px 18px;
}

.hero-visual::before {
  position: absolute;
  inset: 0 0 0 56px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(217, 168, 79, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(255, 230, 238, 0.22), rgba(255, 218, 236, 0.08));
  content: "";
}

.gold-orbit {
  position: absolute;
  inset: -20px -18px auto auto;
  z-index: 0;
  width: min(44vw, 430px);
  aspect-ratio: 1;
  border: 2px solid rgba(217, 168, 79, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.gold-orbit::before,
.gold-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.gold-orbit::before {
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.gold-orbit::after {
  width: 88px;
  height: 88px;
  right: 12%;
  top: 8%;
  background: radial-gradient(circle, rgba(255, 223, 151, 0.76), transparent 70%);
}

.portrait-card,
.room-card,
.path-card,
.steps-section,
.live-section,
.support-section,
.faq-section,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.portrait-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-color: rgba(217, 168, 79, 0.54);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 24%),
    #ffd9e8;
  box-shadow:
    0 34px 96px rgba(174, 63, 114, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.54);
}

.portrait-card::before {
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 240, 189, 0.5);
  border-radius: 8px;
  content: "";
}

.portrait-card::after {
  position: absolute;
  inset: auto -18% -15% -18%;
  height: 32%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 77, 145, 0.34));
  content: "";
}

.portrait-card > img {
  width: 100%;
  height: min(78vh, 820px);
  object-fit: cover;
  object-position: center 14%;
  filter: saturate(1.08) contrast(1.04);
}

.portrait-badge {
  position: absolute;
  z-index: 3;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 237, 245, 0.82)),
    rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  color: #4a2537;
  font-weight: 950;
}

.portrait-badge img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
}

.room-card {
  position: absolute;
  top: 38px;
  right: 18px;
  z-index: 4;
  display: grid;
  gap: 10px;
  width: 186px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 235, 244, 0.72)),
    rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(95, 38, 67, 0.2);
}

.live-pill {
  justify-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  font-size: 0.72rem;
  font-weight: 950;
}

.room-waves {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 44px;
}

.room-waves i {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-soft), var(--pink));
}

.room-waves i:nth-child(1) { height: 24px; }
.room-waves i:nth-child(2) { height: 44px; }
.room-waves i:nth-child(3) { height: 34px; }
.room-waves i:nth-child(4) { height: 52px; }
.room-waves i:nth-child(5) { height: 29px; }

.room-card p {
  display: none;
  margin-bottom: 0;
  color: var(--muted);
}

.path-grid,
.support-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.path-card {
  padding: 24px;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #7d4930;
  background: linear-gradient(135deg, #fff7d7, #ffd9e8);
  font-weight: 950;
}

.path-card h2,
.section-copy h2,
.support-section h2,
.faq-section h2,
.final-cta h2 {
  margin-bottom: 10px;
  color: #281b28;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1.02;
}

.path-card p,
.section-copy p,
.support-grid p,
.faq-grid p,
.final-cta p,
.site-footer {
  color: var(--muted);
  line-height: 1.55;
}

.path-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--pink-strong);
  font-weight: 950;
}

.steps-section,
.live-section,
.support-section,
.faq-section,
.final-cta {
  margin-top: 22px;
  padding: 30px;
}

.steps-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.steps-grid article,
.support-grid article,
.faq-grid details {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.steps-grid span {
  color: var(--pink-strong);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(48, 25, 41, 0.92), rgba(111, 42, 72, 0.86)),
    #351d2d;
  color: #fff;
}

.live-section .section-copy h2,
.live-section .section-copy p {
  color: #fff;
}

.live-section .section-copy p:last-child {
  color: #ffe7f0;
}

.live-phone {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 900;
}

.phone-top b {
  color: #fff0bd;
}

.avatar-ring {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.avatar-ring span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  font-weight: 950;
}

.chat-stack {
  display: grid;
  gap: 8px;
}

.chat-stack p {
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

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

.faq-grid {
  display: grid;
  gap: 12px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}

details p {
  margin: 12px 0 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 225, 236, 0.82)),
    var(--surface);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 34px;
  font-size: 0.86rem;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    padding: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .steps-section,
  .live-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .nav-shell {
    min-height: 72px;
  }

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

  .brand {
    gap: 9px;
  }

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

  .brand small {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  main {
    display: grid;
    justify-items: start;
    padding-top: 14px;
  }

  main > * {
    width: min(100%, 362px);
  }

  .hero {
    gap: 18px;
    padding: 16px;
    width: min(100%, 362px);
    overflow: hidden;
  }

  .hero::before {
    inset: 8px;
  }

  .hero::after,
  .gold-orbit {
    display: none;
  }

  .hero-logo-mark {
    gap: 10px;
    margin-bottom: 8px;
    padding: 6px 10px 6px 6px;
  }

  .hero-logo-mark img {
    width: 46px;
    height: 46px;
  }

  .hero-logo-mark span {
    font-size: 0.58rem;
  }

  .mobile-portrait-spotlight {
    position: relative;
    display: block;
    width: min(100%, 320px);
    height: 272px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid rgba(217, 168, 79, 0.48);
    border-radius: 8px;
    background:
      radial-gradient(circle at 50% 16%, rgba(255, 240, 189, 0.75), transparent 34%),
      linear-gradient(135deg, #ffe0ec 0%, #fff7fb 52%, #ffe8b8 100%);
    box-shadow: 0 16px 38px rgba(174, 63, 114, 0.18);
  }

  .mobile-portrait-spotlight::before {
    position: absolute;
    inset: 8px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 240, 189, 0.58);
    border-radius: 8px;
    content: "";
  }

  .mobile-portrait-spotlight img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: saturate(1.08) contrast(1.04);
  }

  .mobile-portrait-spotlight span {
    position: absolute;
    left: 12px;
    top: 10px;
    z-index: 3;
    padding: 6px 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(217, 47, 120, 0.88);
    font-size: 0.66rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: none;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.66rem;
  }

  .hero h1 {
    margin-bottom: 8px;
    max-width: 320px;
    font-size: clamp(1.78rem, 9.7vw, 2.24rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .hero-text {
    margin-bottom: 8px;
    max-width: 320px;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .support-line {
    margin-bottom: 10px;
    max-width: 320px;
    font-size: 0.72rem;
    line-height: 1.26;
  }

  .lounge-tags {
    display: none;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 320px);
  }

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

  .hero-note {
    display: none;
  }

  .lead-name {
    max-width: 190px;
    font-size: 0.82rem;
  }

  .hero > .hero-visual {
    display: none;
  }

  .hero-note img {
    width: 52px;
    height: 52px;
  }

  .hero-visual {
    gap: 12px;
  }

  .portrait-card > img {
    height: 330px;
    object-position: center 18%;
  }

  .room-card {
    display: none;
  }

  .path-grid,
  .steps-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .path-card,
  .steps-section,
  .live-section,
  .support-section,
  .faq-section,
  .final-cta {
    padding: 20px;
  }

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

  .final-cta,
  .site-footer {
    display: grid;
  }
}
