:root {
  color-scheme: light;
  --ink: #251821;
  --muted: #6e5d68;
  --line: rgba(117, 78, 102, 0.22);
  --paper: #fff9fc;
  --panel: rgba(255, 255, 255, 0.82);
  --rose: #d84f8f;
  --rose-deep: #9c2f65;
  --mint: #45b894;
  --gold: #b9812f;
  --shadow: 0 22px 70px rgba(99, 49, 77, 0.18);
  font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
}

body[data-audience-mode="female"] {
  --ink: #1f2430;
  --muted: #657184;
  --line: rgba(64, 94, 129, 0.24);
  --paper: #f8fbff;
  --panel: rgba(255, 255, 255, 0.84);
  --rose: #5d8ed8;
  --rose-deep: #315f9d;
  --mint: #d99a50;
  --gold: #b0713a;
  --shadow: 0 22px 70px rgba(43, 70, 110, 0.18);
}

body.mode-choice-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 252, 0.9);
  backdrop-filter: blur(18px);
}

body[data-audience-mode="female"] .site-header {
  background: rgba(248, 251, 255, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--mint));
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  white-space: nowrap;
  word-break: keep-all;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--rose-deep);
}

.nav-links .nav-app-link {
  padding: 7px 12px;
  border: 1px solid rgba(156, 47, 101, 0.24);
  border-radius: 8px;
  color: var(--rose-deep);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

body[data-audience-mode="female"] .nav-links .nav-app-link,
body[data-audience-mode="female"] .mode-switch,
body[data-audience-mode="female"] .language-control select {
  border-color: rgba(49, 95, 157, 0.24);
}

.mode-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(156, 47, 101, 0.20);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.mode-switch button {
  min-height: 32px;
  border: 0;
  border-radius: 7px;
  padding: 0 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.mode-switch button[aria-pressed="true"] {
  color: white;
  background: var(--rose-deep);
}

.language-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.language-control select {
  min-height: 34px;
  max-width: 150px;
  border: 1px solid rgba(156, 47, 101, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 0 8px;
}

.mode-choice[hidden] {
  display: none;
}

.mode-choice {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.mode-choice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 18, 27, 0.54);
  backdrop-filter: blur(16px);
}

.mode-choice-panel {
  position: relative;
  width: min(960px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  overflow: auto;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 249, 252, 0.96), rgba(246, 252, 255, 0.94)),
    #fff;
  box-shadow: 0 34px 90px rgba(30, 20, 30, 0.25);
}

.mode-choice-panel h2 {
  max-width: 760px;
  font-size: clamp(32px, 5vw, 56px);
}

.mode-choice-panel > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

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

.mode-choice-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(117, 78, 102, 0.22);
  border-radius: 8px;
  padding: 0;
  background: #fff;
  color: white;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 20px 52px rgba(99, 49, 77, 0.16);
}

.mode-choice-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mode-choice-card img {
  z-index: 0;
}

.mode-choice-card:nth-child(2) img {
  object-position: center 15%;
}

.mode-choice-card::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(26, 20, 28, 0.82), rgba(26, 20, 28, 0));
}

.mode-choice-card:hover img {
  transform: scale(1.03);
}

.mode-choice-kicker,
.mode-choice-card strong,
.mode-choice-card span:last-child {
  position: relative;
  z-index: 3;
  display: block;
  margin-left: 18px;
  margin-right: 18px;
}

.mode-choice-kicker {
  width: fit-content;
  margin-top: 285px;
  margin-bottom: 8px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.mode-choice-card strong {
  font-size: 28px;
  line-height: 1.15;
}

.mode-choice-card span:last-child {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.55;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  width: min(760px, 100%);
  min-height: min(960px, calc(100vh - 112px));
  position: relative;
  display: flex;
  align-items: flex-end;
  margin: 34px auto 0;
  padding: clamp(44px, 6vw, 74px);
  overflow: hidden;
  border: 1px solid rgba(117, 78, 102, 0.20);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: white;
}

.hero > div:first-child {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(22, 14, 23, 0.18), rgba(22, 14, 23, 0.42) 38%, rgba(22, 14, 23, 0.78)),
    linear-gradient(90deg, rgba(22, 14, 23, 0.52), rgba(22, 14, 23, 0.12) 52%, rgba(22, 14, 23, 0.32));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.22;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(40px, 7vw, 76px);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
}

.hero .eyebrow,
.hero .lead {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.hero h1 {
  color: white;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.48);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin: 24px auto 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: white;
  border-color: transparent;
  background: var(--rose-deep);
}

.button.primary.hero-room-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  min-height: 76px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(219, 60, 139, 0.98), rgba(151, 42, 105, 0.98));
  box-shadow:
    0 18px 36px rgba(126, 31, 87, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: white;
  text-align: center;
  isolation: isolate;
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.hero-room-button::before,
.hero-room-button::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.hero-room-button::before {
  inset: 1px;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0.74;
}

body[data-audience-mode="female"] .hero-room-button::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}

body[data-audience-mode="female"] .button.primary.hero-room-button {
  background: linear-gradient(135deg, rgba(63, 128, 214, 0.98), rgba(46, 91, 168, 0.98));
  box-shadow:
    0 18px 36px rgba(39, 76, 143, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-room-button::after {
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 180ms ease;
}

.hero-room-button:hover,
.hero-room-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.hero-room-button:active {
  transform: translateY(1px) scale(0.97);
  filter: brightness(0.96);
}

.hero-room-button:hover::after,
.hero-room-button:focus-visible::after {
  opacity: 1;
}

.room-button-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: white;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(83, 18, 61, 0.28),
    0 4px 12px rgba(83, 18, 61, 0.34);
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
  border: 0;
}

body[data-audience-mode="female"] .room-button-label {
  background: transparent;
  text-shadow:
    0 1px 0 rgba(20, 51, 104, 0.3),
    0 4px 12px rgba(20, 51, 104, 0.34);
}

html:lang(de) .room-button-label,
html:lang(fr) .room-button-label,
html:lang(es) .room-button-label,
html:lang(pt-BR) .room-button-label,
html:lang(vi) .room-button-label {
  font-size: clamp(17px, 1.6vw, 22px);
}

html:lang(th) .room-button-label {
  font-size: clamp(18px, 1.7vw, 23px);
}

.button.secondary {
  color: var(--rose-deep);
  background: rgba(255, 255, 255, 0.7);
}

.hero .button.secondary {
  min-height: 0;
  padding: 0;
  border-color: transparent;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  backdrop-filter: none;
  font-size: 13px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.trust-item {
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
}

.hero .trust-item {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.82);
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.hero .trust-item strong {
  color: white;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: none;
  background: #f2d4e2;
}

.hero-visual img,
.hero-visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-visual img {
  filter: saturate(0.95);
}

.hero-visual video {
  z-index: 1;
  filter: saturate(1.02);
}

body[data-audience-mode="female"] .hero-visual img,
body[data-audience-mode="female"] .hero-visual video {
  object-position: center 18%;
}

.visual-caption {
  display: none;
}

.costume-section {
  position: relative;
}

.costume-section::before {
  content: "";
  position: absolute;
  inset: 24px max(-80px, -7vw) auto;
  height: 320px;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(216, 79, 143, 0.13), rgba(69, 184, 148, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 245, 251, 0.75));
}

.costume-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.costume-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(117, 78, 102, 0.20);
  border-radius: 8px;
  background: white;
  box-shadow: 0 20px 58px rgba(99, 49, 77, 0.14);
}

.costume-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.costume-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(37, 24, 33, 0.78), rgba(37, 24, 33, 0));
  pointer-events: none;
}

.costume-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: white;
}

.costume-copy h3 {
  font-size: 25px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.costume-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.costume-tag {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
}

.costume-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(156, 47, 101, 0.20);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 78px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 92px;
}

.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.inline-link {
  color: var(--rose-deep);
  font-weight: 800;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.service-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(117, 78, 102, 0.20);
  border-radius: 8px;
  background: #f3d7e5;
  box-shadow: 0 20px 58px rgba(99, 49, 77, 0.14);
}

.service-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(0deg, rgba(31, 21, 29, 0.82), rgba(31, 21, 29, 0));
}

.service-visual-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: white;
}

.service-visual-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.service-visual-copy p:first-child {
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.service-cards {
  display: grid;
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 170px;
  padding: 24px 24px 24px 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
    var(--panel);
}

.feature-card p {
  margin-top: 8px;
  color: var(--muted);
}

.feature-mark {
  position: absolute;
  top: 27px;
  left: 24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, white 0 18%, transparent 19%),
    linear-gradient(135deg, var(--rose), var(--mint));
  box-shadow: 0 0 0 7px rgba(216, 79, 143, 0.10);
}

.product-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
  padding: 32px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(43, 27, 39, 0.98), rgba(35, 24, 34, 0.96)),
    #2b1b27;
  color: white;
  overflow: hidden;
}

.product-band p {
  color: rgba(255, 255, 255, 0.78);
}

.product-band .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.pricing-story {
  display: grid;
  grid-template-columns: minmax(190px, 0.56fr) minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
}

.pricing-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.pricing-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.pricing-media::after {
  content: "";
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(0deg, rgba(18, 12, 17, 0.84), rgba(18, 12, 17, 0));
}

.pricing-media-copy {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
}

.pricing-media-copy p:first-child {
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.pricing-media-copy h3 {
  color: white;
  font-size: 22px;
}

.pricing-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.for-her-section {
  background:
    linear-gradient(135deg, rgba(255, 247, 252, 0.92), rgba(237, 251, 255, 0.74)),
    #fffafd;
}

.for-her-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 30px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(156, 47, 101, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(75, 45, 68, 0.12);
}

.for-her-media {
  overflow: hidden;
  min-height: 420px;
  border-radius: 8px;
  background: #efe7ea;
}

.for-her-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.for-her-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 10px 6px;
}

.for-her-copy h2 {
  max-width: 740px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
}

.for-her-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.for-her-copy .for-her-price {
  padding: 14px 16px;
  border: 1px solid rgba(156, 47, 101, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.for-her-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.for-her-points span {
  padding: 9px 12px;
  border: 1px solid rgba(156, 47, 101, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.for-her-link {
  width: fit-content;
  margin-top: 6px;
}

.product-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.product-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.product-point span[aria-hidden="true"] {
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--mint);
  flex: 0 0 auto;
}

.product-point span:not([aria-hidden="true"]) {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: auto;
  overflow-wrap: anywhere;
}

.price-box {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.price {
  font-size: 34px;
  font-weight: 900;
}

.pricing-list {
  display: grid;
  gap: 8px;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
}

.pricing-row strong {
  flex: 0 0 auto;
  font-size: 15px;
}

.pricing-row span {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
  overflow-wrap: anywhere;
}

.pricing-row.featured {
  border-color: rgba(184, 243, 211, 0.58);
  background: rgba(184, 243, 211, 0.14);
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
}

.safety-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(99, 49, 77, 0.10);
}

.safety-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

body[data-audience-mode="female"] .service-visual img,
body[data-audience-mode="female"] .pricing-media img,
body[data-audience-mode="female"] .safety-visual img {
  object-position: center 18%;
}

.safety-visual > div {
  padding: 20px;
}

.safety-visual .eyebrow {
  margin-bottom: 10px;
}

.safety-visual p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--muted);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.safety-grid .card:last-child {
  grid-column: 1 / -1;
}

.legal-list {
  display: grid;
  gap: 12px;
}

.legal-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 800;
}

.legal-list a span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.legal-list a > span:first-child {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.doc-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 84px;
}

.doc-hero {
  margin-bottom: 34px;
}

.doc-hero p {
  margin-top: 12px;
  color: var(--muted);
}

.doc-section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.doc-section h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.doc-section p + p,
.doc-section ul + p,
.doc-section p + ul {
  margin-top: 12px;
}

.doc-section ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  width: 220px;
  color: var(--rose-deep);
  background: #fff2f8;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.contact-email-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.contact-email-actions .button {
  min-height: 40px;
  padding: 0 14px;
}

.copy-email-button {
  cursor: pointer;
  font: inherit;
}

.notice {
  padding: 16px 18px;
  border: 1px solid rgba(184, 129, 47, 0.35);
  border-radius: 8px;
  background: rgba(255, 247, 229, 0.8);
  color: #664813;
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }

  .nav-links a,
  .nav-links .nav-app-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(156, 47, 101, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
    line-height: 1.2;
  }

  .section-head,
  .service-layout,
  .for-her-band,
  .product-band,
  .pricing-story,
  .safety-layout {
    grid-template-columns: 1fr;
  }

  .trust-list,
  .grid,
  .safety-grid,
  .costume-gallery {
    grid-template-columns: 1fr;
  }

  .service-visual,
  .pricing-media {
    min-height: 520px;
  }

  .featured-costume {
    transform: none;
  }

  .costume-card,
  .costume-card img {
    min-height: 560px;
  }

  .for-her-media,
  .for-her-media img {
    min-height: 520px;
  }
}

@media (max-width: 1024px) {
  .nav {
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand {
    flex-shrink: 0;
    gap: 8px;
    font-size: 17px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .nav-links {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    width: auto;
    gap: 8px;
    overflow: hidden;
    padding-bottom: 0;
  }

  .nav-links a,
  .nav-links .nav-app-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: auto;
    min-height: 34px;
    padding: 7px 10px;
    text-align: center;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.2;
  }

  .nav-links a:not(.nav-app-link) {
    display: none;
  }

  .mode-switch {
    flex-shrink: 0;
  }

  .mode-switch button {
    flex: none;
    min-height: 30px;
    padding: 0 8px;
    font-size: 12px;
  }

  .language-control {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    background: rgba(255, 249, 252, 0.76);
  }

  body[data-audience-mode="female"] .site-header {
    background: rgba(248, 251, 255, 0.78);
  }

  .nav {
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 7px 10px;
    gap: 8px;
  }

  .brand {
    gap: 7px;
    font-size: 16px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .nav-links {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    gap: 6px;
    width: auto;
  }

  .nav-links a,
  .nav-links .nav-app-link {
    min-width: 0;
    width: auto;
    min-height: 32px;
    padding: 6px 8px;
    text-align: center;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    font-size: 11px;
  }

  .nav-links a:not(.nav-app-link) {
    display: none;
  }

  .nav-links .nav-app-link {
    grid-column: auto;
    white-space: nowrap;
  }

  .mode-switch {
    grid-column: auto;
    width: auto;
    flex-shrink: 0;
  }

  .mode-switch button {
    flex: none;
    min-height: 28px;
    padding: 0 7px;
    font-size: 11px;
  }

  .language-control {
    display: none;
  }

  .language-control span {
    display: none;
  }

  .language-control select {
    flex: none;
    width: 52px;
    min-height: 32px;
    max-width: 52px;
    padding: 0 4px;
    font-size: 0;
  }

  .page,
  .footer-inner,
  .doc-page {
    width: min(100% - 28px, 440px);
  }

  .hero {
    width: auto;
    min-height: 100svh;
    align-items: flex-end;
    padding: 92px 28px 26px;
    margin-left: calc((100vw - min(100% - 28px, 440px)) / -2);
    margin-right: calc((100vw - min(100% - 28px, 440px)) / -2);
    margin-top: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero > div:first-child {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .hero .eyebrow,
  .hero .lead {
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
  }

  .hero h1 {
    color: white;
    text-shadow: 0 4px 26px rgba(0, 0, 0, 0.46);
  }

  h1 {
    font-size: clamp(34px, 9.5vw, 46px);
  }

  .lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 18px;
  }

  .button {
    width: 100%;
  }

  .button.primary.hero-room-button {
    width: min(100%, 360px);
    min-height: 68px;
    height: auto;
    padding: 0 22px;
    justify-self: center;
  }

  .hero-actions .button.secondary {
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    justify-self: center;
    color: rgba(255, 255, 255, 0.78);
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 4px;
    backdrop-filter: none;
    font-size: 13px;
  }

  .hero .button.secondary {
    color: rgba(255, 255, 255, 0.78);
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
  }

  .hero .trust-list {
    display: none;
  }

  .mode-choice {
    padding: 14px;
  }

  .mode-choice-grid {
    grid-template-columns: 1fr;
  }

  .mode-choice-card {
    min-height: 340px;
  }

  .mode-choice-kicker {
    margin-top: 210px;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-visual img,
  .hero-visual video {
    object-position: center top;
  }

  body[data-audience-mode="female"] .hero-visual img,
  body[data-audience-mode="female"] .hero-visual video {
    object-position: center 18%;
  }

  .visual-caption {
    display: none;
  }

  .section {
    scroll-margin-top: 72px;
  }

  .service-visual {
    min-height: 500px;
  }

  .product-band {
    padding: 24px;
  }

  .pricing-media {
    min-height: 500px;
  }

  .pricing-media-copy h3 {
    font-size: 20px;
  }

  .safety-visual img {
    height: 420px;
  }

  .costume-card,
  .costume-card img {
    min-height: 520px;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table th {
    border-bottom: 0;
  }
}
