@font-face {
  font-family: "Noto Sans JP DEBAN";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/noto-sans-jp-deban.woff2?v=1") format("woff2");
}

:root {
  --paper: #f1eee5;
  --paper-light: #f8f6ef;
  --ink: #181814;
  --muted: #6e6c63;
  --line: rgba(24, 24, 20, 0.18);
  --red: #d84930;
  --red-dark: #b93925;
  --white: #fffdf7;
  --header-h: 86px;
  --page: min(1320px, calc(100vw - 96px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Noto Sans JP DEBAN", "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  line-break: strict;
  word-break: auto-phrase;
  text-wrap: balance;
}

p,
li,
dd {
  line-break: strict;
  word-break: auto-phrase;
  text-wrap: pretty;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

img {
  max-width: 100%;
}

::selection {
  color: var(--white);
  background: var(--red);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(18px);
}

.site-header--overlay {
  position: absolute;
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
}

.brand small {
  font-family: "Yu Gothic", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.brand-mark {
  position: relative;
  top: -1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button,
.mobile-nav {
  display: none;
}

.page-shell {
  width: var(--page);
  margin-right: auto;
  margin-left: auto;
}

.section-pad {
  padding: 150px max(48px, calc((100vw - 1320px) / 2));
}

.eyebrow {
  margin: 0 0 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--red {
  color: var(--red);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 0 25px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: var(--red);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: var(--red);
}

.button--red {
  color: var(--white);
  background: var(--red);
}

.button--red:hover {
  background: var(--red-dark);
}

.button--outline {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}

.button--outline:hover {
  border-color: var(--ink);
  background: #fff;
}

.button--block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.25s var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-button {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

/* Home */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #1b1814;
}

.hero-image {
  position: absolute;
  inset: -4%;
  background-image: url("/hero.webp");
  background-position: center center;
  background-size: cover;
  animation: hero-arrive 1.8s var(--ease) both;
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 10, 8, 0.88) 0%, rgba(11, 10, 8, 0.6) 35%, rgba(11, 10, 8, 0.04) 72%),
    linear-gradient(0deg, rgba(9, 8, 6, 0.32), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(600px, calc(100vw - 96px));
  padding-top: max(160px, 21vh);
  margin-left: max(48px, calc((100vw - 1320px) / 2));
}

.hero-brand {
  margin: 0 0 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  animation: rise-in 0.8s 0.25s var(--ease) both;
}

.hero h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(52px, 6.7vw, 104px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.04em;
  text-wrap: balance;
  animation: rise-in 0.9s 0.38s var(--ease) both;
}

.hero h1 > span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  margin: 30px 0 38px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  animation: rise-in 0.8s 0.52s var(--ease) both;
}

.hero-lead > span {
  white-space: nowrap;
}

.hero-lead > span + span {
  margin-left: 0.25em;
}

.hero-content .button {
  animation: rise-in 0.8s 0.66s var(--ease) both;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 46px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

.hero-scroll i {
  width: 1px;
  height: 72px;
  background: rgba(255, 255, 255, 0.7);
  transform-origin: top;
  animation: scroll-line 2s 1s ease-in-out infinite;
}

@keyframes hero-arrive {
  from {
    opacity: 0;
    transform: scale(1.09);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-line {
  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.section-number {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.first-step {
  display: grid;
  grid-template-columns: 0.35fr 1.25fr 0.9fr;
  gap: 48px;
  align-items: start;
  background: var(--paper-light);
}

.first-step h2,
.paths h2,
.featured h2,
.host-story h2,
.final-cta h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.first-step h2 {
  font-size: clamp(54px, 6vw, 92px);
  line-height: 1.2;
}

.first-step-detail {
  padding-top: 76px;
}

.first-step-detail p {
  margin: 0 0 22px;
  color: #3c3b35;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
  line-height: 2;
}

.first-step-detail .text-link {
  margin-top: 24px;
  font-family: "Yu Gothic", sans-serif;
}

.paths {
  color: var(--white);
  background: var(--ink);
}

.paths-title {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 70px;
}

.paths h2,
.featured h2 {
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.2;
}

.path-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.path-item {
  display: grid;
  grid-template-columns: 90px 1fr 40px;
  gap: 30px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    padding 0.35s var(--ease),
    color 0.25s ease;
}

.path-item:hover {
  padding-right: 20px;
  padding-left: 20px;
  color: #ff8068;
}

.path-item > span {
  color: rgba(255, 255, 255, 0.45);
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.path-item h3 {
  margin: 0 0 7px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 500;
}

.path-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.path-item i {
  font-style: normal;
  font-size: 23px;
}

.featured {
  background: var(--paper);
}

.featured-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.opportunity-list {
  border-top: 1px solid var(--line);
}

.opportunity-row {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 180px 30px;
  gap: 28px;
  align-items: center;
  min-height: 184px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 0.3s ease,
    padding 0.35s var(--ease);
}

.opportunity-row:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: var(--paper-light);
}

.opportunity-index {
  align-self: start;
  padding-top: 7px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.opportunity-copy .eyebrow {
  margin-bottom: 12px;
}

.opportunity-meta {
  margin: 0 0 8px !important;
  color: var(--muted);
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.opportunity-copy h3 {
  margin: 0 0 10px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(21px, 2.2vw, 31px);
  font-weight: 600;
  line-height: 1.45;
}

.opportunity-copy > p:last-child {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.opportunity-place {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.arrow {
  font-size: 20px;
  transition: transform 0.3s var(--ease);
}

.opportunity-row:hover .arrow {
  transform: translate(4px, -4px);
}

.host-story {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.host-story-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 120px max(48px, calc((100vw - 1320px) / 2));
  padding-right: 60px;
}

.host-story h2 {
  font-size: clamp(48px, 5.5vw, 82px);
  line-height: 1.25;
}

.host-story-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 35px 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
}

.host-story-words {
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "Yu Mincho", serif;
  font-size: clamp(90px, 14vw, 220px);
  line-height: 0.95;
}

.host-story-words span {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  writing-mode: vertical-rl;
}

.host-story-words span:nth-child(1) {
  top: -5%;
  left: 3%;
}

.host-story-words span:nth-child(2) {
  top: 20%;
  left: 28%;
}

.host-story-words span:nth-child(3) {
  top: -15%;
  right: 22%;
}

.host-story-words span:nth-child(4) {
  top: 33%;
  right: -2%;
}

.final-cta {
  display: flex;
  min-height: 740px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 32px;
  color: var(--white);
  text-align: center;
  background: var(--ink);
}

.final-cta h2 {
  margin-bottom: 50px;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 1.22;
}

/* Friendly home sections */
.home-container {
  width: min(1160px, calc(100vw - 64px));
  margin: 0 auto;
}

.home-intro,
.home-featured,
.home-how,
.home-host,
.home-final {
  font-family:
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP",
    sans-serif;
}

.home-intro {
  padding: 120px 0;
  background: #fffdf9;
}

.home-section-heading {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.home-section-heading--left {
  max-width: 760px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.home-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 20px;
  padding: 5px 13px;
  border-radius: 999px;
  color: var(--red-dark);
  background: #fbe8e2;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.home-section-heading h2,
.home-host h2,
.home-final h2 {
  margin: 0;
  font-family:
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP",
    sans-serif;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.04em;
}

.home-section-heading > p,
.home-host-copy > p,
.home-final p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-feature-card {
  min-height: 280px;
  padding: 34px;
  border: 1px solid rgba(24, 24, 20, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(42, 35, 25, 0.055);
}

.home-feature-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 15px;
  color: var(--white);
  background: var(--red);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-feature-card:nth-child(2) .home-feature-number {
  color: #665330;
  background: #f0d895;
}

.home-feature-card:nth-child(3) .home-feature-number {
  color: #365c50;
  background: #b9ddd1;
}

.home-feature-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.5;
}

.home-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.home-copy-line {
  display: block;
}

.home-intro-action,
.home-list-action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.home-featured {
  padding: 120px 0;
  background: #f5f3ed;
}

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

.home-challenge-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(24, 24, 20, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(42, 35, 25, 0.045);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.home-challenge-card:hover {
  border-color: rgba(216, 73, 48, 0.35);
  box-shadow: 0 18px 46px rgba(42, 35, 25, 0.09);
  transform: translateY(-6px);
}

.home-challenge-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.home-challenge-tags span,
.home-challenge-tags small {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.home-challenge-tags span {
  color: var(--red-dark);
  background: #fbe8e2;
}

.home-challenge-tags small {
  color: var(--muted);
  background: #f2f1ed;
}

.home-challenge-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.6;
}

.home-title-phrase,
.home-host h2 > span,
.home-final h2 > span {
  display: block;
}

.home-challenge-card > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.home-challenge-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.home-challenge-meta > span:last-child {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

.home-challenge-meta i {
  font-style: normal;
  font-size: 16px;
  transition: transform 0.25s var(--ease);
}

.home-challenge-card:hover .home-challenge-meta i {
  transform: translateX(4px);
}

.home-how {
  padding: 120px 0;
  background: #fffdf9;
}

.home-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 28px;
  right: 16%;
  left: 16%;
  height: 2px;
  background: #eaded8;
}

.home-steps li {
  position: relative;
  z-index: 1;
  padding: 0 22px;
  text-align: center;
}

.home-steps li > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 28px;
  border: 6px solid #fffdf9;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 0 0 1px rgba(216, 73, 48, 0.22);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.home-steps h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.home-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.home-host {
  padding: 30px 0 120px;
  background: #fffdf9;
}

.home-host-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: center;
  padding: 70px;
  border-radius: 30px;
  background: #f8ded5;
}

.home-host-copy {
  max-width: 700px;
}

.home-host-copy .home-label {
  color: #735037;
  background: rgba(255, 255, 255, 0.62);
}

.home-host h2 {
  font-size: clamp(32px, 3.6vw, 47px);
}

.home-host .button {
  flex-shrink: 0;
}

.home-final {
  padding: 120px 0;
  text-align: center;
  background: #f4f1e9;
}

.home-final .home-container {
  max-width: 760px;
}

.home-final .button {
  margin-top: 38px;
}

/* Shared app pages */
.app-page {
  background: var(--paper-light);
}

.page-intro {
  padding-top: 110px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}

.page-intro h1,
.host-intro h1,
.opportunity-hero h1,
.static-page h1,
.center-state h1,
.mypage h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.page-intro h1 {
  max-width: 880px;
  font-size: clamp(44px, 6vw, 82px);
}

.page-intro > p:last-child {
  margin: 28px 0 0;
  color: var(--muted);
}

/* Discovery */
.wizard {
  min-height: 780px;
  padding-top: 42px;
  padding-bottom: 110px;
}

.wizard-progress {
  display: grid;
  grid-template-columns: 70px minmax(100px, 280px) 1fr;
  gap: 24px;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.wizard-progress > div {
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.wizard-progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--red);
  transition: width 0.45s var(--ease);
}

.wizard-progress button {
  justify-self: end;
  padding: 5px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.wizard-progress button:disabled {
  opacity: 0;
  pointer-events: none;
}

.wizard-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.4fr);
  gap: 100px;
  padding-top: 88px;
  animation: stage-in 0.55s var(--ease) both;
}

.wizard-stage[hidden],
.wizard-results[hidden] {
  display: none;
}

@keyframes stage-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wizard-question span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.wizard-question h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.35;
}

.choices {
  border-top: 1px solid var(--line);
}

.choice {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 18px;
  gap: 24px;
  align-items: center;
  min-height: 82px;
  padding: 18px 8px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    padding 0.28s var(--ease),
    color 0.2s ease,
    background-color 0.2s ease;
}

.choice:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: #ebe7dc;
}

.choice.is-selected {
  padding-right: 18px;
  padding-left: 18px;
  color: var(--white);
  background: var(--ink);
}

.choice > span {
  font-family: "Yu Mincho", serif;
  font-size: 20px;
  font-weight: 600;
}

.choice small {
  color: var(--muted);
  font-size: 11px;
}

.choice.is-selected small {
  color: rgba(255, 255, 255, 0.65);
}

.choice i {
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.choice.is-selected i {
  border: 4px solid var(--white);
  background: var(--red);
}

.match-button {
  grid-column: 2;
  justify-self: end;
  margin-top: 40px;
}

.match-button:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.wizard-results {
  padding-top: 90px;
  animation: result-in 0.75s var(--ease) both;
}

@keyframes result-in {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.results-head {
  max-width: 720px;
  margin-bottom: 55px;
}

.results-head h2 {
  margin: 0;
  font-family: "Yu Mincho", serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.3;
}

.results-head > p:last-child {
  color: var(--muted);
}

.wizard-results > .text-button {
  margin-top: 34px;
}

.all-opportunities {
  padding-top: 130px;
  padding-bottom: 150px;
}

.all-opportunities .featured-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.all-opportunities h2 {
  margin: 0;
  font-family: "Yu Mincho", serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 500;
}

/* Detail */
.opportunity-detail {
  padding-top: 65px;
  padding-bottom: 150px;
}

.back-link {
  display: inline-block;
  margin-bottom: 90px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.opportunity-hero {
  max-width: 1080px;
  padding-bottom: 110px;
}

.opportunity-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.opportunity-hero-meta span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.opportunity-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
}

.opportunity-hero > p {
  max-width: 700px;
  margin: 34px 0 0;
  color: var(--muted);
  font-family: "Yu Mincho", serif;
  font-size: 18px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 110px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 90px;
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 95px;
}

.detail-section h2 {
  margin: 0 0 30px;
  font-family: "Yu Mincho", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.35;
}

.detail-section > p:last-child {
  max-width: 720px;
  margin: 0;
  color: #3d3b35;
  font-family: "Yu Mincho", serif;
  font-size: 18px;
  line-height: 2.15;
}

.first-action {
  padding: 46px;
  color: var(--white);
  background: var(--red);
}

.first-action span {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.first-action p {
  margin: 0;
  font-family: "Yu Mincho", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.6;
}

.host-profile {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 35px;
  align-items: start;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.host-monogram {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-family: "Yu Mincho", serif;
  font-size: 38px;
}

.host-profile h2 {
  margin: 0 0 12px;
  font-family: "Yu Mincho", serif;
  font-size: 30px;
  font-weight: 600;
}

.host-profile p:last-child {
  margin: 0;
  color: var(--muted);
}

.trial-panel {
  position: sticky;
  top: 30px;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.trial-panel dl {
  margin: 0 0 34px;
}

.trial-panel dl > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.trial-panel dl > div:first-child {
  padding-top: 0;
}

.trial-panel dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.trial-panel dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.apply-form,
.host-form,
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.apply-form label,
.host-form label,
.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  line-height: 1.7;
  transition: border-color 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-bottom-color: var(--red);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) calc(50% - 2px),
    calc(100% - 9px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--red-dark);
  font-size: 12px;
}

.form-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.success-note {
  padding-top: 8px;
}

.success-note > span,
.large-success > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
}

.success-note p {
  font-family: "Yu Mincho", serif;
  font-size: 18px;
  font-weight: 600;
}

.signin-prompt p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 12px;
}

.eyebrow--demo,
.demo-label {
  color: #765b22;
}

.demo-note h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.demo-note > p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
}

/* Host */
.host-intro {
  padding-top: 120px;
  padding-bottom: 130px;
}

.host-intro h1 {
  max-width: 1050px;
  font-size: clamp(48px, 7vw, 92px);
}

.host-intro > p:last-child {
  max-width: 620px;
  margin: 40px 0 0 auto;
  color: var(--muted);
  font-family: "Yu Mincho", serif;
  font-size: 18px;
}

.host-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.host-principles > div {
  padding: 0 46px;
  border-right: 1px solid var(--line);
}

.host-principles > div:first-child {
  padding-left: 0;
}

.host-principles > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.host-principles span {
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.host-principles h2 {
  margin: 35px 0 12px;
  font-family: "Yu Mincho", serif;
  font-size: 27px;
  font-weight: 600;
}

.host-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.host-form-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 120px;
  padding-top: 140px;
  padding-bottom: 160px;
}

.host-form-lead {
  position: sticky;
  top: 60px;
  align-self: start;
}

.host-form-lead h2 {
  margin: 0 0 28px;
  font-family: "Yu Mincho", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.35;
}

.host-form-lead > p:last-child {
  color: var(--muted);
}

.host-form {
  gap: 36px;
}

.host-form label {
  font-size: 14px;
}

.host-form input,
.host-form textarea {
  padding: 16px 0;
  font-family: "Yu Mincho", serif;
  font-size: 16px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.signin-wall,
.large-success {
  padding: 58px;
  color: var(--white);
  background: var(--ink);
}

.signin-wall h3,
.large-success h2 {
  margin: 0 0 18px;
  font-family: "Yu Mincho", serif;
  font-size: 30px;
  font-weight: 500;
}

.signin-wall p,
.large-success p {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.65);
}

.signin-wall .button {
  color: var(--ink);
  background: var(--white);
}

/* Auth */
.auth-page > .site-header,
.auth-page > .site-footer {
  display: none;
}

.auth-layout {
  display: grid;
  min-height: 100svh;
  grid-template-columns: 1.05fr 0.95fr;
}

.auth-story {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(56px, calc((100vw - 1320px) / 2));
  padding-right: 60px;
  color: var(--white);
  background:
    linear-gradient(rgba(20, 18, 14, 0.56), rgba(20, 18, 14, 0.75)),
    url("/hero.webp") 54% center / cover;
}

.brand--auth {
  position: absolute;
  top: 45px;
}

.auth-story .eyebrow {
  margin-top: 80px;
}

.auth-story h1 {
  margin: 0;
  font-family: "Yu Mincho", serif;
  font-size: clamp(50px, 6vw, 88px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.auth-story > p:last-child {
  max-width: 440px;
  margin-top: 34px;
}

.auth-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 530px;
  width: calc(100% - 96px);
  margin: 0 auto;
  padding: 90px 0;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.auth-tabs button {
  padding: 17px 5px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.auth-tabs button[aria-selected="true"] {
  border-bottom-color: var(--red);
  font-weight: 800;
}

.auth-form[hidden] {
  display: none;
}

.auth-form h2 {
  margin: 0 0 22px;
  font-family: "Yu Mincho", serif;
  font-size: 38px;
  font-weight: 500;
}

.auth-form label small {
  color: var(--muted);
  font-weight: 400;
}

.auth-consent {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.auth-consent a {
  border-bottom: 1px solid currentColor;
}

/* My page */
.mypage {
  padding-top: 110px;
  padding-bottom: 160px;
}

.mypage-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}

.mypage h1 {
  font-size: clamp(48px, 6vw, 82px);
}

.mypage-head > div > p:last-child {
  color: var(--muted);
  font-size: 12px;
}

.mypage-section {
  padding-top: 80px;
}

.mypage-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.mypage-section-title h2 {
  margin: 0;
  font-family: "Yu Mincho", serif;
  font-size: 32px;
  font-weight: 500;
}

.mypage-section-title span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 11px;
}

.mypage-list > a,
.mypage-static-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 220px 30px;
  gap: 30px;
  align-items: center;
  min-height: 120px;
  border-bottom: 1px solid var(--line);
}

.mypage-list small {
  color: var(--muted);
}

.mypage-list h3 {
  margin: 0;
  font-family: "Yu Mincho", serif;
  font-size: 22px;
}

.mypage-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.mypage-list i {
  font-style: normal;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #3aa66d;
}

.status-dot--review {
  background: #d59a28;
}

.empty-state {
  padding: 58px 0;
}

.empty-state p {
  color: var(--muted);
}

.workflow-list {
  border-top: 1px solid var(--line);
}

.workflow-item {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-item > header,
.workflow-item > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.workflow-item > header {
  margin-bottom: 26px;
}

.workflow-item > header > small {
  color: var(--muted);
  font-size: 11px;
}

.workflow-main {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: 70px;
  align-items: start;
}

.workflow-main h3 {
  margin: 0 0 8px;
  font-family: "Noto Sans JP DEBAN", "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-weight: 700;
}

.workflow-main h3 a:hover,
.inline-link:hover {
  color: var(--red);
}

.workflow-main p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.workflow-kicker {
  margin-bottom: 8px !important;
  color: var(--red) !important;
  font-weight: 700;
}

.workflow-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
}

.workflow-badge--waiting {
  color: #765b22;
  background: #eee2bd;
}

.workflow-badge--active {
  color: #174b64;
  background: #d7e8ef;
}

.workflow-badge--complete {
  color: #205c3f;
  background: #d8eadf;
}

.workflow-badge--closed {
  color: var(--muted);
  background: #e6e3da;
}

.next-action {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 24px;
  border-left: 2px solid var(--red);
}

.next-action span,
.next-action small {
  color: var(--muted);
  font-size: 10px;
}

.next-action strong {
  font-size: 14px;
}

.workflow-message {
  padding: 16px 20px;
  margin: 26px 0 0;
  background: #efebe0;
  font-size: 13px;
}

.workflow-item > footer {
  justify-content: flex-start;
  margin-top: 24px;
}

.workflow-item > footer form {
  display: flex;
  align-items: center;
  gap: 18px;
}

.workflow-item > footer .form-message {
  min-height: 0;
}

.application-detail {
  display: grid;
  gap: 18px;
  margin: 0;
}

.application-detail dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.application-detail dd {
  margin: 0;
  font-size: 13px;
}

.workflow-update,
.publish-form {
  display: grid;
  gap: 22px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.workflow-update {
  grid-template-columns: minmax(180px, 0.45fr) minmax(320px, 1fr) auto;
  align-items: end;
}

.workflow-update label,
.publish-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
}

.workflow-update .form-message {
  grid-column: 1 / -1;
  grid-row: 2;
}

.workflow-update .button {
  align-self: end;
}

/* Operations */
.operations,
.review {
  padding-top: 90px;
  padding-bottom: 150px;
}

.operations-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: end;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.operations-head h1,
.review-head h1 {
  margin: 0;
  font-family: "Noto Sans JP DEBAN", "Noto Sans JP", sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 750;
  letter-spacing: -0.04em;
}

.operations-head > div > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
}

.operations-head > dl {
  display: flex;
  gap: 42px;
  margin: 0;
}

.operations-head dl div {
  min-width: 100px;
}

.operations-head dt {
  color: var(--muted);
  font-size: 11px;
}

.operations-head dd {
  margin: 4px 0 0;
  font-size: 42px;
  font-weight: 750;
  line-height: 1;
}

.operations-section {
  padding-top: 72px;
}

.operations-list {
  border-top: 1px solid var(--line);
}

.operations-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 140px 20px;
  gap: 28px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.25s var(--ease);
}

.operations-row:hover {
  padding-right: 12px;
  padding-left: 12px;
}

.operations-row h3 {
  margin: 0 0 6px;
  font-family: "Noto Sans JP DEBAN", "Noto Sans JP", sans-serif;
  font-size: 18px;
}

.operations-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.operations-row > div:nth-child(3) {
  display: flex;
  flex-direction: column;
}

.operations-row small {
  color: var(--muted);
  font-size: 10px;
}

.operations-row i {
  font-style: normal;
}

.review > .back-link {
  margin-bottom: 55px;
}

.review-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 90px;
  align-items: start;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}

.review-head .workflow-badge {
  margin-bottom: 24px;
}

.review-head > div > p {
  color: var(--muted);
  font-size: 12px;
}

.review-head dl {
  margin: 0;
}

.review-head dl div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.review-head dl div:first-child {
  padding-top: 0;
}

.review-head dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.review-head dd {
  margin: 0;
  font-size: 13px;
}

.review-action,
.review-publish {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(420px, 1.35fr);
  gap: 90px;
  padding: 75px 0;
  border-bottom: 1px solid var(--line);
}

.review-action h2,
.review-publish h2,
.review-published h2 {
  margin: 0;
  font-family: "Noto Sans JP DEBAN", "Noto Sans JP", sans-serif;
  font-size: 28px;
}

.review-action .workflow-update {
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  border: 0;
}

.review-action .workflow-update .form-message {
  grid-column: auto;
  grid-row: auto;
}

.review-publish-lead p:last-child {
  color: var(--muted);
  font-size: 13px;
}

.publish-form {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 34px;
}

.review-published {
  padding: 80px 0;
}

.review-published .button {
  margin-top: 28px;
}

/* Static */
.static-page {
  max-width: 980px;
  padding-top: 120px;
  padding-bottom: 160px;
}

.static-page header {
  padding-bottom: 100px;
}

.static-page h1,
.center-state h1 {
  font-size: clamp(52px, 7vw, 88px);
}

.static-page header > p:last-child {
  max-width: 710px;
  margin: 32px 0 0;
  color: var(--muted);
  font-family: "Yu Mincho", serif;
  font-size: 18px;
}

.static-page section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.static-page section h2 {
  margin: 0;
  font-family: "Yu Mincho", serif;
  font-size: 23px;
}

.static-page section p {
  margin: 0;
  color: var(--muted);
}

.updated-at {
  margin-top: 60px;
  color: var(--muted);
  font-size: 11px;
}

.center-state {
  display: flex;
  min-height: 70vh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.center-state .button {
  margin-top: 40px;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding: 90px max(48px, calc((100vw - 1320px) / 2)) 40px;
  color: var(--white);
  background: #11110e;
}

.brand--footer {
  margin-bottom: 18px;
}

.site-footer > div:first-child p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: "Yu Mincho", serif;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 38px;
  align-content: start;
  font-size: 11px;
}

.footer-links a:hover {
  color: #ff8068;
}

.copyright {
  grid-column: 1 / -1;
  margin: 60px 0 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.35);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

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

@media (max-width: 980px) {
  :root {
    --page: calc(100vw - 48px);
  }

  .site-header {
    height: 72px;
    padding: 0 24px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 80px 34px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s var(--ease);
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: "Yu Mincho", serif;
    font-size: 28px;
  }

  .section-pad {
    padding: 100px 24px;
  }

  .hero-content {
    width: calc(100% - 48px);
    padding-top: max(135px, 21vh);
    margin-left: 24px;
  }

  .hero-scroll {
    right: 20px;
  }

  .first-step {
    grid-template-columns: 60px 1fr;
  }

  .first-step-detail {
    grid-column: 2;
    padding-top: 15px;
  }

  .paths-title {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .host-story {
    grid-template-columns: 1fr;
  }

  .host-story-words {
    position: absolute;
    inset: 0 0 0 55%;
    border: 0;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .trial-panel {
    position: static;
  }

  .host-principles {
    grid-template-columns: 1fr;
  }

  .host-principles > div,
  .host-principles > div:first-child,
  .host-principles > div:last-child {
    padding: 35px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .host-principles > div:last-child {
    border-bottom: 0;
  }

  .host-principles h2 {
    margin-top: 14px;
  }

  .host-form-section {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .host-form-lead {
    position: static;
  }

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

  .auth-story {
    min-height: 62svh;
    padding: 110px 32px 70px;
  }

  .brand--auth {
    top: 32px;
  }

  .auth-panel {
    width: calc(100% - 48px);
  }

  .workflow-update {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-update .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .review-head,
  .review-action,
  .review-publish {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .brand {
    font-size: 20px;
  }

  .hero-image {
    inset: 0;
    background-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 10, 8, 0.83), rgba(11, 10, 8, 0.22)),
      linear-gradient(0deg, rgba(9, 8, 6, 0.45), transparent 65%);
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 64px);
  }

  .hero-brand {
    margin-bottom: 20px;
  }

  .hero-lead {
    max-width: 280px;
    font-size: 14px;
  }

  .hero-lead > span {
    display: block;
  }

  .hero-lead > span + span {
    margin-left: 0;
  }

  .button {
    min-height: 54px;
    gap: 24px;
  }

  .first-step {
    display: block;
  }

  .first-step .section-number {
    margin-bottom: 48px;
  }

  .first-step h2 {
    font-size: 52px;
  }

  .first-step-detail {
    padding-top: 50px;
  }

  .paths h2,
  .featured h2 {
    font-size: 41px;
  }

  .path-item {
    grid-template-columns: 35px 1fr 24px;
    gap: 10px;
    padding: 28px 0;
  }

  .path-item h3 {
    font-size: 23px;
  }

  .path-item p {
    display: none;
  }

  .featured-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .opportunity-row {
    grid-template-columns: 34px 1fr 24px;
    gap: 10px;
    min-height: 0;
    padding: 28px 0;
  }

  .opportunity-place {
    display: none;
  }

  .opportunity-copy h3 {
    font-size: 22px;
  }

  .opportunity-copy > p:last-child {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .host-story {
    min-height: 650px;
  }

  .host-story-copy {
    padding: 90px 24px;
  }

  .host-story h2 {
    font-size: 47px;
  }

  .host-story-words {
    inset: 0 0 0 60%;
  }

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

  .final-cta h2 {
    font-size: 51px;
  }

  .page-intro,
  .host-intro {
    padding-top: 80px;
    padding-bottom: 75px;
  }

  .page-intro h1,
  .host-intro h1 {
    font-size: 43px;
  }

  .wizard {
    min-height: 680px;
  }

  .wizard-progress {
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
  }

  .wizard-stage {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 55px;
  }

  .wizard-question h2 {
    font-size: 34px;
  }

  .choice {
    grid-template-columns: 1fr 16px;
    min-height: 72px;
  }

  .choice small {
    display: none;
  }

  .choice i {
    grid-column: 2;
  }

  .match-button {
    grid-column: 1;
    justify-self: stretch;
  }

  .results-head h2 {
    font-size: 39px;
  }

  .all-opportunities {
    padding-top: 95px;
    padding-bottom: 100px;
  }

  .opportunity-detail {
    padding-top: 40px;
    padding-bottom: 100px;
  }

  .back-link {
    margin-bottom: 55px;
  }

  .opportunity-hero {
    padding-bottom: 70px;
  }

  .opportunity-hero h1 {
    font-size: 46px;
  }

  .opportunity-hero > p {
    font-size: 16px;
  }

  .detail-grid {
    gap: 65px;
    padding-top: 65px;
  }

  .mypage {
    padding-top: 72px;
    padding-bottom: 100px;
  }

  .mypage-head {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 52px;
  }

  .mypage-section {
    padding-top: 58px;
  }

  .mypage-section-title h2 {
    font-size: 25px;
  }

  .workflow-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .workflow-item > header {
    align-items: flex-start;
  }

  .next-action {
    padding-left: 16px;
  }

  .workflow-item > footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .workflow-item > footer form {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .workflow-update {
    grid-template-columns: 1fr;
  }

  .workflow-update .button {
    grid-column: auto;
    width: 100%;
  }

  .workflow-update .form-message {
    grid-column: auto;
    grid-row: auto;
  }

  .operations,
  .review {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .operations-head {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-bottom: 52px;
  }

  .operations-head > dl {
    width: 100%;
    justify-content: space-between;
  }

  .operations-row {
    grid-template-columns: 1fr 22px;
    gap: 14px;
    padding: 24px 0;
  }

  .operations-row > .workflow-badge,
  .operations-row > div:nth-child(3) {
    grid-column: 1;
  }

  .operations-row > i {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .review-head,
  .review-action,
  .review-publish {
    gap: 38px;
  }

  .review-head h1 {
    font-size: 39px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .detail-main {
    gap: 70px;
  }

  .detail-section h2 {
    font-size: 33px;
  }

  .detail-section > p:last-child {
    font-size: 16px;
  }

  .first-action {
    padding: 30px;
  }

  .host-profile {
    grid-template-columns: 68px 1fr;
    gap: 20px;
  }

  .host-monogram {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }

  .trial-panel {
    padding: 26px;
  }

  .host-intro > p:last-child {
    margin-left: 0;
    font-size: 16px;
  }

  .host-form-section {
    padding-top: 90px;
    padding-bottom: 110px;
  }

  .signin-wall,
  .large-success {
    padding: 34px 28px;
  }

  .auth-story {
    min-height: 56svh;
  }

  .auth-story h1 {
    font-size: 48px;
  }

  .auth-panel {
    padding: 60px 0 80px;
  }

  .mypage {
    padding-top: 80px;
    padding-bottom: 110px;
  }

  .mypage-head {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 55px;
  }

  .mypage h1 {
    font-size: 47px;
  }

  .mypage-list > a,
  .mypage-static-row {
    grid-template-columns: 1fr 24px;
    gap: 8px;
    padding: 22px 0;
  }

  .mypage-list > a > div,
  .mypage-static-row > div {
    grid-column: 1;
  }

  .mypage-list h3 {
    grid-column: 1;
  }

  .mypage-list p {
    grid-column: 1;
  }

  .mypage-list i {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .static-page {
    padding-top: 80px;
    padding-bottom: 110px;
  }

  .static-page header {
    padding-bottom: 60px;
  }

  .static-page h1,
  .center-state h1 {
    font-size: 48px;
  }

  .static-page section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 70px 24px 30px;
  }

  .copyright {
    margin-top: 20px;
  }
}

@media (max-width: 900px) {
  .home-container {
    width: min(680px, calc(100vw - 48px));
  }

  .home-feature-grid,
  .home-challenge-grid {
    grid-template-columns: 1fr;
  }

  .home-feature-card {
    min-height: 0;
  }

  .home-challenge-card {
    min-height: 300px;
  }

  .home-host-panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .home-host .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .home-container {
    width: calc(100vw - 36px);
  }

  .home-intro,
  .home-featured,
  .home-how,
  .home-final {
    padding: 82px 0;
  }

  .home-section-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .home-section-heading h2,
  .home-final h2 {
    font-size: 32px;
    line-height: 1.45;
  }

  .home-section-heading > p,
  .home-host-copy > p,
  .home-final p {
    font-size: 14px;
  }

  .home-feature-card,
  .home-challenge-card {
    padding: 26px;
    border-radius: 18px;
  }

  .home-feature-card {
    min-height: 0;
  }

  .home-feature-number {
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    border-radius: 13px;
  }

  .home-challenge-card {
    min-height: 0;
  }

  .home-challenge-card h3 {
    font-size: 20px;
  }

  .home-challenge-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-intro-action,
  .home-list-action {
    margin-top: 36px;
  }

  .home-intro-action .button,
  .home-list-action .button,
  .home-final .button {
    width: 100%;
  }

  .home-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-steps::before {
    top: 22px;
    bottom: 22px;
    left: 22px;
    width: 2px;
    height: auto;
  }

  .home-steps li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 20px;
    padding: 0 0 36px;
    text-align: left;
  }

  .home-steps li:last-child {
    padding-bottom: 0;
  }

  .home-steps li > span {
    width: 46px;
    height: 46px;
    margin: 0;
    border-width: 5px;
  }

  .home-steps h3 {
    font-size: 18px;
  }

  .home-host {
    padding: 10px 0 82px;
  }

  .home-host-panel {
    gap: 30px;
    padding: 34px 26px;
    border-radius: 20px;
  }

  .home-host h2 {
    font-size: 29px;
    line-height: 1.5;
  }

  .home-host .button {
    width: 100%;
  }

  .home-final {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Functional discovery and hosting surfaces */
.app-page {
  --app-bg: #f5f5f2;
  --app-surface: #ffffff;
  --app-line: #d9d9d3;
  --app-muted: #62635f;
  background: var(--app-bg);
}

.app-page .site-header {
  height: 72px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  background: color-mix(in srgb, var(--app-bg) 94%, transparent);
}

.app-page .brand {
  font-size: 20px;
}

.app-page .desktop-nav {
  gap: 28px;
  font-size: 13px;
}

.app-page .eyebrow {
  margin-bottom: 12px;
  color: var(--red-dark);
  font-family: inherit;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.discover-page .page-shell,
.host-page .page-shell {
  width: min(1200px, calc(100vw - 48px));
}

.discover-workspace {
  padding-top: 48px;
  padding-bottom: 72px;
}

.discover-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 28px;
}

.discover-heading h1,
.host-intro h1,
.host-principles h2,
.host-form-lead h2 {
  margin: 0;
  font-family: inherit;
  font-weight: 750;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.discover-heading h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
}

.discover-heading p:last-child {
  margin: 10px 0 0;
  color: var(--app-muted);
  font-size: 14px;
}

.discover-all-link,
.host-process-link {
  display: inline-flex;
  flex-shrink: 0;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.discover-page .wizard {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  background: var(--app-surface);
  box-shadow: 0 18px 50px rgba(24, 24, 20, 0.06);
}

.discover-page .wizard-progress {
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid var(--app-line);
  font-family: inherit;
}

.discover-page .wizard-progress-copy {
  display: flex;
  gap: 14px;
  align-items: baseline;
  height: auto;
  overflow: visible;
  background: transparent;
  white-space: nowrap;
}

.wizard-progress-copy span {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
}

.wizard-progress-copy strong {
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 550;
}

.discover-page .wizard-progress-track {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e8e3;
}

.discover-page .wizard-progress i {
  height: 4px;
  border-radius: inherit;
}

.discover-page .wizard-progress button {
  min-height: 34px;
  padding: 0;
  border: 0;
  font-size: 12px;
  font-weight: 700;
}

.discover-page .wizard-stage {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(520px, 1.35fr);
  gap: 52px;
  min-height: 390px;
  padding: 38px;
}

.discover-page .wizard-stage[hidden],
.discover-page .wizard-results[hidden] {
  display: none;
}

.discover-page .wizard-question span {
  margin-bottom: 12px;
  color: var(--red-dark);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.discover-page .wizard-question h2 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.discover-page .choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  border: 1px solid var(--app-line);
  border-radius: 12px;
}

.discover-page .choice {
  grid-template-columns: 1fr 16px;
  grid-template-rows: auto auto;
  gap: 3px 12px;
  min-height: 86px;
  padding: 16px 18px;
  border: 0;
  border-right: 1px solid var(--app-line);
  border-bottom: 1px solid var(--app-line);
  background: var(--app-surface);
  transition:
    color 0.16s ease,
    background-color 0.16s ease,
    transform 0.16s ease;
}

.discover-page .choice:nth-child(2n) {
  border-right: 0;
}

.discover-page .choice:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.discover-page .choice:hover {
  padding: 16px 18px;
  background: #f1f1ed;
  transform: translateY(-1px);
}

.discover-page .choice:focus-visible {
  z-index: 1;
  outline: 3px solid color-mix(in srgb, var(--red) 32%, transparent);
  outline-offset: -3px;
}

.discover-page .choice.is-selected {
  padding: 16px 18px;
  color: var(--white);
  background: var(--ink);
}

.discover-page .choice > span {
  grid-row: 1;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
}

.discover-page .choice small {
  grid-row: 2;
  color: var(--app-muted);
  font-size: 11px;
}

.discover-page .choice i {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
}

.discover-page .match-button {
  grid-column: 2;
  justify-self: end;
  margin-top: 22px;
}

.discover-page .wizard-results {
  padding: 42px 38px 50px;
}

.discover-page .results-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.discover-page .results-head h2 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.discover-page .results-head > p:last-child {
  margin-bottom: 0;
}

.discover-page .opportunity-copy h3,
.discover-page .all-opportunities h2 {
  font-family: inherit;
}

.discover-page .all-opportunities {
  padding-top: 72px;
  padding-bottom: 120px;
}

.discover-page .all-opportunities h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 750;
  letter-spacing: -0.04em;
}

.host-page .host-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 80px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 58px;
}

.host-intro-copy h1 {
  max-width: 680px;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.12;
}

.host-intro-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--app-muted);
  font-size: 16px;
}

.host-facts {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--app-line);
  list-style: none;
}

.host-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 16px 0 0;
}

.host-facts strong {
  font-size: 15px;
}

.host-facts span {
  color: var(--app-muted);
  font-size: 11px;
}

.host-start {
  padding: 32px;
  border-radius: 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 22px 55px rgba(24, 24, 20, 0.14);
}

.host-start .eyebrow {
  color: #f28b76;
}

.host-start h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.host-start > p:not(.eyebrow) {
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.host-start .button--red {
  color: var(--white);
}

.host-process-link {
  width: fit-content;
  min-height: 36px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.host-page .host-principles {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 56px;
  padding: 46px 0;
  border-top: 1px solid var(--app-line);
  border-bottom: 1px solid var(--app-line);
}

.host-principles header h2 {
  font-size: 30px;
  line-height: 1.25;
}

.host-principles ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.host-principles li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 4px 24px;
  border-left: 1px solid var(--app-line);
}

.host-principles li > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.host-principles h3 {
  margin: 0 0 7px;
  font-size: 15px;
  line-height: 1.45;
}

.host-principles li p {
  margin: 0;
  color: var(--app-muted);
  font-size: 12px;
  line-height: 1.7;
}

.host-page .host-form-section {
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 84px;
  padding-top: 78px;
  padding-bottom: 120px;
}

.host-page .host-form-lead {
  top: 28px;
}

.host-page .host-form-lead h2 {
  font-size: 38px;
  line-height: 1.3;
}

.host-page .host-form-lead > p:last-child {
  margin-top: 18px;
  font-size: 13px;
}

.host-page .host-form {
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  background: var(--app-surface);
}

.host-page .host-form label {
  gap: 7px;
  font-size: 13px;
}

.host-page .host-form input,
.host-page .host-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: #fbfbf9;
  font-family: inherit;
  font-size: 14px;
}

.host-page .host-form input:focus,
.host-page .host-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--red) 15%, transparent);
}

.host-page .signin-wall,
.host-page .large-success {
  align-self: start;
  padding: 42px;
  border-radius: 18px;
}

.host-page .signin-wall .eyebrow {
  color: #f28b76;
}

@media (max-width: 900px) {
  .discover-page .wizard-stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .discover-page .match-button {
    grid-column: 1;
  }

  .host-page .host-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .host-page .host-principles {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .host-page .host-form-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .host-page .host-form-lead {
    position: static;
  }
}

@media (max-width: 680px) {
  .app-page .site-header {
    height: 64px;
    padding: 0 18px;
  }

  .discover-page .page-shell,
  .host-page .page-shell {
    width: calc(100vw - 36px);
  }

  .discover-workspace {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .discover-heading {
    display: grid;
    gap: 12px;
    padding-bottom: 20px;
  }

  .discover-heading h1 {
    font-size: 31px;
  }

  .discover-heading p:last-child {
    margin-top: 7px;
    font-size: 12px;
  }

  .discover-all-link {
    justify-self: start;
    min-height: 32px;
    font-size: 11px;
  }

  .discover-page .wizard {
    border-radius: 12px;
  }

  .discover-page .wizard-progress {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px 14px;
  }

  .wizard-progress-copy {
    gap: 8px;
  }

  .wizard-progress-copy strong {
    display: none;
  }

  .discover-page .wizard-progress-track {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .discover-page .wizard-stage {
    min-height: 0;
    gap: 16px;
    padding: 18px 14px 16px;
  }

  .discover-page .wizard-question h2 {
    font-size: 24px;
  }

  .discover-page .choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 9px;
  }

  .discover-page .choice {
    min-height: 68px;
    padding: 10px 11px;
  }

  .discover-page .choice:hover,
  .discover-page .choice.is-selected {
    padding: 10px 11px;
  }

  .discover-page .choice > span {
    font-size: 13px;
    line-height: 1.45;
  }

  .discover-page .choice small {
    display: none;
  }

  .discover-page .choice i {
    grid-row: 1;
    width: 12px;
    height: 12px;
  }

  .discover-page .match-button {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }

  .discover-page .wizard-results {
    padding: 28px 16px 34px;
  }

  .discover-page .all-opportunities {
    padding-top: 56px;
    padding-bottom: 90px;
  }

  .host-page .host-intro {
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 38px;
  }

  .host-intro-copy h1 {
    font-size: 36px;
  }

  .host-intro-copy > p:not(.eyebrow) {
    margin-top: 13px;
    font-size: 13px;
  }

  .host-facts {
    margin-top: 20px;
  }

  .host-facts li {
    padding-right: 8px;
  }

  .host-facts strong {
    font-size: 12px;
  }

  .host-facts span {
    font-size: 9px;
    line-height: 1.5;
  }

  .host-start {
    padding: 24px;
    border-radius: 12px;
  }

  .host-start h2 {
    font-size: 23px;
  }

  .host-page .host-principles {
    gap: 20px;
    padding: 36px 0;
  }

  .host-principles header h2 {
    font-size: 27px;
  }

  .host-principles ol {
    grid-template-columns: 1fr;
  }

  .host-principles li {
    padding: 18px 0;
    border-top: 1px solid var(--app-line);
    border-left: 0;
  }

  .host-page .host-form-section {
    padding-top: 52px;
    padding-bottom: 90px;
  }

  .host-page .host-form-lead h2 {
    font-size: 31px;
  }

  .host-page .host-form,
  .host-page .signin-wall,
  .host-page .large-success {
    padding: 24px 20px;
    border-radius: 12px;
  }
}

/* Fulfillment surfaces */
.mypage h1,
.mypage-section-title h2,
.operations h1,
.operations h2,
.review h1,
.review h2 {
  font-family: "Noto Sans JP DEBAN", "Noto Sans JP", sans-serif;
}

@media (max-width: 680px) {
  .mypage-head > div {
    width: 100%;
    min-width: 0;
  }

  .mypage h1 {
    overflow-wrap: anywhere;
    font-size: 36px;
    line-height: 1.35;
    word-break: normal;
  }
}
