:root {
  --bg: #08070b;
  --bg-soft: #111019;
  --navy: #111424;
  --purple-dark: #1b1226;
  --text: #f7f3f5;
  --muted: #b9b2bb;
  --soft: #ddd2d8;
  --rose: #d58aa5;
  --purple: #9c79c8;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 7, 11, 0.72);
  border-bottom-color: var(--border);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  letter-spacing: 0.22em;
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  position: relative;
  color: rgba(247, 243, 245, 0.78);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--text);
}

.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--rose);
}

.soon-pill {
  border: 1px solid var(--border);
  padding: 8px 13px;
  border-radius: 4px;
  color: var(--soft);
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0c0a0d;
}

/* Replace this file with your final hero image at assets/images/hero-woman.webp. */
.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(8, 7, 11, 0.2), rgba(8, 7, 11, 0.7)), url("../images/hero-woman.webp");
  background-size: cover;
  background-position: center 36%;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 62%, rgba(213, 138, 165, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(8, 7, 11, 0.58), rgba(8, 7, 11, 0.1) 45%, rgba(8, 7, 11, 0.42)),
    linear-gradient(0deg, var(--bg), transparent 26%);
  pointer-events: none;
}

.hero-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(3.15rem, 11vw, 11rem);
  font-weight: 400;
  letter-spacing: clamp(0.16em, 2vw, 0.34em);
  text-indent: clamp(0.16em, 2vw, 0.34em);
  text-align: center;
  color: #fff8f4;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.42);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 9px;
  color: rgba(247, 243, 245, 0.72);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--rose), transparent);
}

.section {
  padding: 118px 0;
}

.intro {
  background: var(--bg);
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.section-title,
.page-title {
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2.6rem, 5.8vw, 6rem);
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.intro-copy {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
}

.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 4px;
  border: 1px solid var(--border);
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 138, 165, 0.55);
  background: rgba(213, 138, 165, 0.12);
}

.btn-primary {
  border-color: rgba(213, 138, 165, 0.45);
  background: linear-gradient(135deg, rgba(213, 138, 165, 0.28), rgba(156, 121, 200, 0.2));
  box-shadow: 0 16px 48px rgba(111, 55, 86, 0.24);
}

.image-mosaic {
  background: var(--bg-soft);
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: end;
}

.moment {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--purple-dark);
  box-shadow: 0 28px 70px var(--shadow);
}

.moment:nth-child(2) {
  transform: translateY(46px);
}

.moment img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.97);
}

.moment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 7, 11, 0.7), transparent 45%);
}

.moment-caption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: var(--soft);
  font-size: 13px;
}

.features {
  background: linear-gradient(180deg, var(--bg), #0d0b12);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.feature-card,
.flow-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 50%;
  border: 1px solid rgba(213, 138, 165, 0.34);
  color: var(--rose);
  font-size: 18px;
}

.feature-card h3,
.flow-card h3,
.about-card h2 {
  margin: 0 0 12px;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
}

.feature-card p,
.flow-card p,
.about-card p,
.doc-body p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.split-image {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.split-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.split-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.flow {
  background: var(--bg-soft);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.step-number {
  display: block;
  margin-bottom: 22px;
  color: var(--rose);
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.final-cta {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0a080b;
}

/* Replace this file with your final CTA image at assets/images/connection-woman.webp. */
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(8, 7, 11, 0.8), rgba(8, 7, 11, 0.38), rgba(8, 7, 11, 0.75)), url("../images/connection-woman.webp");
  background-size: cover;
  background-position: center 38%;
  filter: saturate(0.9);
}

.final-cta .shell {
  position: relative;
  z-index: 1;
}

.notice {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  text-align: center;
  color: rgba(185, 178, 187, 0.78);
  font-size: 12px;
}

.site-footer {
  padding: 70px 0 30px;
  background: #070609;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 26px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(185, 178, 187, 0.62);
  font-size: 12px;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 90px) 0 78px;
  overflow: hidden;
  background: var(--bg-soft);
}

/* Replace this file with your final About image at assets/images/about-hero.webp. */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, rgba(8, 7, 11, 0.86), rgba(8, 7, 11, 0.12)), url("../images/about-hero.webp");
  background-size: cover;
  background-position: center 36%;
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-kicker {
  margin-top: 18px;
  color: var(--muted);
  max-width: 720px;
}

.body-section {
  padding: 96px 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.about-intro .brand-mark {
  display: grid;
  place-items: center;
  min-height: 320px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(213, 138, 165, 0.12), rgba(156, 121, 200, 0.08));
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(5rem, 14vw, 12rem);
  letter-spacing: 0.08em;
  color: rgba(247, 243, 245, 0.82);
}

.about-text p + p {
  margin-top: 18px;
}

.about-list {
  display: grid;
  gap: 14px;
  margin-top: 46px;
}

.about-card {
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.about-card span {
  color: var(--rose);
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 2rem;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.doc-page {
  padding-top: calc(var(--header) + 70px);
}

.doc-header {
  max-width: 840px;
  margin: 0 auto 44px;
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.doc-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 840px);
  justify-content: center;
  gap: 56px;
  padding-bottom: 100px;
}

.toc {
  position: sticky;
  top: calc(var(--header) + 28px);
  align-self: start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--soft);
}

.toc a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.toc a:hover {
  color: var(--text);
}

.doc-body {
  max-width: 840px;
}

.legal-note {
  margin-bottom: 32px;
  padding: 20px;
  border: 1px solid rgba(213, 138, 165, 0.28);
  border-radius: 8px;
  background: rgba(213, 138, 165, 0.08);
  color: var(--soft);
}

.doc-body section {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--header) + 24px);
}

.doc-body h2 {
  margin: 0 0 12px;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.back-top {
  display: inline-flex;
  margin-top: 28px;
  color: var(--rose);
  font-size: 13px;
}

.legal-ko {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.legal-edit-area > p {
  margin: 0 0 18px;
}

.legal-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--header) + 24px);
}

.legal-section > p + p,
.legal-section .legal-list + p,
.legal-section p + .legal-list {
  margin-top: 14px;
}

.legal-subheading {
  margin: 28px 0 12px;
  color: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

h4.legal-subheading {
  color: rgba(247, 243, 245, 0.86);
  font-size: 0.98rem;
}

.legal-list {
  margin: 14px 0 18px;
  padding-left: 1.35rem;
  color: var(--muted);
}

.legal-list li + li {
  margin-top: 8px;
}

.legal-ordered-list {
  list-style-position: outside;
}

.table-scroll {
  width: 100%;
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--muted);
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border: 1px solid var(--border);
  vertical-align: top;
}

.back-top-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(213, 138, 165, 0.4);
  border-radius: 50%;
  background: rgba(8, 7, 11, 0.78);
  color: var(--text);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.back-top-button:hover {
  border-color: var(--rose);
  color: #fff;
}

.not-found {
  min-height: 72svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header) + 80px) 20px 80px;
}

.not-found h1 {
  margin: 0;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(6rem, 18vw, 13rem);
  font-weight: 400;
  line-height: 0.9;
  color: rgba(213, 138, 165, 0.72);
}

.not-found p {
  color: var(--muted);
  max-width: 520px;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .feature-grid,
  .flow-grid,
  .mosaic-grid,
  .split,
  .about-intro,
  .doc-layout {
    grid-template-columns: 1fr;
  }

  .moment:nth-child(2) {
    transform: none;
  }

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

  .doc-layout {
    gap: 30px;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 68px;
  }

  .shell {
    width: min(100% - 30px, var(--max));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--header) 14px auto;
    display: none;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(8, 7, 11, 0.94);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link,
  .soon-pill {
    padding: 12px 8px;
  }

  .hero-media {
    background-position: 66% center;
  }

  .hero::after {
    background:
      linear-gradient(0deg, var(--bg) 4%, rgba(8, 7, 11, 0.36) 50%, rgba(8, 7, 11, 0.18)),
      linear-gradient(90deg, rgba(8, 7, 11, 0.4), rgba(8, 7, 11, 0.16));
  }

  .hero-title {
    max-width: calc(100vw - 32px);
    overflow: visible;
    white-space: nowrap;
    font-size: clamp(2.1rem, 12.4vw, 4.8rem);
    letter-spacing: clamp(0.06em, 1.6vw, 0.11em);
    text-indent: clamp(0.06em, 1.6vw, 0.11em);
    line-height: 1.05;
  }

  .section,
  .body-section {
    padding: 78px 0;
  }

  .mosaic-grid,
  .feature-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .moment {
    min-height: 430px;
  }

  .split-image img {
    height: 430px;
  }

  .final-cta {
    min-height: 500px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
