:root {
  color-scheme: light;
  --bg: #f5f5f3;
  --surface: #ffffff;
  --surface-2: #fafaf9;
  --ink: #171716;
  --muted: #6f716f;
  --line: #e6e5e2;
  --line-strong: #d5d3cf;
  --accent: #d7334f;
  --accent-dark: #a91f38;
  --accent-soft: #fff0f3;
  --good: #157a52;
  --good-soft: #eaf7f1;
  --warn: #9a5b0a;
  --warn-soft: #fff6e6;
  --shadow: 0 20px 60px rgb(29 27 23 / 8%);
  --shadow-sm: 0 8px 24px rgb(29 27 23 / 6%);
  --radius-lg: 22px;
  --radius-md: 14px;
  --content-max: 1220px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic UI", "Noto Sans JP", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgb(215 51 79 / 28%);
  outline-offset: 3px;
}

button,
input {
  font: inherit;
}

button:disabled,
input:disabled {
  cursor: not-allowed;
}

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

h1,
h2,
h3 {
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-200%);
}

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

.age-notice {
  padding: 0.45rem 1rem;
  color: #fff;
  background: #1c1c1b;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.app-header,
.header-inner,
.product-page,
.content-section,
.review-status,
.footer-inner,
.section {
  width: min(var(--content-max), calc(100% - 48px));
  margin-inline: auto;
}

.app-header,
.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 24px;
}

.app-logo,
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 7px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-decoration: none;
}

.app-logo span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 11px;
  font-size: 10px;
  letter-spacing: -0.03em;
}

.search-shell {
  display: flex;
  flex: 1;
  max-width: 610px;
  height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.search-shell input {
  width: 100%;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
}

.search-shell input:disabled {
  opacity: 1;
  -webkit-text-fill-color: var(--muted);
}

.search-glyph {
  position: relative;
  width: 13px;
  height: 13px;
  border: 1.6px solid currentcolor;
  border-radius: 50%;
}

.search-glyph::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 1.6px;
  background: currentcolor;
  content: "";
  transform: rotate(45deg);
}

.app-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 8px;
}

.app-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 10px;
  color: var(--muted);
  border-radius: 10px;
  font-size: 12px;
  text-decoration: none;
}

.app-nav .nav-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  background: #f0efec;
  font-weight: 750;
}

.preview-dot {
  padding: 2px 6px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 8px;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a,
.footer-nav a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

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

.review-status {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 10px;
  color: var(--muted);
  font-size: 11px;
}

.review-status > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-status > a {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 750;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: #535451;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.pill.accent {
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-color: #f2c4ce;
}

.pill.good {
  color: var(--good);
  background: var(--good-soft);
  border-color: #cfe8db;
}

.pill.warn {
  color: var(--warn);
  background: var(--warn-soft);
  border-color: #f1d4a7;
}

.eyebrow {
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn,
.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: 160ms ease;
}

.btn:hover,
.button:hover {
  transform: translateY(-1px);
}

.btn.primary,
.button {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 24px rgb(215 51 79 / 24%);
}

.btn.primary:hover,
.button:hover {
  background: var(--accent-dark);
}

.btn.primary:disabled {
  color: #fff;
  background: #d9a0aa;
  box-shadow: none;
  transform: none;
}

.btn.secondary,
.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: none;
}

.btn.dark {
  color: #fff;
  background: #1d1d1c;
}

.btn.full {
  width: 100%;
}

.small-button {
  min-height: 44px;
  margin-left: auto;
  padding-inline: 13px;
  font-size: 11px;
}

.product-page {
  padding: 18px 0 72px;
}

.breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
}

.breadcrumb span {
  margin-inline: 7px;
  color: #aaa;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(350px, 0.8fr);
  gap: 26px;
  align-items: start;
}

.product-main {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
}

.poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(circle at 68% 22%, rgb(255 255 255 / 46%), transparent 24%),
    linear-gradient(145deg, #252525 0%, #50504f 42%, #d8d2c7 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.poster::after {
  position: absolute;
  inset: 38% -10% -18%;
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 56%));
  content: "";
}

.poster-orbit {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
}

.poster-orbit-one {
  width: 170px;
  height: 170px;
  top: 21%;
  left: 18%;
  box-shadow: inset 0 0 55px rgb(255 255 255 / 15%);
}

.poster-orbit-two {
  width: 220px;
  height: 220px;
  right: -35%;
  bottom: -5%;
  background: rgb(215 51 79 / 22%);
}

.poster-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 5px 8px;
  color: #fff;
  background: rgb(0 0 0 / 76%);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
}

.poster-status {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 5px 8px;
  color: #fff;
  background: rgb(0 0 0 / 48%);
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.poster-copy {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  color: #fff;
}

.poster-copy small,
.poster-copy b,
.poster-copy span {
  display: block;
}

.poster-copy small {
  margin-bottom: 4px;
  opacity: 0.72;
  font-size: 9px;
}

.poster-copy b {
  font-size: 16px;
  line-height: 1.3;
}

.poster-copy span {
  margin-top: 5px;
  color: rgb(255 255 255 / 78%);
  font-size: 10px;
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  overflow: hidden;
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.trust-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}

.trust-item:last-child {
  border-bottom: 0;
}

.trust-copy b,
.trust-copy span {
  display: block;
}

.trust-copy b {
  margin-bottom: 4px;
  font-size: 11px;
}

.trust-copy span {
  color: var(--muted);
  font-size: 9px;
}

.trust-item .trust-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 9px;
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 15px;
}

.product-info h1 {
  margin-bottom: 12px;
  font-size: clamp(25px, 2.4vw, 31px);
  line-height: 1.34;
}

.heading-line {
  display: block;
}

.product-subtitle {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 14px;
}

.performer-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.performer-line b,
.performer-line span {
  display: block;
}

.performer-line b {
  font-size: 12px;
}

.performer-line div > span {
  color: var(--muted);
  font-size: 9px;
}

.identity-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--muted);
  background: linear-gradient(145deg, #eee, #c4c1ba);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
}

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

.scope-label {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.fact {
  display: flex;
  min-width: 0;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 11px;
}

.fact dt {
  color: var(--muted);
}

.fact dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
}

.precheck-card {
  margin-top: 20px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.precheck-card b {
  font-size: 12px;
}

.precheck-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.decision-card,
.card,
.card-flat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.decision-card {
  position: sticky;
  top: 92px;
  padding: 21px;
}

.recommend-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.recommend-title h2 {
  margin: 0;
  font-size: 21px;
}

.switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 3px;
  background: #f2f1ef;
  border-radius: 11px;
}

.switcher span {
  padding: 7px 5px;
  color: var(--muted);
  border-radius: 9px;
  font-size: 11px;
  text-align: center;
}

.switcher .active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2px 8px rgb(0 0 0 / 8%);
  font-weight: 800;
}

.best-offer {
  margin-top: 14px;
  padding: 15px;
  background: linear-gradient(180deg, #fff9fa, #fff);
  border: 1px solid #efb9c3;
  border-radius: 17px;
}

.offer-head,
.sub-offer,
.pending-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.platform {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 850;
}

.platform-logo {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: #1e1e1d;
  border-radius: 9px;
  font-size: 8px;
  font-weight: 900;
}

.platform-logo.mgs {
  background: #3867b0;
}

.platform-logo.myfans {
  background: #7f4aa4;
}

.platform-logo.other {
  color: var(--ink);
  background: #e6e4df;
}

.pending-price {
  margin-top: 14px;
}

.pending-price > span,
.pending-price em {
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
}

.pending-price strong {
  margin-right: auto;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.pending-price .price-unavailable {
  font-size: 15px;
  letter-spacing: 0;
}

.pending-price small {
  margin-left: 3px;
  color: var(--muted);
  font-size: 10px;
}

.reason {
  margin: 12px 0;
  padding: 10px 11px;
  color: #7c2a39;
  background: var(--accent-soft);
  border-radius: 11px;
  font-size: 10px;
}

.sub-offers {
  display: grid;
  gap: 7px;
  margin: 13px 0;
}

.sub-offer {
  padding: 9px 11px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 9px;
}

.comparison-note {
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.login-benefit {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.privacy-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  background: #f0efed;
  border-radius: 10px;
}

.login-benefit b {
  font-size: 11px;
}

.login-benefit p {
  margin: 3px 0 4px;
  color: var(--muted);
  font-size: 9px;
}

.login-benefit a {
  color: var(--muted);
  font-size: 10px;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 1fr);
  gap: 36px 64px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.flow-grid,
.trust-cards,
.contact-grid,
.status-columns,
.metrics {
  display: grid;
  gap: 11px;
}

.flow-grid {
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-grid li,
.trust-cards article,
.status-panel,
.contact-card,
.metric {
  padding: 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.flow-grid li > span {
  display: grid;
  width: 31px;
  height: 31px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 850;
}

.flow-grid b {
  display: block;
  font-size: 13px;
}

.flow-grid p,
.trust-cards p,
.contact-card p,
.status-panel li {
  color: var(--muted);
  font-size: 12px;
}

.flow-grid p {
  margin: 6px 0 0;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.status-metrics {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 14px;
}

.metric span,
.metric small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.metric b {
  display: block;
  margin: 4px 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

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

.status-panel h3 {
  margin: 14px 0 10px;
  font-size: 15px;
}

.status-panel ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 17px;
}

.trust-cards,
.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.guide-cards article {
  display: flex;
  min-width: 0;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  flex-direction: column;
}

.guide-number {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
}

.guide-cards h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.guide-cards p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  flex: 1;
}

.guide-cards .btn {
  align-self: flex-start;
}

.benefit-mark,
.contact-symbol {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--good);
  background: var(--good-soft);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.contact-symbol {
  color: var(--accent);
  background: var(--accent-soft);
}

.trust-cards h3,
.contact-card h3 {
  margin-bottom: 7px;
  font-size: 14px;
}

.trust-cards p,
.contact-card p {
  margin-bottom: 0;
}

.contact-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 750;
}

.site-footer {
  margin-top: 60px;
  color: #e7e5e2;
  background: #1d1d1c;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding-block: 38px;
}

.footer-brand {
  margin-bottom: 6px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.footer-note,
.copyright {
  max-width: 630px;
  margin: 4px 0 0;
  color: #aaa;
  font-size: 10px;
}

.footer-nav {
  max-width: 420px;
  justify-content: flex-end;
}

.footer-nav a {
  color: #ddd;
  font-size: 10px;
}

/* Static product-flow previews */
.preview-page {
  min-height: 100vh;
  background: var(--bg);
}

.preview-banner {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 18px;
  color: #7b4650;
  background: var(--accent-soft);
  border-bottom: 1px solid #f1c8d0;
  font-size: 10px;
  text-align: center;
}

.preview-banner a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-inline: 6px;
  font-weight: 750;
  white-space: nowrap;
}

.stage {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  padding: 50px 24px;
  place-items: center;
}

.stage::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgb(215 51 79 / 11%), transparent 28%),
    radial-gradient(circle at 88% 84%, rgb(0 0 0 / 8%), transparent 26%);
  content: "";
}

.modal-card,
.handoff-card {
  position: relative;
  z-index: 1;
  width: min(510px, 100%);
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.modal-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 17px;
  font-size: 20px;
}

.modal-card h1,
.handoff-card h1 {
  margin-bottom: 10px;
  font-size: 25px;
}

.modal-card > p,
.handoff-card > p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.benefit-list {
  display: grid;
  gap: 9px;
  margin: 17px 0;
  padding: 14px;
  background: var(--surface-2);
  border-radius: 15px;
}

.benefit {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 11px;
}

.benefit .benefit-mark {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  margin: 0;
}

.benefit b,
.benefit small {
  display: block;
}

.benefit small {
  color: var(--muted);
  font-size: 9px;
}

.button-stack {
  display: grid;
  gap: 9px;
}

.safe-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.control-status {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.auth-shell {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1fr) 480px;
  background: #fff;
}

.auth-visual {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 50px;
  color: #fff;
  background: #171716;
  flex-direction: column;
  justify-content: space-between;
}

.auth-visual::after {
  position: absolute;
  right: -170px;
  bottom: -190px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle at 34% 32%, rgb(255 255 255 / 45%), rgb(215 51 79 / 55%) 21%, rgb(215 51 79 / 7%) 55%, transparent 70%);
  border-radius: 50%;
  content: "";
}

.auth-brand,
.auth-value,
.auth-proof {
  position: relative;
  z-index: 2;
}

.auth-brand {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.auth-value {
  max-width: 550px;
}

.auth-value h2 {
  margin-bottom: 17px;
  font-size: clamp(31px, 4vw, 42px);
  line-height: 1.2;
}

.auth-value p {
  max-width: 480px;
  color: #bdbdb8;
  font-size: 13px;
}

.auth-proof {
  display: flex;
  gap: 26px;
}

.proof b,
.proof span {
  display: block;
}

.proof b {
  font-size: 19px;
}

.proof span {
  color: #aaa;
  font-size: 9px;
}

.auth-panel {
  display: flex;
  padding: 60px 48px;
  flex-direction: column;
  justify-content: center;
}

.auth-panel h1 {
  margin-bottom: 8px;
  font-size: 25px;
}

.auth-lead {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 13px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field label {
  font-size: 12px;
  font-weight: 750;
}

.input {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  font-size: 13px;
}

.auth-foot {
  margin-top: 22px;
  padding-top: 17px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 9px;
}

.code-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  margin: 8px 0 14px;
}

.code-box {
  display: grid;
  height: 55px;
  place-items: center;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font-size: 19px;
  font-weight: 850;
}

.signup-summary {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding: 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.signup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
}

.signup-row .benefit-mark {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  margin: 0;
}

.checkrow {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 10px;
}

.check {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
}

.handoff-card {
  width: min(580px, 100%);
  padding: 30px;
  text-align: center;
}

.handoff-ring {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border: 7px solid #f0d3da;
  border-top-color: var(--accent);
  border-radius: 50%;
}

.handoff-ring::after {
  position: absolute;
  display: grid;
  inset: 0;
  place-items: center;
  color: var(--accent);
  content: "✓";
  font-size: 22px;
  font-weight: 900;
}

.selected-work,
.handoff-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px;
  text-align: left;
  background: #f7f6f4;
  border-radius: 15px;
}

.handoff-item {
  margin: 18px 0;
  background: #fff;
  border: 1px solid var(--line);
}

.mini-cover {
  position: relative;
  width: 50px;
  height: 66px;
  flex: 0 0 auto;
  overflow: hidden;
  background: linear-gradient(145deg, #292929, #bbb);
  border-radius: 9px;
}

.mini-cover::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  color: #fff;
  content: "R18";
  font-size: 7px;
  font-weight: 900;
}

.work-detail {
  min-width: 0;
  flex: 1;
}

.work-detail b,
.work-detail span {
  display: block;
}

.work-detail b {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-detail span {
  color: var(--muted);
  font-size: 9px;
}

.handoff-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 9px;
}

.text-link {
  display: inline-block;
  padding: 6px;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-size: 10px;
  text-decoration: underline;
}

.preview-container {
  width: min(var(--content-max), calc(100% - 48px));
  margin-inline: auto;
  padding: 32px 0 74px;
}

.confirm-grid,
.complete-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.confirm-card,
.info-card,
.complete-card,
.security-card {
  padding: 24px;
}

.confirm-card h1,
.complete-card h1 {
  margin-bottom: 8px;
  font-size: 24px;
}

.confirm-card > p,
.complete-card > p {
  color: var(--muted);
  font-size: 11px;
}

.purchase-choice {
  display: grid;
  gap: 9px;
  margin: 19px 0;
}

.choice {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.choice.selected {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.choice-radio {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
}

.choice.selected .choice-radio::after {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
}

.choice-copy {
  flex: 1;
}

.choice-copy b,
.choice-copy span {
  display: block;
}

.choice-copy b {
  font-size: 11px;
}

.choice-copy span,
.choice-price {
  color: var(--muted);
  font-size: 9px;
}

.confirm-card .preview-next {
  margin: 12px 0 0;
  text-align: center;
}

.info-card h3,
.security-card h3 {
  margin-bottom: 12px;
  font-size: 14px;
}

.timeline {
  display: grid;
}

.timeline-row {
  display: grid;
  min-height: 58px;
  grid-template-columns: 19px 1fr;
  gap: 10px;
}

.timeline-mark {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  background: #1d1d1c;
  border-radius: 50%;
}

.timeline-dot.current {
  background: var(--accent);
}

.timeline-line {
  width: 1px;
  margin: 4px 0;
  background: var(--line);
  flex: 1;
}

.timeline-copy b,
.timeline-copy span {
  display: block;
}

.timeline-copy b {
  font-size: 10px;
}

.timeline-copy span {
  color: var(--muted);
  font-size: 9px;
}

.divider {
  height: 1px;
  margin: 20px 0;
  background: var(--line);
}

.tiny-copy {
  color: var(--muted);
  font-size: 9px;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
}

.library-side {
  height: max-content;
  padding: 13px;
}

.side-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 8px 8px 15px;
  border-bottom: 1px solid var(--line);
}

.avatar {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: #fff;
  background: #20201f;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.side-profile b,
.side-profile span {
  display: block;
}

.side-profile b {
  font-size: 10px;
}

.side-profile span {
  color: var(--muted);
  font-size: 8px;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0;
  padding: 10px;
  color: var(--muted);
  border-radius: 11px;
  font-size: 10px;
  text-decoration: none;
}

.side-item.active {
  color: var(--ink);
  background: #f0efec;
  font-weight: 800;
}

.dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.dashboard-head h1 {
  margin-bottom: 4px;
  font-size: 27px;
}

.dashboard-head p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.library-metrics {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 15px;
}

.pending-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding: 15px 17px;
  background: var(--accent-soft);
  border: 1px solid #f1c8d0;
  border-radius: 16px;
}

.pending-icon {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--accent);
  background: #fff;
  border-radius: 12px;
}

.pending-copy {
  flex: 1;
}

.pending-copy b,
.pending-copy span {
  display: block;
}

.pending-copy b {
  font-size: 11px;
}

.pending-copy span {
  color: #7b4650;
  font-size: 9px;
}

.library-card {
  overflow: hidden;
}

.library-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

.library-tools.is-disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.library-search {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--muted);
  background: #f5f4f2;
  border-radius: 11px;
  flex: 1;
  font-size: 10px;
}

.filter-chip {
  min-height: 40px;
  padding: 0 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 9px;
}

.library-empty {
  padding: 46px 24px;
  text-align: center;
}

.library-empty .empty-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 17px;
  font-weight: 850;
}

.library-empty h2 {
  margin-bottom: 7px;
  font-size: 18px;
}

.library-empty p {
  max-width: 480px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 10px;
}

.success-ring {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--good);
  background: var(--good-soft);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
}

.summary-table {
  display: grid;
  overflow: hidden;
  margin: 17px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 13px;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.summary-row:first-child {
  border-top: 0;
}

.summary-row span {
  color: var(--muted);
}

.security-points {
  display: grid;
  gap: 11px;
}

.security-point {
  display: flex;
  gap: 9px;
  color: var(--muted);
  font-size: 9px;
}

.security-point strong {
  color: var(--good);
}

/* Legal and operational pages */
.section {
  padding-block: clamp(52px, 8vw, 90px);
}

.page-hero h1 {
  max-width: 18ch;
  margin-bottom: 14px;
  font-size: clamp(34px, 6vw, 60px);
}

.page-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
}

.page-meta {
  color: var(--muted);
  font-size: 11px;
}

.prose-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.prose {
  min-width: 0;
}

.prose h2 {
  margin: 48px 0 14px;
  font-size: clamp(23px, 3vw, 31px);
}

.prose h2:first-of-type {
  margin-top: 24px;
}

.prose h3 {
  margin: 30px 0 8px;
  font-size: 16px;
}

.prose p,
.prose li {
  color: #514f4c;
  font-size: 15px;
}

.prose a,
.mail-link {
  color: var(--accent-dark);
}

.prose-note {
  padding: 16px 18px;
  color: #713444;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 11px 11px 0;
}

.side-nav {
  position: sticky;
  top: 92px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.side-nav strong {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
}

.side-nav ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-nav a {
  display: flex;
  min-height: 40px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

/* Readability pass: 9–10px is reserved for badges and English eyebrow labels. */
.trust-item span,
.performer-line div > span,
.pending-price > span,
.pending-price em,
.sub-offer,
.login-benefit p,
.metric span,
.metric small,
.footer-note,
.copyright,
.footer-nav a,
.preview-banner,
.benefit small,
.safe-note,
.proof span,
.auth-foot,
.work-detail span,
.handoff-meta,
.choice-copy span,
.choice-price,
.timeline-copy span,
.tiny-copy,
.side-profile span,
.pending-copy span,
.filter-chip,
.security-point {
  font-size: 11px;
  line-height: 1.6;
}

.reason,
.login-benefit a,
.signup-row,
.checkrow,
.text-link,
.timeline-copy b,
.side-profile b,
.side-item,
.dashboard-head p,
.library-search,
.library-empty p,
.summary-row {
  font-size: 12px;
  line-height: 1.6;
}

.confirm-card > p,
.complete-card > p {
  font-size: 13px;
}

.choice-copy b {
  font-size: 13px;
}

.trust-item b,
.performer-line b,
.precheck-card b,
.login-benefit b,
.benefit b,
.pending-copy b {
  font-size: 13px;
}

.contact-card a,
.review-status > a,
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.contact-grid-spaced {
  margin-top: 24px;
}

.mail-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.error-code {
  display: block;
  color: var(--accent);
  font-size: clamp(64px, 14vw, 130px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

@media (max-width: 980px) {
  .app-header,
  .header-inner,
  .product-page,
  .content-section,
  .review-status,
  .footer-inner,
  .section,
  .preview-container {
    width: min(100% - 36px, var(--content-max));
  }

  .app-header {
    gap: 13px;
  }

  .app-nav a:first-child {
    display: none;
  }

  .product-layout,
  .confirm-grid,
  .complete-grid {
    grid-template-columns: 1fr;
  }

  .decision-card {
    position: relative;
    top: auto;
  }

  .product-main {
    grid-template-columns: 200px minmax(0, 1fr);
  }

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

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    display: none;
  }

  .auth-panel {
    width: min(520px, 100%);
    min-height: 680px;
    margin: auto;
    padding: 48px 25px;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .library-side {
    display: none;
  }

  .prose-wrap,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .side-nav {
    position: static;
    order: -1;
  }

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

@media (max-width: 650px) {
  body {
    font-size: 14px;
  }

  .app-header,
  .header-inner,
  .product-page,
  .content-section,
  .review-status,
  .footer-inner,
  .section,
  .preview-container {
    width: min(100% - 28px, var(--content-max));
  }

  .app-header,
  .header-inner {
    min-height: 64px;
    gap: 10px;
  }

  .app-logo,
  .brand {
    font-size: 17px;
  }

  .app-logo span,
  .app-nav {
    display: none;
  }

  .site-nav {
    display: block;
    margin-left: auto;
  }

  .site-nav li {
    display: none;
  }

  .site-nav li:last-child {
    display: block;
  }

  .site-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding-inline: 6px;
    white-space: nowrap;
  }

  .search-shell {
    height: 40px;
    min-width: 0;
  }

  .search-shell input {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
  }

  .review-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-block: 10px 14px;
  }

  .review-status > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-status > a {
    min-height: 44px;
  }

  .product-page {
    padding-top: 8px;
  }

  .breadcrumb {
    display: none;
  }

  .product-main {
    grid-template-columns: 1fr;
  }

  .poster {
    width: 170px;
    margin: 0 auto;
  }

  .trust-strip,
  .facts,
  .section-heading,
  .trust-cards,
  .guide-cards,
  .contact-grid,
  .status-columns {
    grid-template-columns: 1fr;
  }

  .product-info h1 {
    font-size: 23px;
  }

  .performer-line {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .performer-line > div {
    min-width: 0;
    flex: 1;
  }

  .performer-line .small-button {
    width: 100%;
    margin-left: 0;
  }

  .fact {
    font-size: 11px;
  }

  .decision-card {
    padding: 17px;
  }

  .content-section {
    padding-block: 56px;
  }

  .section-heading {
    gap: 14px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .flow-grid,
  .status-metrics,
  .library-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .stage {
    min-height: 650px;
    padding: 28px 14px;
  }

  .preview-banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 4px 9px;
    padding: 10px 14px 4px;
    text-align: left;
  }

  .preview-banner a {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .modal-card,
  .handoff-card {
    padding: 22px;
  }

  .modal-card h1,
  .handoff-card h1 {
    font-size: 22px;
  }

  .handoff-meta {
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .auth-panel {
    min-height: 630px;
    padding: 38px 20px;
  }

  .code-grid {
    gap: 5px;
  }

  .code-box {
    height: 48px;
  }

  .confirm-card,
  .info-card,
  .complete-card,
  .security-card {
    padding: 18px;
  }

  .choice {
    align-items: flex-start;
  }

  .choice-price {
    display: none;
  }

  .dashboard-head h1 {
    font-size: 23px;
  }

  .dashboard-head .btn {
    display: none;
  }

  .pending-banner {
    align-items: flex-start;
  }

  .pending-banner .btn {
    display: none;
  }

  .library-tools {
    flex-wrap: wrap;
  }

  .library-search {
    flex-basis: 100%;
  }

  .page-hero h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.22;
  }

  .side-nav a {
    min-height: 44px;
  }

  .footer-inner {
    padding-block: 32px;
  }
}

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

  .btn,
  .button {
    transition: none;
  }
}

@media print {
  .age-notice,
  .site-nav,
  .app-nav,
  .review-status,
  .section-actions,
  .side-nav {
    display: none;
  }

  body {
    background: #fff;
  }
}
