:root {
  --ink: #27314d;
  --ink-deep: #1f2840;
  --muted: #697089;
  --coral: #ff6b5f;
  --coral-deep: #e9544a;
  --sky: #6c8cff;
  --sky-deep: #4f6fdf;
  --mint: #47bfa3;
  --mint-deep: #28947b;
  --lemon: #ffd86a;
  --lemon-deep: #bf8510;
  --cream: #fff9f4;
  --paper: #ffffff;
  --soft-coral: #fff0ed;
  --soft-sky: #eef2ff;
  --soft-mint: #eaf8f4;
  --soft-lemon: #fff8dc;
  --line: #e7e3e1;
  --shadow: 0 18px 60px rgba(39, 49, 77, 0.1);
  --shadow-small: 0 10px 30px rgba(39, 49, 77, 0.08);
  --display: "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --sans: "Avenir Next", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

button,
select,
textarea {
  font-size: inherit;
}

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

button,
select {
  cursor: pointer;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
strong {
  font-family: var(--display);
}

h1,
h2,
h3 {
  margin-bottom: 0.55em;
  line-height: 1.3;
  letter-spacing: 0.015em;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

h1[tabindex="-1"]:focus {
  outline: none;
}

h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

h3 {
  font-size: 1.2rem;
}

.page-title {
  line-height: 1.2;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.system-notice {
  position: relative;
  z-index: 50;
  background: var(--soft-lemon);
  border-bottom: 1px solid rgba(191, 133, 16, 0.14);
  font-size: 0.82rem;
}

.system-notice__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.system-notice p {
  margin: 0;
}

.system-notice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.system-notice a {
  color: #9a6700;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(39, 49, 77, 0.08);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}

.brand__mark {
  position: relative;
  width: 35px;
  height: 35px;
  transform: rotate(-4deg);
}

.brand__mark i,
.brand__mark b {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 12px 12px 4px 12px;
}

.brand__mark i:nth-child(1) {
  top: 0;
  left: 0;
  background: var(--coral);
}

.brand__mark i:nth-child(2) {
  top: 0;
  right: 0;
  background: var(--sky);
  transform: rotate(90deg);
}

.brand__mark i:nth-child(3) {
  right: 0;
  bottom: 0;
  background: var(--mint);
  transform: rotate(180deg);
}

.brand__mark b {
  bottom: 0;
  left: 0;
  background: var(--lemon);
  transform: rotate(270deg);
}

.brand__type {
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand__type span {
  color: var(--coral);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
}

.primary-nav a,
.header-learn {
  position: relative;
  padding: 8px 0;
  color: #4c536c;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-ai {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 8px 20px rgba(255, 107, 95, 0.24);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-ai:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
}

.launch-notice {
  position: relative;
  z-index: 15;
  border-bottom: 1px solid rgba(255, 107, 95, 0.12);
  background: #fff7f5;
}

.launch-notice__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.launch-notice__inner span {
  flex: 0 0 auto;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
  font-size: 0.58rem;
  font-weight: 800;
}

.launch-notice__inner p {
  margin: 0;
  color: #756d70;
  font-size: 0.66rem;
  font-weight: 700;
}

.section {
  padding: 108px 0;
}

.section-intro {
  max-width: 680px;
}

.section-intro--center {
  margin-inline: auto;
  text-align: center;
}

.section-intro h2 {
  margin-top: 12px;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sky-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

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

.eyebrow--coral {
  color: var(--coral-deep);
}

.eyebrow--coral::before {
  background: var(--coral);
}

.friendly-label,
.demo-badge,
.theme-pill,
.sample-note,
.prototype-chip,
.support-box__phase {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  font-weight: 800;
}

.friendly-label {
  padding: 8px 14px;
  color: var(--coral-deep);
  background: var(--soft-coral);
  font-size: 0.76rem;
}

.friendly-label--white {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button--primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 11px 26px rgba(255, 107, 95, 0.24);
}

.button--primary:hover {
  background: var(--coral-deep);
  box-shadow: 0 14px 30px rgba(255, 107, 95, 0.3);
}

.button--soft {
  color: var(--ink);
  background: #fff;
  border-color: rgba(39, 49, 77, 0.1);
  box-shadow: var(--shadow-small);
}

.button--secondary {
  color: var(--sky-deep);
  background: var(--soft-sky);
  border-color: rgba(108, 140, 255, 0.2);
}

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

.consumer-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding: 98px 0 40px;
  background: var(--cream);
}

.consumer-hero::before {
  position: absolute;
  top: 64px;
  left: -120px;
  width: 300px;
  height: 300px;
  border-radius: 48% 52% 62% 38%;
  background: var(--soft-lemon);
  content: "";
  transform: rotate(20deg);
}

.hero-blob {
  position: absolute;
  border-radius: 48% 52% 58% 42%;
  opacity: 0.8;
}

.hero-blob--coral {
  right: 37%;
  bottom: 72px;
  width: 110px;
  height: 110px;
  background: var(--soft-coral);
  transform: rotate(18deg);
}

.hero-blob--sky {
  top: 72px;
  right: -70px;
  width: 260px;
  height: 260px;
  background: var(--soft-sky);
  transform: rotate(-18deg);
}

.consumer-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: 80px;
}

.consumer-hero__copy h1 {
  max-width: none;
  margin-top: 22px;
  color: var(--ink-deep);
  font-size: clamp(2.1rem, 2.8vw, 2.55rem);
}

.consumer-hero__copy h1 em {
  position: relative;
  z-index: 0;
  color: var(--coral);
  font-style: normal;
}

.consumer-hero__copy h1 em::after {
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 1px;
  left: -4px;
  height: 13px;
  border-radius: 8px;
  background: var(--lemon);
  content: "";
  opacity: 0.65;
}

.consumer-hero__copy > p {
  max-width: 680px;
  color: #5e657d;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.quick-interests {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 0.78rem;
}

.quick-interests > span {
  margin-right: 3px;
  color: var(--muted);
  font-weight: 700;
}

.quick-interests button {
  padding: 7px 11px;
  border: 1px solid rgba(39, 49, 77, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #515970;
  font-size: 0.72rem;
  font-weight: 700;
}

.quick-interests button:hover {
  color: var(--coral-deep);
  border-color: var(--coral);
}

.hero-guide {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(39, 49, 77, 0.08);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-guide__photo {
  height: 220px;
  overflow: hidden;
  margin: -26px -26px 22px;
  border-radius: 30px 30px 18px 18px;
}

.hero-guide__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 46%;
}

.hero-guide::before {
  position: absolute;
  z-index: -1;
  right: -20px;
  bottom: -20px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: var(--sky);
  content: "";
  opacity: 0.14;
}

.hero-guide__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.hero-guide__top small,
.hero-guide__top strong {
  display: block;
}

.hero-guide__top small {
  color: var(--muted);
  font-size: 0.66rem;
}

.hero-guide__top strong {
  font-size: 0.87rem;
}

.ai-avatar {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  background: var(--sky);
  box-shadow: 0 7px 16px rgba(108, 140, 255, 0.22);
  font-size: 1.1rem;
}

.ai-avatar--large {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  font-size: 1.45rem;
}

.online-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--mint-deep);
  font-size: 0.66rem;
  font-weight: 800;
}

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

.chat-preview {
  padding: 24px 0 12px;
  font-size: 0.8rem;
}

.chat-preview p {
  width: fit-content;
  max-width: 88%;
  margin-bottom: 12px;
  padding: 11px 14px;
  border-radius: 7px 17px 17px 17px;
}

.chat-preview__ai {
  background: var(--soft-sky);
}

.chat-preview__user {
  margin-left: auto;
  color: #fff;
  background: var(--coral);
  border-radius: 17px 7px 17px 17px !important;
}

.chat-preview__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -3px 0 18px 12px;
}

.chat-preview__choices span {
  padding: 6px 9px;
  border: 1px solid rgba(108, 140, 255, 0.24);
  border-radius: 999px;
  color: var(--sky-deep);
  background: #fff;
  font-size: 0.68rem;
}

.hero-guide > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  color: var(--sky-deep);
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-reassurance {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 78px;
  padding-top: 24px;
  border-top: 1px solid rgba(39, 49, 77, 0.09);
}

.hero-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #586079;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-reassurance i {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--mint-deep);
  background: var(--soft-mint);
  font-style: normal;
}

.theme-browse {
  background: #fff;
}

.bookmark-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 46px;
}

.bookmark-card {
  position: relative;
  min-height: 305px;
  overflow: hidden;
  padding: 28px 24px 38px;
  border: 0;
  border-radius: 24px;
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.bookmark-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 36px;
  background: #fff;
  clip-path: polygon(0 70%, 50% 0, 100% 70%, 100% 100%, 0 100%);
  content: "";
}

.bookmark-card:hover {
  transform: translateY(-7px) rotate(-0.5deg);
  box-shadow: var(--shadow-small);
}

.bookmark-card--sky {
  color: #344fba;
  background: var(--soft-sky);
}

.bookmark-card--coral {
  color: #b13c35;
  background: var(--soft-coral);
}

.bookmark-card--mint {
  color: #1f7d69;
  background: var(--soft-mint);
}

.bookmark-card--lemon {
  color: #926607;
  background: var(--soft-lemon);
}

.bookmark-card__symbol {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #fff;
  background: currentColor;
  font-size: 1.2rem;
  font-weight: 800;
}

.bookmark-card__symbol::first-letter {
  color: #fff;
}

.bookmark-card__copy,
.bookmark-card__copy > * {
  display: block;
}

.bookmark-card__copy small {
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 800;
}

.bookmark-card__copy strong {
  min-height: 3.1em;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

.bookmark-card__copy span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.65;
}

.bookmark-card > i {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 35px;
  font-style: normal;
  font-weight: 800;
}

.theme-note {
  margin: 26px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.75rem;
}

.featured-wishes,
.area-wishes,
.activity-section {
  background: var(--cream);
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.sample-note {
  flex: 0 0 auto;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: #7e6670;
  background: #f6eff1;
  font-size: 0.68rem;
}

.wish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.wish-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wish-card {
  overflow: hidden;
  border: 1px solid rgba(39, 49, 77, 0.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(39, 49, 77, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.wish-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-small);
}

.wish-card__visual {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  gap: 17px;
  padding: 26px;
}

.wish-card__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.wish-card__visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 26, 45, 0.02) 25%, rgba(18, 26, 45, 0.82) 100%);
  content: "";
}

.wish-card--sky .wish-card__visual,
.match-card--sky {
  background: var(--soft-sky);
}

.wish-card--coral .wish-card__visual,
.match-card--coral {
  background: var(--soft-coral);
}

.wish-card--mint .wish-card__visual,
.match-card--mint {
  background: var(--soft-mint);
}

.wish-card--lemon .wish-card__visual,
.match-card--lemon {
  background: var(--soft-lemon);
}

.wish-card__visual::after {
  position: absolute;
  top: -30px;
  right: -35px;
  width: 150px;
  height: 150px;
  border-radius: 53% 47% 41% 59%;
  background: rgba(255, 255, 255, 0.55);
  content: "";
  transform: rotate(25deg);
  z-index: 1;
}

.wish-card__visual > .future-bookmark {
  position: relative;
  z-index: 2;
}

.future-bookmark {
  display: inline-flex;
  width: 70px;
  height: 92px;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
  color: #fff;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
}

.future-bookmark--sky {
  background: var(--sky);
}

.future-bookmark--coral {
  background: var(--coral);
}

.future-bookmark--mint {
  background: var(--mint);
}

.future-bookmark--lemon {
  color: #825907;
  background: var(--lemon);
}

.wish-card__visual-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
}

.wish-card__visual-copy span,
.wish-card__visual-copy strong {
  color: #fff;
  text-shadow: 0 2px 18px rgba(12, 20, 36, 0.3);
}

.wish-card__visual-copy span,
.wish-card__visual-copy strong {
  display: block;
}

.wish-card__visual-copy span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.wish-card__visual-copy strong {
  font-size: 0.92rem;
  line-height: 1.55;
}

.demo-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  color: #6d6370;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(39, 49, 77, 0.08);
  font-size: 0.59rem;
}

.demo-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.wish-card__body {
  padding: 24px 26px 26px;
}

.wish-card__themes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.theme-pill {
  padding: 4px 8px;
  font-size: 0.62rem;
}

.theme-pill--sky {
  color: #4964c9;
  background: var(--soft-sky);
}

.theme-pill--coral {
  color: #b4473f;
  background: var(--soft-coral);
}

.theme-pill--mint {
  color: #25826d;
  background: var(--soft-mint);
}

.theme-pill--lemon {
  color: #966908;
  background: var(--soft-lemon);
}

.wish-card__body h3 {
  min-height: 3em;
  margin: 13px 0 10px;
  font-size: 1.12rem;
}

.wish-card__body > p {
  min-height: 4.9em;
  color: var(--muted);
  font-size: 0.76rem;
}

.wish-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 21px 0;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.67rem;
  font-weight: 700;
}

.wish-card__meta small,
.wish-card__meta span {
  display: block;
}

.wish-card__meta small {
  color: #9296a6;
  font-size: 0.58rem;
  font-weight: 500;
}

.card-link,
.featured-action a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--coral-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.wish-card .card-link {
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.featured-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.featured-action a {
  display: inline-flex;
  gap: 20px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--coral);
}

.region-invite {
  padding: 92px 0;
  color: #fff;
  background: var(--sky);
}

.region-invite__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.region-invite h2 {
  margin-top: 13px;
}

.region-invite p {
  color: rgba(255, 255, 255, 0.83);
}

.region-invite .eyebrow {
  color: var(--lemon);
}

.region-invite .eyebrow::before {
  background: var(--lemon);
}

.region-map-card {
  position: relative;
  min-height: 370px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 48% 52% 46% 54%;
  background: rgba(255, 255, 255, 0.12);
}

.region-map-card::before,
.region-map-card::after {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.region-map-card::before {
  top: 36px;
  left: 38px;
}

.region-map-card::after {
  right: 40px;
  bottom: 34px;
}

.region-map-card__center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 190px;
  height: 190px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 22px 45px rgba(46, 68, 147, 0.25);
  transform: translate(-50%, -50%);
}

.region-map-card__center span,
.region-map-card__center small {
  font-size: 0.66rem;
}

.region-map-card__center strong {
  color: var(--coral);
  font-size: 2.5rem;
}

.region-map-card > b {
  position: absolute;
  font-size: 0.7rem;
}

.region-map-card > b:nth-of-type(1) {
  top: 55px;
  right: 87px;
}

.region-map-card > b:nth-of-type(2) {
  bottom: 61px;
  left: 76px;
}

.region-map-card > b:nth-of-type(3) {
  right: 68px;
  bottom: 48px;
}

.map-dot {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 50%;
}

.map-dot--one {
  top: 98px;
  left: 93px;
  background: var(--coral);
}

.map-dot--two {
  right: 85px;
  bottom: 104px;
  background: var(--lemon);
}

.map-dot--three {
  bottom: 68px;
  left: 120px;
  background: var(--mint);
}

.home-region-select {
  max-width: 520px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 20px;
  color: var(--ink);
  background: #fff;
}

.home-region-select label {
  display: block;
  margin: 0 0 8px 3px;
  font-size: 0.7rem;
  font-weight: 800;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  height: 52px;
  appearance: none;
  padding: 0 42px 0 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  font-weight: 700;
}

.select-wrap > span {
  position: absolute;
  top: 50%;
  right: 16px;
  pointer-events: none;
  transform: translateY(-50%);
}

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

.simple-steps li {
  position: relative;
  text-align: center;
}

.simple-steps li:not(:last-child)::after {
  position: absolute;
  top: 66px;
  right: -38px;
  color: #c5c8d3;
  content: "→";
  font-size: 1.2rem;
}

.step-illustration {
  display: flex;
  width: 134px;
  height: 134px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 42% 58% 52% 48%;
}

.step-illustration--coral {
  color: var(--coral-deep);
  background: var(--soft-coral);
}

.step-illustration--sky {
  color: var(--sky-deep);
  background: var(--soft-sky);
}

.step-illustration--mint {
  color: var(--mint-deep);
  background: var(--soft-mint);
}

.step-illustration i {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 22px;
  font-size: 1.7rem;
  font-style: normal;
}

.simple-steps li > small {
  display: block;
  color: var(--coral);
  font-size: 0.67rem;
  font-weight: 800;
}

.simple-steps li > strong {
  display: block;
  font-size: 1.05rem;
}

.simple-steps p {
  max-width: 270px;
  margin: 7px auto 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.trust-promise {
  padding: 88px 0;
  background: var(--soft-mint);
}

.trust-promise__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.trust-promise p {
  color: var(--muted);
}

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

.promise-list > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(71, 191, 163, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.promise-list > div > span {
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--mint-deep);
  background: var(--soft-mint);
}

.promise-list p,
.promise-list strong,
.promise-list small {
  display: block;
  margin: 0;
}

.promise-list small {
  color: var(--muted);
  font-size: 0.68rem;
}

.sources-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 70px;
}

.source-list {
  display: grid;
  gap: 10px;
}

.source-link {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border 0.2s ease, transform 0.2s ease;
}

.source-link:hover {
  border-color: var(--sky);
  transform: translateX(3px);
}

.source-link span,
.source-link strong {
  display: block;
  grid-column: 1;
}

.source-link span {
  color: var(--muted);
  font-size: 0.66rem;
}

.source-link strong {
  font-size: 0.86rem;
}

.source-link i {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--sky-deep);
  font-style: normal;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 54px;
  font-size: 0.68rem;
}

.breadcrumbs a {
  opacity: 0.78;
}

.area-hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 92px;
  color: #fff;
  background: var(--sky);
}

.area-hero__shape {
  position: absolute;
  right: -40px;
  bottom: -150px;
  color: rgba(255, 255, 255, 0.09);
  font-family: var(--display);
  font-size: 32rem;
  font-weight: 800;
  line-height: 1;
}

.area-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 90px;
}

.area-hero h1 {
  margin-top: 18px;
  font-size: clamp(2rem, 2.7vw, 2.35rem);
}

.area-hero__grid > div:first-child > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
}

.area-theme-pills {
  display: flex;
  gap: 8px;
  margin-top: 27px;
}

.area-theme-pills span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
}

.area-compass {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.area-compass__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.78;
}

.area-compass::before,
.area-compass::after {
  position: absolute;
  inset: 38px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
  z-index: 1;
}

.area-compass::after {
  inset: 92px;
  border-style: solid;
}

.area-compass__center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: 120px;
  height: 120px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.area-compass > div {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 118px;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 25px rgba(42, 64, 141, 0.18);
}

.area-compass > div:nth-of-type(1) {
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.area-compass > div:nth-of-type(2) {
  right: -2px;
  bottom: 47px;
}

.area-compass > div:nth-of-type(3) {
  bottom: 47px;
  left: -2px;
}

.area-compass strong,
.area-compass small {
  display: block;
}

.area-compass strong {
  color: var(--coral);
  font-size: 0.95rem;
}

.area-compass small {
  color: var(--muted);
  font-size: 0.58rem;
}

.municipality-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.municipality-strip__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.municipality-strip__inner > strong {
  flex: 0 0 auto;
  font-size: 0.75rem;
}

.municipality-strip__inner > div {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  scrollbar-width: thin;
}

.municipality-strip button,
.filter-chip {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.municipality-strip button:hover {
  color: var(--sky-deep);
  border-color: var(--sky);
}

.friendly-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 60px 28px;
  border: 1px dashed #c9cad1;
  border-radius: 24px;
  background: #fff;
  text-align: center;
}

.empty-state > span,
.empty-state strong {
  display: block;
}

.empty-state > span {
  margin-bottom: 12px;
  color: var(--sky);
  font-size: 2rem;
}

.empty-state p {
  color: var(--muted);
  font-size: 0.8rem;
}

.empty-state a {
  color: var(--coral-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.region-story-section {
  padding: 100px 0;
  background: var(--soft-lemon);
}

.region-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.region-story-grid > div:last-child > p {
  color: var(--muted);
}

.region-story-grid > div:last-child > small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.66rem;
}

.region-story-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 48% 52% 46% 54%;
  background: #fff;
  box-shadow: var(--shadow-small);
}

.region-story-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.region-story-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 29, 46, 0.04), rgba(20, 29, 46, 0.62));
  content: "";
}

.region-story-visual .future-bookmark {
  position: absolute;
  transform: rotate(-8deg);
}

.region-story-visual .future-bookmark--sky {
  top: 52px;
  left: 55px;
}

.region-story-visual .future-bookmark--mint {
  top: 36px;
  right: 58px;
  transform: rotate(9deg);
}

.region-story-visual .future-bookmark--lemon {
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%) rotate(3deg);
}

.region-story-visual p {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  margin: 0;
  text-align: center;
  font-family: var(--display);
  font-weight: 800;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 18px rgba(12, 20, 36, 0.35);
}

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

.partner-bubbles > div {
  min-height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  border-radius: 48% 52% 45% 55%;
  text-align: center;
}

.partner-bubbles > div:nth-child(4n + 1) {
  background: var(--soft-coral);
}

.partner-bubbles > div:nth-child(4n + 2) {
  background: var(--soft-sky);
}

.partner-bubbles > div:nth-child(4n + 3) {
  background: var(--soft-mint);
}

.partner-bubbles > div:nth-child(4n) {
  background: var(--soft-lemon);
}

.partner-bubbles span,
.partner-bubbles strong,
.partner-bubbles small {
  display: block;
}

.partner-bubbles span {
  display: flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 0.68rem;
}

.partner-bubbles strong {
  font-size: 0.88rem;
}

.partner-bubbles small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.6rem;
}

.data-caption {
  margin-top: 24px;
  color: #8d91a2;
  text-align: center;
  font-size: 0.66rem;
}

.story-hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 96px;
}

.story-hero--sky {
  background: var(--soft-sky);
}

.story-hero--coral {
  background: var(--soft-coral);
}

.story-hero--mint {
  background: var(--soft-mint);
}

.story-hero--lemon {
  background: var(--soft-lemon);
}

.story-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

.story-hero__labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
}

.story-hero__labels .demo-badge {
  position: static;
}

.story-hero__copy h1 {
  margin-top: 18px;
  font-size: clamp(2rem, 2.7vw, 2.35rem);
}

.story-hero__copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.03rem;
}

.story-owner {
  display: flex;
  max-width: 480px;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(39, 49, 77, 0.12);
}

.story-owner > span {
  display: flex;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  font-weight: 800;
}

.story-owner p,
.story-owner small,
.story-owner strong {
  display: block;
  margin: 0;
}

.story-owner small {
  color: var(--muted);
  font-size: 0.63rem;
}

.story-owner strong {
  font-size: 0.84rem;
}

.story-visual-card {
  position: relative;
  min-height: 480px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  padding: 52px 44px;
  border: 8px solid rgba(255, 255, 255, 0.68);
  border-radius: 46% 54% 46% 54%;
  background: #fff;
  box-shadow: var(--shadow);
}

.story-visual-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-visual-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 29, 46, 0.03) 24%, rgba(20, 29, 46, 0.82) 100%);
  content: "";
}

.story-visual-card::before {
  position: absolute;
  top: -30px;
  left: -35px;
  width: 230px;
  height: 230px;
  border-radius: 46% 54% 60% 40%;
  background: var(--soft-lemon);
  content: "";
  z-index: 1;
}

.story-visual-card .future-bookmark {
  position: absolute;
  top: 32px;
  right: 54px;
  width: 92px;
  height: 125px;
  padding-top: 28px;
  font-size: 1.7rem;
  transform: rotate(7deg);
  z-index: 3;
}

.story-visual-card blockquote {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.9;
  color: #fff;
  text-shadow: 0 2px 18px rgba(12, 20, 36, 0.35);
}

.story-visual-card small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.63rem;
}

.quick-facts {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 108px;
}

.quick-facts__grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.quick-facts__grid > div:first-child {
  border-left: 1px solid var(--line);
}

.quick-facts__grid > div > span {
  color: var(--coral);
  font-size: 1.2rem;
}

.quick-facts p,
.quick-facts small,
.quick-facts strong {
  display: block;
  margin: 0;
}

.quick-facts small {
  color: var(--muted);
  font-size: 0.58rem;
}

.quick-facts strong {
  font-size: 0.74rem;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  align-items: start;
  gap: 90px;
}

.use-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.use-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.use-card__dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.use-card__dot--1 {
  background: var(--coral);
}

.use-card__dot--2 {
  background: var(--sky);
}

.use-card__dot--3 {
  background: var(--mint);
}

.use-card p,
.use-card strong,
.use-card small {
  display: block;
  margin: 0;
}

.use-card strong {
  font-size: 0.9rem;
}

.use-card small {
  color: var(--muted);
  font-size: 0.62rem;
}

.use-bar {
  display: flex;
  height: 14px;
  overflow: hidden;
  gap: 3px;
  margin-top: 20px;
  border-radius: 999px;
}

.use-bar span:nth-child(1) {
  background: var(--coral);
}

.use-bar span:nth-child(2) {
  background: var(--sky);
}

.use-bar span:nth-child(3) {
  background: var(--mint);
}

.support-box {
  position: sticky;
  top: 105px;
  padding: 31px;
  border: 1px solid rgba(255, 107, 95, 0.2);
  border-radius: 26px;
  background: var(--soft-coral);
}

.support-box__phase {
  padding: 6px 10px;
  color: var(--coral-deep);
  background: #fff;
  font-size: 0.64rem;
}

.support-box h2 {
  margin-top: 16px;
  font-size: 1.75rem;
}

.support-box > p {
  color: var(--muted);
  font-size: 0.8rem;
}

.amount-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 22px 0 14px;
}

.amount-button {
  min-height: 46px;
  padding: 0 8px;
  border: 1px solid rgba(255, 107, 95, 0.23);
  border-radius: 12px;
  background: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.amount-button:hover,
.amount-button.is-active {
  color: #fff;
  background: var(--coral);
  border-color: var(--coral);
}

.support-box > small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
  font-size: 0.6rem;
}

.support-box__reassure {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 107, 95, 0.2);
}

.support-box__reassure > span {
  display: flex;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--mint-deep);
  background: #fff;
}

.support-box__reassure p,
.support-box__reassure strong,
.support-box__reassure small {
  display: block;
  margin: 0;
}

.support-box__reassure strong {
  font-size: 0.72rem;
}

.support-box__reassure small {
  color: var(--muted);
  font-size: 0.61rem;
}

.journey-section {
  padding: 100px 0;
  background: var(--soft-sky);
}

.journey-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 55px;
}

.journey-line > div {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(108, 140, 255, 0.14);
  border-radius: 44% 56% 47% 53%;
  background: #fff;
  text-align: center;
}

.journey-line > div > span {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 18px;
  color: #fff;
  background: var(--sky);
  font-family: var(--display);
  font-weight: 800;
}

.journey-line > div:nth-of-type(1) > span {
  background: var(--coral);
}

.journey-line > div:nth-of-type(3) > span {
  background: var(--mint);
}

.journey-line > div:nth-of-type(4) > span {
  color: #77530c;
  background: var(--lemon);
}

.journey-line strong {
  font-size: 0.86rem;
}

.journey-line p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.65rem;
}

.journey-line > i {
  color: var(--sky-deep);
  font-style: normal;
}

.activity-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.65fr;
  align-items: center;
  gap: 100px;
}

.friendly-timeline {
  margin-top: 40px;
}

.friendly-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 20px 90px 1fr;
  gap: 14px;
  padding-bottom: 30px;
}

.friendly-timeline__item::after {
  position: absolute;
  top: 22px;
  bottom: 2px;
  left: 8px;
  width: 2px;
  background: #d9d8dc;
  content: "";
}

.friendly-timeline__item:last-child::after {
  display: none;
}

.friendly-timeline__item > span {
  position: relative;
  z-index: 1;
  color: #c1c2c9;
}

.friendly-timeline__item.is-current > span {
  color: var(--coral);
}

.friendly-timeline time {
  color: var(--muted);
  font-size: 0.68rem;
}

.friendly-timeline strong {
  font-size: 0.86rem;
}

.friendly-timeline p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.activity-note {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 42px;
  border-radius: 49% 51% 45% 55%;
  background: #fff;
  box-shadow: var(--shadow-small);
  text-align: center;
}

.activity-note > span {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 20px;
  color: #fff;
  background: var(--coral);
  font-size: 1.5rem;
}

.activity-note small,
.activity-note strong {
  display: block;
}

.activity-note small {
  color: var(--muted);
  font-size: 0.67rem;
}

.activity-note strong {
  margin: 6px 0;
  color: var(--coral-deep);
  font-size: 2.3rem;
}

.activity-note p {
  color: var(--muted);
  font-size: 0.72rem;
}

.activity-note button {
  padding: 0 0 5px;
  border: 0;
  border-bottom: 2px solid var(--coral);
  color: var(--coral-deep);
  background: none;
  font-size: 0.73rem;
  font-weight: 800;
}

.facts-section {
  padding: 88px 0;
  color: #fff;
  background: var(--ink-deep);
}

.facts-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 75px;
}

.facts-section .eyebrow {
  color: var(--lemon);
}

.facts-section .eyebrow::before {
  background: var(--lemon);
}

.facts-section h2 {
  font-size: 1.9rem;
}

.facts-section p {
  color: #b9bed0;
}

.facts-section details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.facts-section summary {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 800;
}

.facts-section dl {
  margin: 0;
  padding: 0 24px 18px;
}

.facts-section dl > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.74rem;
}

.facts-section dt {
  color: #9fa6bd;
}

.facts-section dd {
  margin: 0;
  font-weight: 700;
}

.facts-section details > p {
  margin: 0;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.65rem;
}

.guide-hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 110px;
  background: var(--soft-sky);
  text-align: center;
}

.guide-hero__inner {
  position: relative;
  z-index: 1;
}

.guide-hero .breadcrumbs {
  text-align: left;
}

.guide-hero .ai-avatar--large {
  display: flex;
  margin: 0 auto 15px;
}

.guide-hero h1 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.2vw, 2.45rem);
}

.guide-hero > p,
.guide-hero__inner > p {
  color: var(--muted);
}

.guide-hero__orb {
  position: absolute;
  border-radius: 46% 54% 55% 45%;
}

.guide-hero__orb--one {
  top: 50px;
  left: 6%;
  width: 190px;
  height: 190px;
  background: var(--soft-coral);
  transform: rotate(15deg);
}

.guide-hero__orb--two {
  right: 4%;
  bottom: -70px;
  width: 260px;
  height: 260px;
  background: var(--soft-lemon);
  transform: rotate(-17deg);
}

.guide-workspace {
  padding: 0 0 105px;
  background: var(--cream);
}

.guide-modes {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: -44px auto 28px;
}

.guide-mode {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 16px 18px;
  border: 2px solid transparent;
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow-small);
  text-align: left;
}

.guide-mode > span {
  display: flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 800;
}

.guide-mode--find > span {
  color: var(--sky-deep);
  background: var(--soft-sky);
}

.guide-mode--create > span {
  color: var(--coral-deep);
  background: var(--soft-coral);
}

.guide-mode--learn > span {
  color: var(--mint-deep);
  background: var(--soft-mint);
}

.guide-mode strong,
.guide-mode small {
  display: block;
}

.guide-mode strong {
  font-size: 0.8rem;
}

.guide-mode small {
  color: var(--muted);
  font-size: 0.6rem;
}

.guide-mode > i {
  display: none;
  color: var(--coral);
  font-style: normal;
}

.guide-mode.is-active {
  border-color: var(--coral);
}

.guide-mode.is-active > i {
  display: block;
}

.conversation-panel {
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(39, 49, 77, 0.09);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.conversation-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.conversation-panel__head > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.conversation-panel__head p,
.conversation-panel__head strong,
.conversation-panel__head small {
  display: block;
  margin: 0;
}

.conversation-panel__head strong {
  font-size: 0.8rem;
}

.conversation-panel__head small {
  color: var(--muted);
  font-size: 0.59rem;
}

.prototype-chip {
  padding: 6px 10px;
  color: var(--sky-deep);
  background: var(--soft-sky);
  font-size: 0.62rem;
}

.conversation-panel form,
.guide-empty,
.guide-result {
  padding: 30px clamp(24px, 6vw, 70px);
}

.conversation-panel form {
  border-bottom: 1px solid var(--line);
}

.conversation-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 6px 0 18px;
}

.speech-bubble {
  max-width: 620px;
  padding: 15px 18px;
  border-radius: 7px 20px 20px 20px;
  background: var(--soft-sky);
}

.speech-bubble strong,
.speech-bubble label,
.speech-bubble small {
  display: block;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
}

.speech-bubble p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.67rem;
}

.answer-field {
  max-width: 570px;
  margin: 0 0 24px 54px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--cream);
}

.answer-field--wide {
  max-width: none;
}

.answer-field > label {
  display: block;
  margin: 0 0 8px 3px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
}

.answer-field textarea {
  width: 100%;
  resize: vertical;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
}

.guide-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 30px 0 0 54px;
}

.guide-submit small {
  color: var(--muted);
  font-size: 0.62rem;
}

.guide-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  background: #fff;
}

.guide-empty > span {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--coral);
  background: var(--soft-coral);
}

.guide-empty strong,
.guide-empty p {
  display: block;
  margin: 0;
}

.guide-empty strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.guide-empty p {
  font-size: 0.65rem;
}

.guide-result {
  background: #fff;
}

.speech-bubble--result {
  max-width: 700px;
  background: var(--soft-mint);
}

.speech-bubble--result small {
  color: var(--mint-deep);
  font-size: 0.59rem;
}

.speech-bubble--result strong {
  margin: 3px 0 8px;
  font-size: 1rem;
}

.match-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px 54px;
}

.match-card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border-radius: 17px;
}

.match-card__rank {
  display: flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
}

.match-card .future-bookmark {
  width: 44px;
  height: 58px;
  padding-top: 11px;
  font-size: 0.8rem;
}

.match-card small,
.match-card strong,
.match-card p {
  display: block;
  margin: 0;
}

.match-card small {
  color: var(--muted);
  font-size: 0.58rem;
}

.match-card strong {
  font-size: 0.76rem;
}

.match-card p {
  color: var(--muted);
  font-size: 0.58rem;
}

.match-card > a {
  display: flex;
  width: 37px;
  height: 37px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  font-weight: 800;
}

.result-sources {
  margin: 20px 0 22px 54px;
}

.result-sources > strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.75rem;
}

.guide-result > .button {
  margin-left: 54px;
}

.guide-boundary {
  margin: 20px 0 0 54px;
  padding: 13px 15px;
  border-radius: 12px;
  color: #756f71;
  background: #f7f4f2;
  font-size: 0.62rem;
}

.human-help {
  padding: 86px 0;
  background: #fff;
}

.human-help__grid {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 42px;
}

.human-help__photo {
  width: 210px;
  height: 138px;
  overflow: hidden;
  margin: 0;
  border: 5px solid #fff;
  border-radius: 45% 55% 48% 52%;
  box-shadow: var(--shadow-small);
}

.human-help__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.human-help h2 {
  margin: 8px 0 6px;
  font-size: 1.8rem;
}

.human-help p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.not-found {
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding: 90px 0;
  background: var(--cream);
  text-align: center;
}

.not-found span {
  display: block;
  color: var(--sky);
  font-size: 3rem;
}

.not-found p {
  color: var(--muted);
}

.site-footer {
  padding: 72px 0 24px;
  color: #fff;
  background: var(--ink-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  padding-bottom: 54px;
}

.brand--footer .brand__type {
  color: #fff;
}

.footer-brand > p {
  margin-top: 22px;
  color: #b7bdcf;
  font-size: 0.78rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-links > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-links p {
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-links a,
.footer-links span,
.text-button {
  padding: 0;
  border: 0;
  color: #aeb5ca;
  background: none;
  text-align: left;
  font-size: 0.67rem;
}

.footer-links a:hover,
.text-button:hover {
  color: #fff;
}

.footer-boundary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #8e96ad;
  font-size: 0.58rem;
}

.footer-boundary > p {
  margin: 0;
  text-align: right;
}

.private-operation {
  display: flex;
  align-items: center;
  gap: 10px;
}

.private-operation span {
  flex: 0 0 auto;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #d4d8e4;
}

.private-operation p {
  margin: 0;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  display: flex;
  width: min(390px, calc(100% - 44px));
  align-items: center;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(39, 49, 77, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast > span {
  display: flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--coral);
  background: var(--soft-coral);
}

.toast p,
.toast strong,
.toast small {
  display: block;
  margin: 0;
}

.toast strong {
  font-size: 0.76rem;
}

.toast small {
  color: var(--muted);
  font-size: 0.62rem;
}

.reveal {
  animation: reveal-up 0.65s ease both;
}

.reveal--delay {
  animation-delay: 0.12s;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .site-header__inner {
    gap: 20px;
  }

  .primary-nav {
    gap: 16px;
  }

  .header-learn {
    display: none;
  }

  .consumer-hero__grid,
  .area-hero__grid,
  .story-hero__grid {
    gap: 52px;
  }

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

  .bookmark-card {
    min-height: 265px;
  }

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

  .wish-grid > .wish-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 560px;
    justify-self: center;
  }

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

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

  .quick-facts__grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .support-grid,
  .activity-grid {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 34px, 680px);
  }

  .system-notice__inner {
    justify-content: flex-start;
    min-height: 48px;
  }

  .system-notice__inner p {
    flex: 1;
    line-height: 1.35;
  }

  .system-notice a {
    display: none;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .primary-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .consumer-hero {
    padding-top: 70px;
  }

  .consumer-hero__grid,
  .area-hero__grid,
  .story-hero__grid,
  .region-invite__grid,
  .trust-promise__grid,
  .sources-grid,
  .region-story-grid,
  .support-grid,
  .activity-grid,
  .facts-grid,
  .human-help__grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .consumer-hero__grid,
  .area-hero__grid,
  .story-hero__grid {
    gap: 55px;
  }

  .hero-guide {
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-reassurance {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 65px;
  }

  .region-invite__grid,
  .trust-promise__grid,
  .sources-grid,
  .region-story-grid {
    gap: 54px;
  }

  .section {
    padding: 82px 0;
  }

  .wish-grid,
  .wish-grid--two {
    grid-template-columns: 1fr;
  }

  .wish-grid > .wish-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
  }

  .simple-steps {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .simple-steps li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -33px;
    content: "↓";
    transform: translateX(50%);
  }

  .region-map-card,
  .area-compass {
    width: min(100%, 460px);
    margin: 0 auto;
  }

  .support-box {
    position: static;
  }

  .journey-line {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin-inline: auto;
  }

  .journey-line > i {
    text-align: center;
    transform: rotate(90deg);
  }

  .activity-note {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .guide-modes {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin-top: -50px;
  }

  .human-help__grid {
    justify-items: center;
    gap: 22px;
    text-align: center;
  }

  .footer-main {
    gap: 45px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .shell {
    width: calc(100% - 28px);
  }

  .system-notice__inner {
    gap: 8px;
  }

  .system-notice {
    font-size: 0.7rem;
  }

  .system-notice__icon {
    height: 20px;
    padding-inline: 6px;
    font-size: 0.56rem;
  }

  .site-header__inner {
    min-height: 62px;
  }

  .launch-notice__inner {
    min-height: 44px;
    align-items: flex-start;
    padding-block: 8px;
    line-height: 1.45;
  }

  .brand__mark {
    width: 29px;
    height: 29px;
  }

  .brand__mark i,
  .brand__mark b {
    width: 15px;
    height: 15px;
  }

  .brand__type {
    font-size: 1rem;
  }

  .header-ai {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.73rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.48rem;
  }

  .section {
    padding: 68px 0;
  }

  .consumer-hero {
    min-height: auto;
    padding: 55px 0 28px;
  }

  .consumer-hero__copy h1 {
    font-size: clamp(1.7rem, 7.3vw, 1.9rem);
    letter-spacing: -0.035em;
  }

  .consumer-hero__copy > p {
    font-size: 0.94rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
  }

  .quick-interests {
    align-items: flex-start;
  }

  .quick-interests > span {
    width: 100%;
  }

  .hero-guide {
    padding: 20px;
    border-radius: 23px;
    transform: none;
  }

  .hero-guide__photo {
    margin: -20px -20px 20px;
    border-radius: 23px 23px 16px 16px;
  }

  .hero-guide::before {
    right: -9px;
    bottom: -9px;
    border-radius: 23px;
  }

  .hero-guide__top {
    grid-template-columns: auto 1fr;
  }

  .online-dot {
    grid-column: 2;
  }

  .hero-reassurance {
    margin-top: 52px;
  }

  .bookmark-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 35px;
  }

  .bookmark-card {
    min-height: 238px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .sample-note {
    margin-bottom: 0;
  }

  .wish-card__visual {
    min-height: 190px;
    padding: 22px;
  }

  .wish-card__body {
    padding: 22px;
  }

  .region-invite,
  .trust-promise,
  .region-story-section,
  .journey-section,
  .facts-section,
  .human-help {
    padding: 68px 0;
  }

  .region-map-card {
    min-height: 315px;
  }

  .region-map-card__center {
    width: 155px;
    height: 155px;
  }

  .region-map-card__center strong {
    font-size: 2rem;
  }

  .home-region-select {
    padding: 14px;
  }

  .simple-steps {
    margin-top: 40px;
  }

  .promise-list > div {
    padding: 15px;
  }

  .area-hero,
  .story-hero,
  .guide-hero {
    padding-top: 26px;
  }

  .breadcrumbs {
    margin-bottom: 38px;
  }

  .area-hero {
    padding-bottom: 68px;
  }

  .area-hero h1,
  .story-hero__copy h1 {
    font-size: clamp(1.5rem, 6.7vw, 1.72rem);
  }

  .guide-hero h1 {
    font-size: clamp(1.52rem, 6.6vw, 1.68rem);
  }

  .support-box h2,
  .facts-section h2,
  .human-help h2 {
    font-size: 1.48rem;
  }

  .area-compass {
    min-height: 310px;
  }

  .area-compass__center {
    width: 100px;
    height: 100px;
    font-size: 1.35rem;
  }

  .area-compass > div {
    min-width: 100px;
    min-height: 63px;
  }

  .municipality-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 16px;
  }

  .municipality-strip__inner > div {
    width: 100%;
  }

  .friendly-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .region-story-visual {
    min-height: 310px;
  }

  .region-story-visual .future-bookmark:nth-child(1) {
    top: 36px;
    left: 34px;
  }

  .region-story-visual .future-bookmark:nth-child(2) {
    top: 28px;
    right: 38px;
  }

  .partner-bubbles {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .partner-bubbles > div {
    min-height: 150px;
    padding: 16px 10px;
  }

  .story-visual-card {
    min-height: 410px;
    padding: 38px 30px;
  }

  .quick-facts__grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-facts__grid > div {
    padding: 16px 10px;
  }

  .quick-facts__grid > div:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .use-cards {
    grid-template-columns: 1fr;
  }

  .support-box {
    padding: 24px 20px;
  }

  .amount-options {
    gap: 5px;
  }

  .amount-button {
    font-size: 0.61rem;
  }

  .journey-line {
    max-width: 280px;
  }

  .journey-line > div {
    min-height: 165px;
  }

  .friendly-timeline__item {
    grid-template-columns: 18px 70px 1fr;
    gap: 9px;
  }

  .activity-note {
    min-height: 330px;
    padding: 32px;
  }

  .facts-section dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .guide-hero {
    padding-bottom: 92px;
  }

  .guide-modes {
    margin-top: -42px;
  }

  .guide-mode {
    min-height: 80px;
  }

  .conversation-panel {
    border-radius: 22px;
  }

  .conversation-panel__head {
    padding: 14px;
  }

  .conversation-panel form,
  .guide-empty,
  .guide-result {
    padding: 24px 16px;
  }

  .answer-field,
  .guide-submit,
  .match-list,
  .result-sources,
  .guide-result > .button,
  .guide-boundary {
    margin-left: 0;
  }

  .answer-field {
    max-width: none;
  }

  .guide-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .guide-empty {
    align-items: flex-start;
  }

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

  .match-card .future-bookmark {
    display: none;
  }

  .human-help__photo {
    width: min(100%, 300px);
    height: 188px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-boundary {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-boundary > p {
    text-align: left;
  }

  .private-operation {
    align-items: flex-start;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
}

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

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