:root {
  color-scheme: light;
  --bg: #fff2f8;
  --ink: #3f2042;
  --muted: #6f4a70;
  --pink: #ff3b98;
  --pink-soft: #ffe0f1;
  --purple: #9b6cff;
  --blue: #64cff0;
  --gold: #f9b84b;
  --card: rgba(255, 255, 255, 0.82);
  --line: rgba(255, 59, 152, 0.58);
  --shadow: 0 26px 80px rgba(122, 63, 124, 0.18);
  --max: 1220px;
  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;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 6%, rgba(255, 59, 152, 0.32), transparent 28rem),
    radial-gradient(circle at 42% 42%, rgba(100, 207, 240, 0.2), transparent 26rem),
    radial-gradient(circle at 18% 76%, rgba(249, 184, 75, 0.22), transparent 24rem),
    linear-gradient(135deg, #fff7fb 0%, #ffe8f5 42%, #eef8ff 100%);
}

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: 80;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 247, 252, 0.78);
  border-bottom: 1px solid rgba(255, 59, 152, 0.18);
  backdrop-filter: blur(18px);
}

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

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

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(255, 59, 152, 0.28);
}

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

.brand strong {
  font-size: 1.05rem;
  font-weight: 950;
}

.brand small {
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 950;
}

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

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

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

.nav-cta {
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff72bb);
  box-shadow: 0 18px 34px rgba(255, 59, 152, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.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, 1.08fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
  min-height: 620px;
  padding: 48px 0 56px;
}

.confetti {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.confetti span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 16px rgba(255, 59, 152, 0.35);
}

.confetti span:nth-child(2n) { background: var(--purple); }
.confetti span:nth-child(3n) { background: var(--blue); }
.confetti span:nth-child(4n) { background: var(--gold); }
.confetti span:nth-child(1) { left: 4%; top: 12%; }
.confetti span:nth-child(2) { left: 18%; top: 45%; }
.confetti span:nth-child(3) { left: 30%; top: 18%; }
.confetti span:nth-child(4) { left: 42%; top: 9%; }
.confetti span:nth-child(5) { left: 56%; top: 28%; }
.confetti span:nth-child(6) { left: 70%; top: 18%; }
.confetti span:nth-child(7) { left: 87%; top: 34%; }
.confetti span:nth-child(8) { left: 92%; top: 70%; }
.confetti span:nth-child(9) { left: 11%; top: 75%; }
.confetti span:nth-child(10) { left: 38%; top: 82%; }
.confetti span:nth-child(11) { left: 60%; top: 76%; }
.confetti span:nth-child(12) { left: 78%; top: 86%; }

.site-name {
  margin-bottom: 28px;
  color: var(--pink);
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 950;
}

.pill {
  margin-bottom: 52px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 5.25vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1::first-line {
  color: var(--ink);
}

.hero h1 {
  color: var(--ink);
}

.hero h1 span,
.pink-word {
  color: var(--pink);
}

.hero-text {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.16rem, 1.8vw, 1.5rem);
  font-weight: 850;
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.btn {
  min-width: 220px;
  padding: 0 30px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff79bf);
  box-shadow: 0 20px 42px rgba(255, 59, 152, 0.25);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.status-pill {
  color: var(--ink);
}

.boundary-line {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.profile-card {
  position: relative;
  justify-self: center;
  width: min(100%, 360px);
  padding: 36px 34px 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 239, 248, 0.78)),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.id-badge {
  position: absolute;
  top: -88px;
  right: -12px;
  min-width: 250px;
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-weight: 950;
}

.portrait-ring {
  width: 250px;
  height: 250px;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 4px solid var(--pink);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(255, 59, 152, 0.28);
}

.portrait-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 34%;
}

.profile-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.profile-copy h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 1;
}

.profile-copy p {
  margin-bottom: 0;
  color: #a34c83;
  font-weight: 950;
}

.profile-copy::after {
  color: var(--pink);
  content: "♥";
  font-size: 2rem;
}

.profile-lines {
  display: grid;
  gap: 10px;
}

.profile-lines span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 950;
}

.feature-grid,
.steps-grid,
.faq-grid {
  display: grid;
  gap: 26px;
}

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

.feature-grid article,
.split-section,
.steps-section,
.lounge-section,
.faq-section,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 16px 48px rgba(122, 63, 124, 0.1);
}

.feature-grid article {
  min-height: 120px;
  padding: 22px 24px;
}

.dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-bottom: 10px;
  border-radius: 50%;
}

.pink { background: var(--pink); }
.gold { background: var(--gold); }
.blue { background: var(--blue); }

.feature-grid h2,
.split-section h2,
.steps-section h2,
.lounge-section h2,
.faq-section h2,
.final-cta h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.05;
}

.feature-grid p,
.split-section p,
.steps-grid p,
.lounge-section p,
.faq-section p,
.final-cta p,
.site-footer {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.52;
}

.split-section,
.lounge-section,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: 34px;
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stack {
  display: grid;
  gap: 14px;
}

.stack article,
.steps-grid article,
.faq-grid details {
  padding: 18px;
  border: 1px solid rgba(255, 59, 152, 0.3);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
}

.path-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--pink);
  font-weight: 950;
}

.steps-section,
.faq-section {
  margin-top: 34px;
  padding: 34px;
}

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

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

.lounge-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 230, 243, 0.76)),
    var(--card);
}

.lounge-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 59, 152, 0.18), rgba(100, 207, 240, 0.12));
}

.room-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-weight: 950;
}

.room-top span {
  color: var(--pink);
}

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

.avatar-row i {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-style: normal;
  font-weight: 950;
}

.message-stack {
  display: grid;
  gap: 10px;
}

.message-stack p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

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

summary {
  cursor: pointer;
  font-weight: 950;
}

details p {
  margin: 12px 0 0;
}

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

.final-actions {
  display: grid;
  gap: 12px;
}

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

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

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .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: 20px;
    background: rgba(255, 255, 255, 0.96);
  }

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

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

  .hero,
  .split-section,
  .lounge-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-actions {
    width: 100%;
  }

  .feature-grid,
  .steps-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

  main {
    padding-top: 16px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 0;
    padding: 0 0 8px;
  }

  .site-name {
    margin-bottom: 8px;
  }

  .pill {
    min-height: 30px;
    margin-bottom: 14px;
    padding: 0 16px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(2.2rem, 9.6vw, 2.58rem);
    line-height: 0.96;
  }

  .hero-text {
    margin-bottom: 14px;
    font-size: 0.94rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .boundary-line {
    display: none;
  }

  .profile-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    width: 100%;
    padding: 18px;
    border-radius: 26px;
  }

  .id-badge {
    position: static;
    grid-column: 1 / -1;
    width: fit-content;
    min-width: 0;
    margin-bottom: 0;
    padding: 9px 18px;
    order: -1;
  }

  .portrait-ring {
    width: 110px;
    height: 110px;
    margin: 0;
  }

  .profile-copy {
    display: block;
    margin-bottom: 0;
  }

  .profile-copy h2 {
    font-size: 1.76rem;
  }

  .profile-copy::after {
    position: absolute;
    right: 22px;
    top: 58px;
  }

  .profile-lines {
    grid-column: 2;
    margin-top: -12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-lines span {
    min-height: 28px;
    font-size: 0.7rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 18px;
  }

  .feature-grid article {
    min-height: 122px;
    padding: 18px;
  }

  .feature-grid article:nth-child(3) {
    grid-column: 1 / -1;
  }

  .feature-grid h2,
  .split-section h2,
  .steps-section h2,
  .lounge-section h2,
  .faq-section h2,
  .final-cta h2 {
    font-size: 1.78rem;
  }

  .split-section,
  .steps-section,
  .lounge-section,
  .faq-section,
  .final-cta {
    margin-top: 22px;
    padding: 22px;
  }

  .site-footer {
    display: grid;
  }
}

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

  .hero h1 {
    font-size: 2.24rem;
  }

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

  .portrait-ring {
    width: 102px;
    height: 102px;
  }
}
