:root {
  --background: #f8f5ed;
  --surface: #fffdf8;
  --foreground: #102f4f;
  --ink: #133552;
  --muted: #617078;
  --line: rgba(16, 47, 79, 0.13);
  --turquoise: #1b9ca3;
  --green: #547957;
  --coral: #bd5b45;
  --gold: #c99a4a;
  --welfare: #e56352;
  --housing: #b86b47;
  --technology: #2878a9;
  --life: #bf8a4b;
  --tourism: #168d97;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family:
    var(--font-geist-sans), "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Main visual concept — Ryukyu indigo */
.mv-page {
  --ryukyu-ai: #123b67;
  --ryukyu-ai-deep: #08294d;
  --ryukyu-ai-light: #eaf2f5;
  min-height: 100svh;
  color: var(--ryukyu-ai-deep);
  background: #f4f8f9;
}

.mv {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #f4f8f9;
  isolation: isolate;
}

.mv-background {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.01);
}

.mv-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(246, 250, 251, 0.99) 0%,
      rgba(246, 250, 251, 0.96) 26%,
      rgba(246, 250, 251, 0.72) 43%,
      rgba(8, 41, 77, 0.05) 63%,
      rgba(8, 41, 77, 0.2) 100%
    ),
    linear-gradient(180deg, rgba(246, 250, 251, 0.28), transparent 34%);
}

.mv::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: clamp(7px, 0.7vw, 11px);
  height: 100%;
  background: var(--ryukyu-ai);
  content: "";
}

.mv::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 18%;
  width: 1px;
  height: 16%;
  background: rgba(255, 255, 255, 0.62);
  content: "";
}

.mv-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 104px;
  padding: 0 clamp(30px, 4.4vw, 74px);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(18, 59, 103, 0.12);
}

.mv-header-brand {
  display: inline-flex;
  width: clamp(174px, 15vw, 224px);
  align-items: center;
  line-height: 0;
}

.mv-header-brand img {
  width: 100%;
  height: auto;
}

.mv-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 38px);
  color: var(--ryukyu-ai-deep);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.07em;
}

.mv-nav > a:not(.mv-contact) {
  position: relative;
  padding: 14px 0;
}

.mv-nav > a:not(.mv-contact)::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--ryukyu-ai);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.mv-nav > a:hover::after,
.mv-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mv-contact {
  display: inline-flex;
  min-width: 146px;
  height: 46px;
  padding: 0 19px 0 22px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  background: var(--ryukyu-ai);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.mv-contact:hover,
.mv-contact:focus-visible {
  background: var(--ryukyu-ai-deep);
  transform: translateY(-2px);
}

.mv-menu {
  display: none;
}

.mv-content {
  position: relative;
  z-index: 2;
  width: min(48vw, 670px);
  padding: clamp(154px, 17vh, 190px) 0 150px clamp(36px, 6.8vw, 112px);
}

.mv-kicker {
  display: flex;
  margin: 0 0 clamp(24px, 4.2vh, 40px);
  align-items: center;
  gap: 18px;
  color: var(--ryukyu-ai);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.28em;
}

.mv-kicker i {
  width: 52px;
  height: 1px;
  background: currentColor;
}

.mv-main-logo {
  width: min(42vw, 575px);
  margin-left: -5px;
  line-height: 0;
}

.mv-main-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.mv-content h1 {
  margin: clamp(36px, 5vh, 52px) 0 0;
  color: var(--ryukyu-ai-deep);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(42px, 4.35vw, 68px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.42;
}

.mv-content h1 em {
  color: var(--ryukyu-ai);
  font-style: normal;
}

.mv-lead {
  margin: clamp(22px, 3.4vh, 32px) 0 0;
  color: #294864;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 530;
  letter-spacing: 0.07em;
  line-height: 2;
}

.mv-action {
  display: inline-flex;
  width: 210px;
  height: 56px;
  margin-top: clamp(24px, 3.6vh, 36px);
  padding: 0 21px 0 24px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(18, 59, 103, 0.55);
  color: var(--ryukyu-ai);
  background: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.2em;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.mv-action i {
  font-size: 18px;
  font-style: normal;
  letter-spacing: 0;
}

.mv-action:hover,
.mv-action:focus-visible {
  color: #fff;
  background: var(--ryukyu-ai);
  transform: translateY(-2px);
}

.mv-fields {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 92px;
  padding: 0 clamp(30px, 4.4vw, 74px);
  grid-template-columns: minmax(190px, 0.75fr) 2.25fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(18, 59, 103, 0.15);
  background: rgba(246, 250, 251, 0.8);
  backdrop-filter: blur(18px);
}

.mv-fields-label {
  color: var(--ryukyu-ai);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.22em;
}

.mv-fields > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mv-fields > div > span {
  display: flex;
  min-height: 92px;
  padding: 0 12px;
  align-items: center;
  gap: 9px;
  border-left: 1px solid rgba(18, 59, 103, 0.11);
  color: var(--ryukyu-ai-deep);
  font-size: clamp(9px, 0.75vw, 11px);
  font-weight: 720;
  letter-spacing: 0.11em;
}

.mv-fields small {
  color: rgba(18, 59, 103, 0.55);
  font-size: 8px;
  font-weight: 700;
}

.mv-side-note {
  position: absolute;
  z-index: 4;
  top: 52%;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.mv-side-note i {
  width: 34px;
  height: 1px;
  background: currentColor;
}

@media (max-width: 980px) {
  .mv-nav {
    display: none;
  }

  .mv-menu {
    display: block;
  }

  .mv-menu summary {
    display: flex;
    width: 76px;
    height: 40px;
    align-items: center;
    justify-content: space-between;
    color: var(--ryukyu-ai-deep);
    cursor: pointer;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.14em;
    list-style: none;
  }

  .mv-menu summary::-webkit-details-marker {
    display: none;
  }

  .mv-menu summary i,
  .mv-menu summary i::before {
    display: block;
    width: 21px;
    height: 1px;
    background: currentColor;
    content: "";
  }

  .mv-menu summary i::before {
    transform: translateY(6px);
  }

  .mv-menu nav {
    position: absolute;
    top: 82px;
    right: 24px;
    display: grid;
    width: min(320px, calc(100vw - 48px));
    padding: 18px 22px;
    border: 1px solid rgba(18, 59, 103, 0.13);
    background: rgba(248, 251, 252, 0.97);
    box-shadow: 0 20px 50px rgba(8, 41, 77, 0.12);
  }

  .mv-menu nav a {
    padding: 13px 2px;
    border-bottom: 1px solid rgba(18, 59, 103, 0.1);
    font-size: 13px;
  }

  .mv-content {
    width: min(62vw, 610px);
  }

  .mv-main-logo {
    width: min(52vw, 520px);
  }

  .mv-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mv-fields-label {
    display: none;
  }
}

@media (max-width: 700px) {
  .mv {
    min-height: 100svh;
  }

  .mv-background {
    object-position: 68% center;
  }

  .mv-wash {
    background:
      linear-gradient(
        180deg,
        rgba(246, 250, 251, 0.98) 0%,
        rgba(246, 250, 251, 0.92) 42%,
        rgba(8, 41, 77, 0.17) 70%,
        rgba(8, 41, 77, 0.35) 100%
      );
  }

  .mv-header {
    height: 82px;
    padding: 0 23px 0 30px;
  }

  .mv-header-brand {
    width: 170px;
  }

  .mv-content {
    width: 100%;
    padding: 132px 28px 160px 30px;
  }

  .mv-kicker {
    margin-bottom: 26px;
  }

  .mv-main-logo {
    width: min(88vw, 470px);
    margin-left: -3px;
  }

  .mv-content h1 {
    margin-top: 34px;
    font-size: clamp(36px, 10.5vw, 49px);
    line-height: 1.44;
  }

  .mv-lead {
    max-width: 430px;
    font-size: 13px;
    line-height: 1.9;
  }

  .mv-action {
    width: 184px;
    height: 52px;
    margin-top: 25px;
  }

  .mv-fields {
    min-height: 76px;
    padding: 0 20px;
    overflow-x: auto;
    background: rgba(246, 250, 251, 0.86);
  }

  .mv-fields > div {
    width: max-content;
    grid-template-columns: repeat(5, 128px);
  }

  .mv-fields > div > span {
    min-height: 76px;
    padding: 0 13px;
    font-size: 9px;
  }

  .mv-side-note {
    display: none;
  }
}

/* Future Okinawa main visual */
.mv-future-page {
  --ryukyu-ai: #154977;
  --ryukyu-ai-deep: #071f3d;
  --sky-light: #a9dcf4;
  background: var(--ryukyu-ai-deep);
}

.mv-future {
  color: #fff;
  background: var(--ryukyu-ai-deep);
}

.mv-future .mv-background {
  object-position: 58% 52%;
  transform: scale(1.02);
  animation: mv-camera-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.mv-future .mv-wash {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(5, 28, 56, 0.94) 0%,
      rgba(7, 35, 67, 0.82) 28%,
      rgba(8, 41, 77, 0.45) 47%,
      rgba(8, 41, 77, 0.08) 70%
    ),
    linear-gradient(
      180deg,
      rgba(4, 27, 53, 0.52) 0%,
      rgba(4, 27, 53, 0.03) 40%,
      rgba(4, 27, 53, 0.12) 72%,
      rgba(4, 27, 53, 0.66) 100%
    );
}

.mv-future::before {
  width: 7px;
  background: linear-gradient(180deg, #72c5e8, var(--ryukyu-ai) 48%, #071f3d);
}

.mv-future::after {
  top: 0;
  right: 19%;
  height: 17%;
  background: rgba(255, 255, 255, 0.5);
}

.mv-future .mv-header {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  animation: mv-fade-down 0.9s 0.08s ease both;
}

.mv-future .mv-header-brand img {
  filter: brightness(0) invert(1);
}

.mv-future .mv-nav {
  color: #fff;
  text-shadow: 0 1px 18px rgba(3, 24, 48, 0.28);
}

.mv-future .mv-nav > a:not(.mv-contact)::after {
  background: #fff;
}

.mv-future .mv-contact {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(7, 31, 61, 0.48);
  backdrop-filter: blur(14px);
}

.mv-future .mv-contact:hover,
.mv-future .mv-contact:focus-visible {
  background: #fff;
  color: var(--ryukyu-ai-deep);
}

.mv-future .mv-content {
  width: min(50vw, 680px);
  padding-top: clamp(190px, 24vh, 250px);
  padding-bottom: 140px;
  animation: mv-content-reveal 1.05s 0.2s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.mv-future .mv-kicker {
  margin-bottom: clamp(28px, 4vh, 42px);
  color: var(--sky-light);
}

.mv-future .mv-content h1 {
  margin-top: 0;
  color: #fff;
  font-size: clamp(48px, 5.3vw, 82px);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.34;
  text-shadow: 0 5px 34px rgba(2, 20, 42, 0.28);
}

.mv-future .mv-content h1 em {
  color: #fff;
}

.mv-future .mv-lead {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 18px rgba(2, 20, 42, 0.3);
}

.mv-future .mv-action {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.mv-future .mv-action:hover,
.mv-future .mv-action:focus-visible {
  color: var(--ryukyu-ai-deep);
  background: #fff;
}

.mv-future .mv-fields {
  border-top-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(5, 28, 56, 0.84);
  backdrop-filter: blur(20px);
  animation: mv-fade-up 0.9s 0.55s ease both;
}

.mv-future .mv-fields-label,
.mv-future .mv-fields > div > span {
  color: #fff;
}

.mv-future .mv-fields > div > span {
  border-left-color: rgba(255, 255, 255, 0.13);
}

.mv-future .mv-fields small {
  color: rgba(169, 220, 244, 0.74);
}

.mv-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.mv-cloud {
  position: absolute;
  display: block;
  width: 32vw;
  height: 12vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(34px);
  opacity: 0.5;
  will-change: transform;
}

.mv-cloud-one {
  top: 12%;
  left: 26%;
  animation: mv-cloud-drift-one 25s ease-in-out infinite alternate;
}

.mv-cloud-two {
  top: 31%;
  right: -12%;
  width: 26vw;
  opacity: 0.28;
  animation: mv-cloud-drift-two 31s ease-in-out infinite alternate;
}

.mv-horizon-glow {
  position: absolute;
  top: 46%;
  right: 3%;
  width: 58vw;
  height: 16vw;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(174, 230, 250, 0.24), transparent 67%);
  filter: blur(16px);
  animation: mv-horizon-pulse 7s ease-in-out infinite;
}

.mv-flight-line {
  position: absolute;
  display: block;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  opacity: 0;
  transform: rotate(-5deg);
}

.mv-flight-line-one {
  top: 24%;
  right: 6%;
  width: 180px;
  animation: mv-flight-trail 5.4s 1.2s ease-in-out infinite;
}

.mv-flight-line-two {
  top: 40%;
  right: 24%;
  width: 110px;
  animation: mv-flight-trail 6.8s 3.1s ease-in-out infinite;
}

.mv-future-index {
  position: absolute;
  z-index: 3;
  top: 142px;
  right: clamp(40px, 5vw, 82px);
  display: grid;
  width: 200px;
  padding: 20px 22px 18px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(6, 31, 61, 0.16);
  backdrop-filter: blur(12px);
  animation: mv-fade-down 1s 0.45s ease both;
}

.mv-future-index > span,
.mv-future-index > small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.mv-future-index strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.mv-future-index i {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.mv-future-index small {
  grid-column: 1 / span 2;
  color: rgba(255, 255, 255, 0.72);
}

.mv-scroll-note {
  position: absolute;
  z-index: 4;
  right: 25px;
  bottom: 118px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.mv-scroll-note i {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.mv-scroll-note i::after {
  position: absolute;
  inset: 0;
  background: #fff;
  content: "";
  animation: mv-scroll-line 2.2s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes mv-camera-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.085) translate3d(-0.7%, -0.4%, 0);
  }
}

@keyframes mv-cloud-drift-one {
  from {
    transform: translate3d(-7%, 0, 0) scale(0.95);
  }
  to {
    transform: translate3d(13%, 8%, 0) scale(1.14);
  }
}

@keyframes mv-cloud-drift-two {
  from {
    transform: translate3d(8%, -2%, 0);
  }
  to {
    transform: translate3d(-18%, 4%, 0);
  }
}

@keyframes mv-horizon-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.08);
  }
}

@keyframes mv-flight-trail {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: rotate(-5deg) translateX(-40px) scaleX(0.2);
  }
  42% {
    opacity: 0.8;
  }
  70% {
    opacity: 0;
    transform: rotate(-5deg) translateX(38px) scaleX(1);
  }
}

@keyframes mv-content-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mv-fade-down {
  from {
    opacity: 0;
    transform: translate3d(0, -16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mv-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mv-scroll-line {
  0% {
    transform: translateX(-100%);
  }
  55%,
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 980px) {
  .mv-future .mv-menu summary {
    color: #fff;
  }

  .mv-future .mv-menu nav {
    color: var(--ryukyu-ai-deep);
  }

  .mv-future .mv-content {
    width: min(68vw, 630px);
  }

  .mv-future-index {
    display: none;
  }
}

@media (max-width: 700px) {
  .mv-future .mv-background {
    object-position: 68% center;
  }

  .mv-future .mv-wash {
    background:
      linear-gradient(
        180deg,
        rgba(5, 28, 56, 0.78) 0%,
        rgba(5, 28, 56, 0.42) 34%,
        rgba(5, 28, 56, 0.48) 66%,
        rgba(5, 28, 56, 0.86) 100%
      ),
      linear-gradient(90deg, rgba(5, 28, 56, 0.65), transparent 80%);
  }

  .mv-future .mv-content {
    width: 100%;
    padding-top: 148px;
    padding-bottom: 150px;
  }

  .mv-future .mv-content h1 {
    font-size: clamp(39px, 11.3vw, 54px);
    line-height: 1.38;
  }

  .mv-future .mv-lead {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.93);
  }

  .mv-future .mv-fields {
    background: rgba(5, 28, 56, 0.88);
  }

  .mv-scroll-note,
  .mv-flight-line-two {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-future .mv-background,
  .mv-future .mv-header,
  .mv-future .mv-content,
  .mv-future .mv-fields,
  .mv-cloud,
  .mv-horizon-glow,
  .mv-flight-line,
  .mv-future-index,
  .mv-scroll-note i::after {
    animation: none !important;
  }
}

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

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

::selection {
  color: #fff;
  background: var(--turquoise);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 94px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4.4vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-wrap {
  display: block;
  width: clamp(190px, 18vw, 255px);
  line-height: 0;
}

.brand-logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.brand-symbol {
  position: relative;
  display: grid;
  width: 44px;
  height: 54px;
  place-items: center;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.18em;
}

.brand-symbol::after {
  position: absolute;
  right: -2px;
  bottom: 7px;
  width: 22px;
  height: 22px;
  border: 3px solid var(--turquoise);
  border-radius: 50%;
  content: "";
}

.brand-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
  color: #1e303a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

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

.desktop-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--turquoise);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

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

.nav-contact {
  display: inline-grid;
  min-width: 112px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  color: #fff;
  background: var(--ink);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  padding: 142px clamp(24px, 4.4vw, 72px) 144px;
  overflow: hidden;
  align-items: center;
  background:
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.9) 0 14%, transparent 40%),
    linear-gradient(118deg, #fbf8f0 0%, #f8f5ed 55%, #f1eee5 100%);
}

.hero::before {
  position: absolute;
  top: -22vw;
  right: -18vw;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(27, 156, 163, 0.12);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  bottom: -22vw;
  left: 35%;
  width: 38vw;
  height: 38vw;
  border: 1px solid rgba(189, 91, 69, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(48%, 650px);
  padding-bottom: 44px;
}

.eyebrow {
  display: flex;
  margin: 0 0 28px;
  align-items: center;
  gap: 14px;
  color: var(--turquoise);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.eyebrow span + span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow span + span::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.2;
}

.hero h1 em {
  position: relative;
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--turquoise), #68b981 55%, var(--coral));
  content: "";
  opacity: 0.72;
  transform: scaleX(0.76);
  transform-origin: left;
}

.hero-lead {
  margin: 32px 0 0;
  color: #2b3d45;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 25px 0 28px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(16, 47, 79, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 38px rgba(16, 47, 79, 0.26);
}

.button-secondary {
  color: var(--turquoise);
  border-color: var(--turquoise);
  background: rgba(255, 255, 255, 0.45);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #fff;
  background: var(--turquoise);
}

.arrow {
  display: inline-block;
  font-size: 19px;
  line-height: 1;
  transition: transform 0.25s ease;
}

a:hover > .arrow,
a:focus-visible > .arrow,
a:hover .arrow,
a:focus-visible .arrow {
  transform: translateX(4px);
}

.hero-visual {
  position: absolute;
  z-index: 2;
  top: 92px;
  right: -1%;
  bottom: 78px;
  width: 62%;
  pointer-events: none;
}

.hero-visual::after {
  position: absolute;
  inset: 5% 4% 5% 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 46%, #f8f5ed 82%);
  content: "";
}

.hero-visual img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 52%;
  display: block;
  width: 106%;
  height: 106%;
  object-fit: contain;
  filter: saturate(0.92) contrast(0.98);
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(27, 156, 163, 0.35);
  border-radius: 50%;
  animation: orbit-pulse 7s ease-in-out infinite;
}

.orbit-one {
  top: 14%;
  right: 6%;
  width: 58%;
  aspect-ratio: 1;
}

.orbit-two {
  bottom: 2%;
  left: 18%;
  width: 47%;
  aspect-ratio: 1;
  border-color: rgba(189, 91, 69, 0.26);
  animation-delay: -3.5s;
}

.visual-label {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  height: 28px;
  padding: 0 12px;
  align-items: center;
  border: 1px solid rgba(16, 47, 79, 0.12);
  border-radius: 999px;
  color: rgba(16, 47, 79, 0.7);
  background: rgba(255, 253, 248, 0.72);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.label-region {
  top: 19%;
  left: 22%;
}

.label-people {
  top: 49%;
  right: 8%;
}

.label-future {
  right: 26%;
  bottom: 18%;
}

.domain-rail {
  position: absolute;
  z-index: 8;
  right: clamp(24px, 4.4vw, 72px);
  bottom: 28px;
  left: clamp(24px, 4.4vw, 72px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid rgba(16, 47, 79, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 46px rgba(36, 57, 66, 0.08);
  backdrop-filter: blur(14px);
}

.domain-tab {
  position: relative;
  display: grid;
  min-height: 94px;
  padding: 18px 18px 16px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.domain-tab + .domain-tab {
  border-left: 1px solid rgba(16, 47, 79, 0.1);
}

.domain-tab::before {
  position: absolute;
  right: 20px;
  bottom: 12px;
  left: 20px;
  height: 2px;
  border-radius: 10px;
  background: var(--domain-color);
  content: "";
  opacity: 0.8;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.domain-tab:hover,
.domain-tab:focus-visible {
  background: rgba(255, 255, 255, 0.88);
}

.domain-tab:hover::before,
.domain-tab:focus-visible::before {
  transform: scaleX(1);
}

.domain-tab[data-domain="welfare"] {
  --domain-color: var(--welfare);
}

.domain-tab[data-domain="housing"] {
  --domain-color: var(--housing);
}

.domain-tab[data-domain="technology"] {
  --domain-color: var(--technology);
}

.domain-tab[data-domain="green"] {
  --domain-color: var(--green);
}

.domain-tab[data-domain="life"] {
  --domain-color: var(--life);
}

.domain-tab[data-domain="tourism"] {
  --domain-color: var(--tourism);
}

.domain-number {
  color: var(--domain-color);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
}

.domain-tab strong,
.domain-tab small {
  display: block;
}

.domain-tab strong {
  color: var(--ink);
  font-size: clamp(10px, 0.86vw, 13px);
  font-weight: 750;
  letter-spacing: 0.11em;
}

.domain-tab small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.domain-tab > .arrow {
  color: var(--domain-color);
  font-size: 16px;
}

.scroll-cue {
  position: absolute;
  z-index: 8;
  bottom: 140px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(16, 47, 79, 0.62);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  transform: rotate(90deg);
  transform-origin: center;
}

.scroll-cue i {
  display: block;
  width: 36px;
  height: 1px;
  overflow: hidden;
  background: rgba(16, 47, 79, 0.2);
}

.scroll-cue i::after {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--turquoise);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

.first-slice-end {
  height: 1px;
  scroll-margin-top: 94px;
}

[data-domain="welfare"] {
  --domain-color: var(--welfare);
}

[data-domain="housing"] {
  --domain-color: var(--housing);
}

[data-domain="technology"] {
  --domain-color: var(--technology);
}

[data-domain="green"] {
  --domain-color: var(--green);
}

[data-domain="life"] {
  --domain-color: var(--life);
}

[data-domain="tourism"] {
  --domain-color: var(--tourism);
}

.section-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 140px clamp(24px, 6.6vw, 108px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--turquoise);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.22em;
}

.section-kicker i {
  display: block;
  width: 46px;
  height: 1px;
  background: currentColor;
}

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  margin-top: 42px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: clamp(52px, 8vw, 124px);
}

.about h2,
.section-heading h2,
.tourism-copy h2,
.principles-heading h2,
.news-title h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.3;
}

.about-copy {
  padding-top: 8px;
}

.about-copy p {
  margin: 0;
  color: #344a55;
  font-size: 16px;
  letter-spacing: 0.055em;
  line-height: 2.15;
}

.about-copy p + p {
  margin-top: 22px;
}

.about-band {
  display: grid;
  margin-top: 88px;
  grid-template-columns: 1.25fr 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--line);
}

.brand-story {
  display: grid;
  min-height: 300px;
  padding: 46px;
  grid-template-columns: 154px 1fr;
  align-items: center;
  gap: 38px;
  background:
    radial-gradient(circle at 10% 30%, rgba(27, 156, 163, 0.09), transparent 34%),
    #f8f5ed;
}

.story-mark {
  display: grid;
  width: 154px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(27, 156, 163, 0.35);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 0 0 14px rgba(27, 156, 163, 0.04),
    0 22px 50px rgba(16, 47, 79, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-style: italic;
}

.story-label {
  margin: 0 0 12px;
  color: var(--turquoise);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.brand-story h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.brand-story h3 + p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.035em;
  line-height: 1.95;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
}

.about-facts div {
  display: flex;
  min-height: 300px;
  padding: 34px 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-facts div + div {
  border-left: 1px solid var(--line);
}

.about-facts strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 3vw, 46px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.about-facts span {
  margin-top: 10px;
  color: var(--turquoise);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.about-facts small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
}

.ecosystem {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 74% 45%, rgba(27, 156, 163, 0.18), transparent 34%),
    radial-gradient(circle at 86% 14%, rgba(189, 91, 69, 0.12), transparent 24%),
    #0f3150;
}

.ecosystem::before {
  position: absolute;
  top: -320px;
  right: -260px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.ecosystem-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
}

.light-heading {
  align-self: center;
}

.light-heading .section-kicker {
  color: #73d1d0;
}

.section-heading h2 {
  margin-top: 34px;
}

.light-heading h2 {
  color: #fff;
}

.section-heading > p {
  max-width: 540px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.045em;
  line-height: 2;
}

.light-heading > p {
  color: rgba(255, 255, 255, 0.66);
}

.ecosystem-map {
  position: relative;
  width: min(100%, 650px);
  aspect-ratio: 1;
  margin-left: auto;
}

.map-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.ring-outer {
  inset: 10%;
  animation: map-rotate 42s linear infinite;
}

.ring-outer::before,
.ring-outer::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #76d3cf;
  box-shadow: 0 0 18px rgba(118, 211, 207, 0.85);
  content: "";
}

.ring-outer::before {
  top: 10%;
  left: 16%;
}

.ring-outer::after {
  right: 4%;
  bottom: 28%;
}

.ring-inner {
  inset: 26%;
  border-color: rgba(255, 255, 255, 0.09);
}

.map-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 210px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(118, 211, 207, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(118, 211, 207, 0.17), rgba(8, 37, 61, 0.86) 70%);
  box-shadow:
    0 0 80px rgba(34, 159, 164, 0.14),
    inset 0 0 40px rgba(255, 255, 255, 0.04);
  transform: translate(-50%, -50%);
}

.map-center > span {
  color: #8ce0dc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-style: italic;
  line-height: 0.9;
}

.map-center strong {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.17em;
}

.map-center small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.map-node {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 124px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(10, 40, 64, 0.88);
  box-shadow: 0 18px 40px rgba(2, 18, 30, 0.24);
  backdrop-filter: blur(10px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.map-node:hover,
.map-node:focus-visible {
  border-color: var(--domain-color);
  background: color-mix(in srgb, var(--domain-color) 20%, #0a2840);
}

.map-node > span {
  color: var(--domain-color);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.map-node strong {
  margin-top: 7px;
  font-size: 11px;
  letter-spacing: 0.09em;
}

.map-node small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}

.node-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.node-1:hover,
.node-1:focus-visible {
  transform: translateX(-50%) translateY(-5px);
}

.node-2 {
  top: 22%;
  right: 0;
}

.node-2:hover,
.node-2:focus-visible {
  transform: translate(5px, -3px);
}

.node-3 {
  right: 5%;
  bottom: 11%;
}

.node-3:hover,
.node-3:focus-visible {
  transform: translate(4px, 4px);
}

.node-4 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.node-4:hover,
.node-4:focus-visible {
  transform: translateX(-50%) translateY(5px);
}

.node-5 {
  bottom: 11%;
  left: 5%;
}

.node-5:hover,
.node-5:focus-visible {
  transform: translate(-4px, 4px);
}

.node-6 {
  top: 22%;
  left: 0;
}

.node-6:hover,
.node-6:focus-visible {
  transform: translate(-5px, -3px);
}

.ecosystem-steps {
  display: grid;
  grid-column: 1 / -1;
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ecosystem-steps > div {
  display: grid;
  padding: 30px 30px 0;
  grid-template-columns: 36px 1fr;
  align-items: baseline;
  gap: 0 12px;
}

.ecosystem-steps > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.ecosystem-steps span {
  grid-row: 1 / 3;
  color: #74d1ce;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.ecosystem-steps strong {
  font-size: 14px;
  letter-spacing: 0.05em;
}

.ecosystem-steps p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 1.8;
}

.business {
  background: #f8f5ed;
}

.business-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 20px 70px;
}

.business-heading .section-kicker {
  grid-column: 1 / -1;
}

.business-heading > p {
  align-self: end;
  margin-bottom: 10px;
}

.business-grid {
  display: grid;
  margin-top: 76px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.business-card {
  position: relative;
  min-height: 570px;
  padding: clamp(32px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.64);
  scroll-margin-top: 80px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.business-card:hover {
  background: #fffdf8;
}

.card-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--domain-color);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.card-topline span + span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.card-topline span + span::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.card-orb {
  position: absolute;
  top: 26px;
  right: 28px;
  display: grid;
  width: 168px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--domain-color) 32%, transparent);
  border-radius: 50%;
  color: var(--domain-color);
  background: color-mix(in srgb, var(--domain-color) 6%, transparent);
}

.card-orb::before,
.card-orb::after,
.card-orb i {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--domain-color) 22%, transparent);
  border-radius: 50%;
  content: "";
}

.card-orb::before {
  inset: 19px;
}

.card-orb::after {
  inset: 40px;
}

.card-orb i {
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 0;
  background: var(--domain-color);
  box-shadow: 0 0 14px color-mix(in srgb, var(--domain-color) 50%, transparent);
}

.card-orb b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-style: italic;
  font-weight: 500;
}

.card-brand-logo {
  position: absolute;
  top: 76px;
  right: clamp(28px, 4vw, 58px);
  width: min(41%, 260px);
}

.card-brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.card-jp {
  margin: 116px 0 14px;
  color: var(--domain-color);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.business-card h3 {
  max-width: 480px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 2.25vw, 36px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.48;
}

.card-summary {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.035em;
  line-height: 1.9;
}

.business-card ul {
  display: flex;
  margin: 24px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.business-card li {
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--domain-color) 24%, transparent);
  border-radius: 999px;
  color: #48606a;
  background: color-mix(in srgb, var(--domain-color) 4%, transparent);
  font-size: 9px;
  font-weight: 600;
}

.business-card > a {
  position: absolute;
  right: clamp(32px, 4vw, 58px);
  bottom: 38px;
  left: clamp(32px, 4vw, 58px);
  display: flex;
  padding-top: 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.business-card > a .arrow {
  color: var(--domain-color);
}

.tourism-focus {
  display: grid;
  min-height: 740px;
  grid-template-columns: 1.08fr 0.92fr;
  background: #e9eee8;
}

.tourism-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.tourism-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 68%, #e9eee8 100%),
    linear-gradient(0deg, rgba(8, 45, 56, 0.16), transparent 45%);
  content: "";
}

.tourism-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.9);
  transform: scale(1.05);
}

.tourism-image > span {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  left: 48px;
  color: #fff;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.tourism-copy {
  display: flex;
  padding: clamp(70px, 8vw, 126px) clamp(34px, 7vw, 100px);
  flex-direction: column;
  justify-content: center;
}

.tourism-copy h2 {
  margin-top: 32px;
}

.tourism-copy > p {
  max-width: 560px;
  margin: 28px 0 0;
  color: #40545a;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2;
}

.tourism-links {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(16, 47, 79, 0.15);
  border-left: 1px solid rgba(16, 47, 79, 0.15);
}

.tourism-links span {
  padding: 13px 14px;
  border-right: 1px solid rgba(16, 47, 79, 0.15);
  border-bottom: 1px solid rgba(16, 47, 79, 0.15);
  color: var(--ink);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.text-link {
  display: flex;
  max-width: 330px;
  margin-top: 36px;
  padding: 18px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.principles {
  background: var(--surface);
}

.principles-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.principles-heading h2 {
  margin-top: 34px;
}

.principle-grid {
  display: grid;
  margin-top: 76px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle-grid article {
  min-height: 320px;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid span {
  color: var(--turquoise);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.17em;
}

.principle-grid h3 {
  margin: 70px 0 0;
  color: var(--ink);
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.principle-grid p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.035em;
  line-height: 1.9;
}

.news {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(54px, 8vw, 120px);
  background: #f8f5ed;
}

.news-title h2 {
  margin-top: 30px;
  font-size: clamp(34px, 3vw, 48px);
}

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

.news-list article {
  display: grid;
  min-height: 112px;
  grid-template-columns: 100px 110px 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.news-list article > span {
  justify-self: start;
  padding: 5px 9px;
  border: 1px solid rgba(27, 156, 163, 0.28);
  border-radius: 999px;
  color: var(--turquoise);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.news-list p {
  color: var(--ink);
  font-size: 13px;
  font-weight: 550;
}

.news-list .arrow {
  color: var(--turquoise);
}

.news-note {
  opacity: 0.72;
}

.contact {
  position: relative;
  min-height: 590px;
  padding: 120px 24px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 24%, rgba(50, 180, 177, 0.3), transparent 27%),
    radial-gradient(circle at 22% 94%, rgba(189, 91, 69, 0.22), transparent 31%),
    #0d3453;
}

.contact-orbit {
  position: absolute;
  top: 50%;
  left: 68%;
  width: min(55vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.contact-orbit::before {
  inset: 15%;
}

.contact-orbit::after {
  inset: 31%;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner > p:first-child {
  margin: 0;
  color: #7fd8d4;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.22em;
}

.contact h2 {
  margin-top: 32px;
  color: #fff;
}

.contact-copy {
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
}

.contact-status {
  display: inline-flex;
  min-height: 54px;
  margin-top: 38px;
  padding: 0 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.site-footer {
  padding: 76px clamp(24px, 6.6vw, 108px) 26px;
  color: rgba(255, 255, 255, 0.7);
  background: #09263e;
}

.footer-top {
  display: flex;
  padding-bottom: 52px;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .brand-symbol,
.site-footer .brand-name {
  color: #fff;
}

.site-footer .brand-logo-wrap {
  width: min(290px, 42vw);
  padding: 8px 14px;
  border-radius: 10px;
  background: #fff;
}

.footer-top > p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.045em;
  line-height: 2;
}

.footer-links {
  display: grid;
  padding: 52px 0 68px;
  grid-template-columns: 1fr 0.55fr;
  gap: 70px;
}

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

.footer-links > div:last-child {
  grid-template-columns: repeat(2, 1fr);
}

.footer-links strong {
  grid-column: 1 / -1;
  margin-bottom: 7px;
  color: #75d1ce;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: grid;
  padding-top: 22px;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.footer-bottom span:nth-child(2) {
  justify-self: center;
}

.footer-bottom a {
  color: #75d1ce;
  font-weight: 700;
}

@keyframes map-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.03);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateX(-100%);
  }

  50%,
  100% {
    transform: translateX(200%);
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 19px;
    font-size: 11px;
  }

  .hero-copy {
    width: 52%;
  }

  .hero-visual {
    right: -8%;
    width: 64%;
  }

  .domain-tab {
    min-height: 84px;
    padding: 14px 10px;
    gap: 8px;
  }

  .domain-tab > .arrow {
    display: none;
  }

  .section-shell {
    padding: 116px 54px;
  }

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

  .about-facts div {
    min-height: 190px;
  }

  .ecosystem-inner {
    grid-template-columns: minmax(280px, 0.7fr) minmax(500px, 1.3fr);
    gap: 24px;
  }

  .ecosystem-map {
    width: min(100%, 570px);
  }

  .map-node {
    width: 108px;
  }

  .map-center {
    width: 184px;
  }

  .card-orb {
    width: 142px;
  }

  .business-card {
    min-height: 590px;
  }

  .tourism-copy {
    padding-right: 48px;
    padding-left: 48px;
  }

  .principle-grid article {
    padding: 34px;
  }

  .news-list article {
    grid-template-columns: 86px 102px 1fr auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    height: 76px;
    padding: 0 20px;
  }

  .brand-lockup {
    gap: 9px;
  }

  .brand-symbol {
    width: 30px;
    height: 40px;
    font-size: 39px;
  }

  .brand-symbol::after {
    right: -2px;
    bottom: 5px;
    width: 17px;
    height: 17px;
    border-width: 2px;
  }

  .brand-name {
    font-size: 11px;
    letter-spacing: 0.17em;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: flex;
    width: 76px;
    height: 38px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    list-style: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    background: rgba(255, 253, 248, 0.76);
    backdrop-filter: blur(8px);
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary i,
  .mobile-menu summary i::after {
    display: block;
    width: 13px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }

  .mobile-menu summary i::after {
    content: "";
    transform: translateY(4px);
  }

  .mobile-menu[open] summary i {
    transform: rotate(45deg);
  }

  .mobile-menu[open] summary i::after {
    transform: rotate(90deg);
  }

  .mobile-menu nav {
    position: absolute;
    top: 48px;
    right: 0;
    display: grid;
    width: min(82vw, 300px);
    padding: 18px;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.97);
    box-shadow: 0 22px 56px rgba(16, 47, 79, 0.15);
    backdrop-filter: blur(16px);
  }

  .mobile-menu nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
    color: var(--turquoise);
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 112px 20px 28px;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(41px, 12.5vw, 62px);
    letter-spacing: -0.06em;
    line-height: 1.18;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 14px;
    letter-spacing: 0.035em;
    line-height: 1.9;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button {
    min-height: 52px;
    padding: 0 20px;
    gap: 16px;
    font-size: 11px;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: calc(100% + 40px);
    height: min(116vw, 520px);
    margin: -22px -20px -20px;
  }

  .hero-visual img {
    left: 55%;
    width: 120%;
    height: 120%;
  }

  .visual-label {
    display: none;
  }

  .domain-rail {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 16px;
  }

  .domain-tab {
    min-height: 78px;
    padding: 13px 14px;
  }

  .domain-tab + .domain-tab {
    border-left: 0;
  }

  .domain-tab:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .domain-tab:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .domain-tab > .arrow {
    display: inline-block;
  }

  .domain-tab strong {
    font-size: 11px;
  }

  .scroll-cue {
    display: none;
  }

  .section-shell {
    padding: 90px 20px;
  }

  .about-grid {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about h2,
  .section-heading h2,
  .tourism-copy h2,
  .principles-heading h2,
  .news-title h2,
  .contact h2 {
    font-size: clamp(36px, 10vw, 50px);
    line-height: 1.32;
  }

  .about-copy p {
    font-size: 14px;
    line-height: 2;
  }

  .about-band {
    margin-top: 54px;
    border-radius: 20px;
  }

  .brand-story {
    min-height: auto;
    padding: 34px 24px;
    grid-template-columns: 100px 1fr;
    gap: 22px;
  }

  .story-mark {
    width: 100px;
    font-size: 27px;
  }

  .brand-story h3 {
    font-size: 21px;
    line-height: 1.55;
  }

  .brand-story h3 + p {
    font-size: 11px;
  }

  .about-facts div {
    min-height: 150px;
    padding: 24px 10px;
  }

  .ecosystem-inner {
    display: block;
  }

  .section-heading > p {
    margin-top: 24px;
    font-size: 13px;
  }

  .ecosystem-map {
    width: min(100%, 600px);
    margin: 62px auto 0;
  }

  .map-node {
    width: 106px;
  }

  .ecosystem-steps {
    margin-top: 54px;
    grid-template-columns: 1fr;
  }

  .ecosystem-steps > div {
    padding: 24px 10px;
  }

  .ecosystem-steps > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .business-heading {
    display: block;
  }

  .business-heading h2 {
    margin-top: 30px;
  }

  .business-heading > p {
    margin: 24px 0 0;
  }

  .business-grid {
    margin-top: 54px;
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: 540px;
    padding: 32px 24px;
  }

  .business-card > a {
    right: 24px;
    bottom: 30px;
    left: 24px;
  }

  .tourism-focus {
    grid-template-columns: 1fr;
  }

  .tourism-image {
    min-height: 500px;
  }

  .tourism-image::after {
    background:
      linear-gradient(0deg, #e9eee8 0%, transparent 22%),
      linear-gradient(0deg, rgba(8, 45, 56, 0.12), transparent 50%);
  }

  .tourism-copy {
    padding: 76px 20px 90px;
  }

  .principles-heading {
    display: block;
  }

  .principle-grid {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .principle-grid article {
    min-height: 260px;
    padding: 32px 26px;
  }

  .principle-grid h3 {
    margin-top: 50px;
  }

  .news {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .news-list article {
    min-height: 128px;
    grid-template-columns: 86px 1fr auto;
    gap: 8px 14px;
  }

  .news-list article > span {
    grid-column: 2;
    grid-row: 1;
  }

  .news-list p {
    grid-column: 1 / 3;
    margin: 0;
  }

  .news-list .arrow {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .contact {
    min-height: 540px;
    padding: 100px 20px;
  }

  .contact-orbit {
    left: 50%;
    width: 120vw;
  }

  .contact-copy {
    font-size: 12px;
  }

  .site-footer {
    padding: 58px 20px 24px;
  }

  .footer-top {
    display: grid;
  }

  .footer-top > p {
    font-size: 10px;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .footer-bottom span:nth-child(2) {
    display: none;
  }
}

/* Bright renewal — a warm, open group site rooted in Okinawa */

:root {
  --background: #fbfaf5;
  --surface: #fffefa;
  --ink: #102e4c;
  --foreground: #173b55;
  --muted: #64757b;
  --line: rgba(16, 46, 76, 0.12);
  --turquoise: #149dab;
  --welfare: #c72b88;
  --housing: #2e773a;
  --technology: #0b6ed0;
  --green: #359d23;
  --life: #b88943;
  --tourism: #168f9f;
}

.hero {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.96) 0 15%, transparent 39%),
    radial-gradient(circle at 94% 76%, rgba(20, 157, 171, 0.09), transparent 27%),
    linear-gradient(118deg, #fffefa 0%, #faf7ee 50%, #eef8f2 100%);
}

.hero h1 {
  max-width: 760px;
}

.hero h1 em {
  color: var(--turquoise);
}

.about,
.principles,
.news,
.join {
  background: var(--surface);
}

.ecosystem {
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 16%, rgba(53, 157, 35, 0.1), transparent 25%),
    radial-gradient(circle at 6% 82%, rgba(199, 43, 136, 0.07), transparent 24%),
    linear-gradient(135deg, #f3faf5 0%, #fffdf7 54%, #eef8fa 100%);
}

.ecosystem::before {
  border-color: rgba(20, 157, 171, 0.12);
}

.light-heading .section-kicker,
.light-detail-heading > span {
  color: var(--turquoise);
}

.light-heading h2,
.light-detail-heading h2 {
  color: var(--ink);
}

.light-heading > p {
  color: var(--muted);
}

.map-ring {
  border-color: rgba(16, 46, 76, 0.12);
}

.ring-inner {
  border-color: rgba(16, 46, 76, 0.08);
}

.ring-outer::before,
.ring-outer::after {
  background: var(--turquoise);
  box-shadow: 0 0 18px rgba(20, 157, 171, 0.32);
}

.map-center {
  border-color: rgba(20, 157, 171, 0.28);
  background:
    radial-gradient(circle at 45% 32%, #fff 0 12%, transparent 42%),
    linear-gradient(145deg, #effaf7, #fffdf8);
  box-shadow:
    0 24px 70px rgba(16, 46, 76, 0.1),
    inset 0 0 40px rgba(255, 255, 255, 0.7);
}

.map-center > span {
  color: var(--turquoise);
}

.map-center small {
  color: var(--muted);
}

.map-node {
  border-color: color-mix(in srgb, var(--domain-color) 24%, white);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(16, 46, 76, 0.09);
}

.map-node:hover,
.map-node:focus-visible {
  border-color: var(--domain-color);
  background: color-mix(in srgb, var(--domain-color) 8%, white);
}

.map-node small {
  color: var(--muted);
}

.ecosystem-steps {
  grid-template-columns: repeat(4, 1fr);
  border-top-color: var(--line);
}

.ecosystem-steps > div {
  min-height: 150px;
  padding: 30px 24px 0;
}

.ecosystem-steps > div + div {
  border-left-color: var(--line);
}

.ecosystem-steps span {
  color: var(--turquoise);
}

.ecosystem-steps strong {
  color: var(--ink);
}

.ecosystem-steps p {
  color: var(--muted);
}

.business {
  background: #f8f7f1;
}

.business-card {
  background: rgba(255, 255, 255, 0.72);
}

.tourism-focus {
  background: #edf5ed;
}

.tourism-image::after {
  background:
    linear-gradient(90deg, transparent 68%, #edf5ed 100%),
    linear-gradient(0deg, rgba(8, 45, 56, 0.1), transparent 45%);
}

.join-recruit {
  color: #145265;
  background:
    radial-gradient(circle at 85% 12%, rgba(20, 157, 171, 0.12), transparent 30%),
    #eef9f6;
}

.join-partner {
  color: #6a4b1e;
  border-color: rgba(184, 137, 67, 0.18);
  background:
    radial-gradient(circle at 82% 14%, rgba(199, 43, 136, 0.08), transparent 29%),
    linear-gradient(135deg, #fff8e9, #f8f3e8);
}

.join-partner > div > span {
  color: #a8752e;
}

.contact {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 20%, rgba(20, 157, 171, 0.11), transparent 28%),
    radial-gradient(circle at 22% 92%, rgba(199, 43, 136, 0.07), transparent 30%),
    linear-gradient(135deg, #fffaf0, #eef8f4);
}

.contact-orbit,
.contact-orbit::before,
.contact-orbit::after {
  border-color: rgba(20, 157, 171, 0.13);
}

.contact-inner > p:first-child {
  color: var(--turquoise);
}

.contact h2 {
  color: var(--ink);
}

.contact-copy {
  color: var(--muted);
}

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

.contact-button:hover,
.contact-button:focus-visible {
  box-shadow: 0 18px 38px rgba(16, 46, 76, 0.18);
}

.detail-circulation,
.opportunity-section,
.partner-flow,
.group-companies {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(20, 157, 171, 0.1), transparent 30%),
    linear-gradient(135deg, #f0f8f3, #fffaf1);
}

.circulation-list,
.flow-grid,
.group-link-list,
.brand-lineup {
  border-color: var(--line);
}

.circulation-list > div,
.flow-grid article,
.group-link-list a,
.brand-lineup > div {
  border-color: var(--line);
}

.circulation-list span,
.flow-grid span,
.group-link-list span,
.group-link-list .arrow {
  color: var(--turquoise);
}

.circulation-list p,
.opportunity-copy p,
.flow-grid p {
  color: var(--muted);
}

.flow-grid h3,
.group-link-list strong {
  color: var(--ink);
}

.brand-lineup {
  background: rgba(16, 46, 76, 0.05);
}

.partner-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 38%, rgba(184, 137, 67, 0.13), transparent 30%),
    linear-gradient(125deg, #fffdf7, #f3faf4);
}

.partner-hero .page-breadcrumb {
  color: var(--muted);
}

.partner-hero .page-breadcrumb strong,
.partner-hero .internal-eyebrow,
.partner-hero h1 em {
  color: var(--turquoise);
}

.partner-hero h1 {
  color: var(--ink);
}

.partner-hero .internal-lead {
  color: var(--muted);
}

.partner-rings i {
  border-color: rgba(20, 157, 171, 0.2);
}

.partner-rings i:nth-child(3) {
  background: rgba(20, 157, 171, 0.06);
}

/* Five public business areas, SOUVENIR feature, and symbol motion */

:root {
  --souvenir: #b98a47;
}

.domain-rail {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.domain-tab[data-domain="souvenir"],
[data-domain="souvenir"] {
  --domain-color: var(--souvenir);
}

.logo-motion {
  position: relative;
  display: grid;
  width: 154px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(20, 157, 171, 0.25);
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 42%, #fff 0 18%, transparent 58%),
    linear-gradient(145deg, #eef9f5, #fff8ec);
  box-shadow: 0 22px 50px rgba(16, 46, 76, 0.09);
}

.logo-motion::before,
.logo-motion::after {
  position: absolute;
  border: 1px solid rgba(20, 157, 171, 0.13);
  border-radius: 50%;
  content: "";
}

.logo-motion::before {
  inset: 15px;
}

.logo-motion::after {
  inset: 33px;
}

.logo-motion-s,
.logo-motion-infinity,
.logo-motion-brand {
  position: absolute;
  z-index: 2;
  display: grid;
  inset: 0;
  place-items: center;
}

.logo-motion-s {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  font-style: italic;
  animation: symbol-s 7.2s ease-in-out infinite;
}

.logo-motion-infinity {
  color: var(--turquoise);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 94px;
  line-height: 1;
  transform: rotate(90deg);
  animation: symbol-infinity 7.2s ease-in-out infinite;
}

.logo-motion-brand {
  width: 100%;
  overflow: hidden;
  opacity: 0;
  animation: symbol-brand 7.2s ease-in-out infinite;
}

.logo-motion-brand img {
  position: absolute;
  top: 50%;
  left: 8px;
  width: auto;
  height: 112px;
  max-width: none;
  transform: translateY(-50%);
}

.logo-motion > i {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(201, 154, 74, 0.48);
  transform-origin: 0 65px;
  animation: symbol-orbit 7.2s linear infinite;
}

@keyframes symbol-s {
  0%,
  18% {
    opacity: 1;
    transform: scale(1);
  }

  30%,
  100% {
    opacity: 0;
    transform: scale(0.74) rotate(18deg);
  }
}

@keyframes symbol-infinity {
  0%,
  18% {
    opacity: 0;
    transform: rotate(90deg) scale(0.66);
  }

  34%,
  51% {
    opacity: 1;
    transform: rotate(90deg) scale(1);
  }

  64%,
  100% {
    opacity: 0;
    transform: rotate(90deg) scale(1.16);
  }
}

@keyframes symbol-brand {
  0%,
  48% {
    opacity: 0;
    transform: scale(0.86);
  }

  64%,
  90% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.96);
  }
}

@keyframes symbol-orbit {
  to {
    transform: rotate(360deg);
  }
}

.five-domain-map .node-1 {
  top: 0;
  left: 50%;
}

.five-domain-map .node-2 {
  top: 27%;
  right: 0;
}

.five-domain-map .node-3 {
  right: 14%;
  bottom: 3%;
}

.five-domain-map .node-4 {
  bottom: 3%;
  left: 14%;
  transform: none;
}

.five-domain-map .node-4:hover,
.five-domain-map .node-4:focus-visible {
  transform: translate(-4px, 4px);
}

.five-domain-map .node-5 {
  top: 27%;
  bottom: auto;
  left: 0;
}

.souvenir-focus {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.04fr 0.96fr;
  background: #f3eee2;
}

.souvenir-visual {
  position: relative;
  display: flex;
  min-height: 680px;
  padding: clamp(60px, 7vw, 110px);
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 26%, rgba(255, 255, 255, 0.92) 0 9%, transparent 32%),
    radial-gradient(circle at 74% 76%, rgba(53, 157, 35, 0.12), transparent 27%),
    linear-gradient(135deg, #fffdf7, #e8f1df);
}

.souvenir-visual::before,
.souvenir-visual::after {
  position: absolute;
  border: 1px solid rgba(185, 138, 71, 0.2);
  border-radius: 50%;
  content: "";
}

.souvenir-visual::before {
  top: -18%;
  right: -10%;
  width: min(44vw, 580px);
  aspect-ratio: 1;
}

.souvenir-visual::after {
  right: 16%;
  bottom: -20%;
  width: min(30vw, 390px);
  aspect-ratio: 1;
}

.souvenir-visual-label {
  position: relative;
  z-index: 2;
  color: #98703a;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.souvenir-logo {
  position: relative;
  z-index: 2;
  width: min(100%, 580px);
  height: auto;
  margin-top: 46px;
}

.cavasa-sign {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 560px);
  margin-top: 68px;
  padding-top: 28px;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 24px;
  border-top: 1px solid rgba(16, 46, 76, 0.14);
}

.cavasa-sign small {
  width: 100%;
  color: #98703a;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.cavasa-sign strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.cavasa-sign span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.souvenir-copy {
  display: flex;
  padding: clamp(70px, 8vw, 126px) clamp(34px, 7vw, 100px);
  flex-direction: column;
  justify-content: center;
}

.souvenir-copy h2 {
  margin-top: 32px;
}

.souvenir-copy > p {
  max-width: 560px;
  margin: 28px 0 0;
  color: #4a5a59;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2;
}

.souvenir-links {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(16, 46, 76, 0.14);
  border-left: 1px solid rgba(16, 46, 76, 0.14);
}

.souvenir-links span {
  padding: 13px 14px;
  border-right: 1px solid rgba(16, 46, 76, 0.14);
  border-bottom: 1px solid rgba(16, 46, 76, 0.14);
  color: var(--ink);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.business-card:last-child:nth-child(odd),
.brand-lineup > div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

@media (max-width: 820px) {
  .domain-rail {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
  }

  .logo-motion {
    width: 100px;
  }

  .logo-motion-s {
    font-size: 50px;
  }

  .logo-motion-infinity {
    font-size: 62px;
  }

  .logo-motion-brand img {
    left: 5px;
    height: 74px;
  }

  .logo-motion > i {
    top: 7px;
    transform-origin: 0 43px;
  }

  .souvenir-focus {
    grid-template-columns: 1fr;
  }

  .souvenir-visual {
    min-height: 520px;
    padding: 64px 24px;
  }

  .souvenir-copy {
    padding: 76px 20px 90px;
  }

  .business-card:last-child:nth-child(odd),
  .brand-lineup > div:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .five-domain-map {
    display: grid;
  }

  .five-domain-map .node-1,
  .five-domain-map .node-2,
  .five-domain-map .node-3,
  .five-domain-map .node-4,
  .five-domain-map .node-5 {
    inset: auto;
    transform: none;
  }

  .souvenir-copy h2 {
    font-size: clamp(36px, 10vw, 50px);
    line-height: 1.32;
  }

  .souvenir-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-motion-s,
  .logo-motion-infinity {
    display: none;
  }

  .logo-motion-brand {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .logo-motion > i {
    animation: none;
  }
}

.group-link-list strong img {
  box-shadow: 0 10px 28px rgba(16, 46, 76, 0.06);
}

@media (max-width: 1020px) {
  .ecosystem-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-steps > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .ecosystem-steps > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .ecosystem-steps {
    grid-template-columns: 1fr;
  }

  .ecosystem-steps > div,
  .ecosystem-steps > div:nth-child(3) {
    min-height: auto;
    padding: 24px 8px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .ecosystem-steps > div:first-child {
    border-top: 0;
  }
}

@media (max-width: 420px) {
  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 112vw;
  }

  .section-kicker {
    font-size: 8px;
  }

  .brand-story {
    display: block;
  }

  .story-mark {
    width: 88px;
    margin-bottom: 26px;
  }

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

  .about-facts div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-facts div {
    min-height: 128px;
  }

  .ecosystem-map {
    display: grid;
    width: 100%;
    aspect-ratio: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .map-ring,
  .map-center {
    display: none;
  }

  .map-node,
  .node-1,
  .node-2,
  .node-3,
  .node-4,
  .node-5,
  .node-6 {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 116px;
    aspect-ratio: auto;
    border-radius: 18px;
    transform: none;
  }

  .map-node:hover,
  .map-node:focus-visible,
  .node-1:hover,
  .node-1:focus-visible,
  .node-2:hover,
  .node-2:focus-visible,
  .node-3:hover,
  .node-3:focus-visible,
  .node-4:hover,
  .node-4:focus-visible,
  .node-5:hover,
  .node-5:focus-visible,
  .node-6:hover,
  .node-6:focus-visible {
    transform: translateY(-2px);
  }

  .business-card {
    min-height: 585px;
  }

  .card-orb {
    top: 32px;
    right: 20px;
    width: 118px;
  }

  .card-orb b {
    font-size: 42px;
  }

  .card-jp {
    margin-top: 105px;
  }

  .business-card h3 {
    font-size: 27px;
  }

  .tourism-image {
    min-height: 390px;
  }

  .tourism-image > span {
    bottom: 34px;
    left: 20px;
  }

  .tourism-copy h2 {
    font-size: 44px;
  }

  .contact-status {
    max-width: 310px;
    min-height: 48px;
    padding: 0 16px;
    text-align: center;
    line-height: 1.5;
  }

  .footer-links > div,
  .footer-links > div:last-child {
    grid-template-columns: 1fr 1fr;
  }
}

/* Keep the renewal palette authoritative after internal-page declarations. */

.join-partner {
  color: #6a4b1e;
  border-color: rgba(184, 137, 67, 0.18);
  background:
    radial-gradient(circle at 82% 14%, rgba(199, 43, 136, 0.08), transparent 29%),
    linear-gradient(135deg, #fff8e9, #f8f3e8);
}

.join-partner > div > span {
  color: #a8752e;
}

.contact {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 20%, rgba(20, 157, 171, 0.11), transparent 28%),
    radial-gradient(circle at 22% 92%, rgba(199, 43, 136, 0.07), transparent 30%),
    linear-gradient(135deg, #fffaf0, #eef8f4);
}

.contact-orbit,
.contact-orbit::before,
.contact-orbit::after {
  border-color: rgba(20, 157, 171, 0.13);
}

.contact-inner > p:first-child {
  color: var(--turquoise);
}

.contact h2 {
  color: var(--ink);
}

.contact-copy {
  color: var(--muted);
}

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

.detail-circulation,
.opportunity-section,
.partner-flow,
.group-companies {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(20, 157, 171, 0.1), transparent 30%),
    linear-gradient(135deg, #f0f8f3, #fffaf1);
}

.light-detail-heading > span,
.circulation-list span,
.flow-grid span,
.group-link-list span,
.group-link-list .arrow {
  color: var(--turquoise);
}

.light-detail-heading h2,
.flow-grid h3,
.group-link-list strong {
  color: var(--ink);
}

.circulation-list,
.circulation-list > div,
.flow-grid,
.flow-grid article,
.group-link-list,
.group-link-list a,
.brand-lineup,
.brand-lineup > div {
  border-color: var(--line);
}

.circulation-list p,
.opportunity-copy p,
.flow-grid p {
  color: var(--muted);
}

.brand-lineup {
  background: rgba(16, 46, 76, 0.05);
}

.partner-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 38%, rgba(184, 137, 67, 0.13), transparent 30%),
    linear-gradient(125deg, #fffdf7, #f3faf4);
}

.partner-hero .page-breadcrumb,
.partner-hero .internal-lead {
  color: var(--muted);
}

.partner-hero .page-breadcrumb strong,
.partner-hero .internal-eyebrow,
.partner-hero h1 em {
  color: var(--turquoise);
}

.partner-hero h1 {
  color: var(--ink);
}

.partner-rings i {
  border-color: rgba(20, 157, 171, 0.2);
}

.partner-rings i:nth-child(3) {
  background: rgba(20, 157, 171, 0.06);
}

@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;
  }
}

/* Completion sections */

.join {
  background: var(--surface);
}

.join-heading {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  align-items: end;
  gap: 22px 70px;
}

.join-heading .section-kicker {
  grid-column: 1 / -1;
}

.join-heading h2 {
  margin-top: 12px;
}

.join-heading > p {
  align-self: end;
  margin-bottom: 8px;
}

.join-grid {
  display: grid;
  margin-top: 72px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.join-card {
  position: relative;
  display: flex;
  min-height: 500px;
  padding: clamp(34px, 4vw, 60px);
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.join-card::before,
.join-card::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.join-card::before {
  right: -80px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border: 1px solid currentColor;
  opacity: 0.15;
}

.join-card::after {
  right: 28px;
  bottom: -42px;
  width: 170px;
  height: 170px;
  background: currentColor;
  opacity: 0.06;
}

.join-card:hover,
.join-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(16, 47, 79, 0.12);
}

.join-recruit {
  color: #0f5264;
  background:
    radial-gradient(circle at 85% 12%, rgba(55, 179, 174, 0.14), transparent 30%),
    #eef8f4;
}

.join-partner {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 82% 14%, rgba(87, 198, 190, 0.2), transparent 31%),
    #113b59;
}

.join-card > div > span {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.19em;
}

.join-recruit > div > span {
  color: var(--turquoise);
}

.join-partner > div > span {
  color: #79d3cf;
}

.join-card h3 {
  margin: 52px 0 0;
  font-size: clamp(27px, 2.6vw, 41px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.45;
}

.join-card p {
  max-width: 490px;
  margin: 24px 0 0;
  color: color-mix(in srgb, currentColor 70%, transparent);
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.join-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-top: 48px;
  padding-bottom: 10px;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.contact-button {
  display: inline-flex;
  min-width: 230px;
  min-height: 62px;
  margin-top: 38px;
  padding: 0 28px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #0f3150;
  background: #fff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

/* Internal pages */

.internal-page {
  min-height: 100svh;
  background: var(--background);
}

.internal-header {
  position: absolute;
}

.internal-hero {
  position: relative;
  display: flex;
  min-height: 760px;
  padding: 160px clamp(24px, 7vw, 112px) 100px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 26%, rgba(255, 255, 255, 0.92), transparent 26%),
    linear-gradient(125deg, #fbf8f0, #f4f0e8);
}

.internal-hero::before {
  position: absolute;
  top: -240px;
  right: -200px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(27, 156, 163, 0.15);
  border-radius: 50%;
  content: "";
}

.internal-hero-copy {
  position: relative;
  z-index: 4;
  width: min(780px, 64%);
}

.page-breadcrumb {
  display: flex;
  margin: 0 0 48px;
  align-items: center;
  gap: 12px;
  color: rgba(16, 47, 79, 0.52);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.15em;
}

.page-breadcrumb strong {
  color: var(--turquoise);
}

.page-number {
  position: absolute;
  top: 54px;
  left: -42px;
  color: color-mix(in srgb, var(--domain-color, var(--turquoise)) 18%, transparent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 180px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.internal-eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: var(--domain-color, var(--turquoise));
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.22em;
}

.internal-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1.28;
}

.internal-hero h1 > span {
  display: block;
}

.internal-hero h1 em {
  color: var(--domain-color, var(--turquoise));
  font-style: normal;
}

.internal-lead {
  margin: 30px 0 0;
  color: #344a55;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 2;
}

.business-detail-hero .internal-hero-copy {
  width: min(840px, 66%);
}

.business-detail-hero h1 {
  font-size: clamp(46px, 4.45vw, 68px);
}

.business-hero-mark {
  position: absolute;
  top: 50%;
  right: 7%;
  display: grid;
  width: min(34vw, 480px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--domain-color) 35%, transparent);
  border-radius: 50%;
  color: var(--domain-color);
  background:
    radial-gradient(circle, color-mix(in srgb, var(--domain-color) 12%, transparent), transparent 66%);
  transform: translateY(-43%);
}

.business-hero-mark::before,
.business-hero-mark::after {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.22;
}

.business-hero-mark::before {
  inset: 12%;
}

.business-hero-mark::after {
  inset: 28%;
}

.business-hero-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(120px, 16vw, 240px);
  font-style: italic;
  line-height: 1;
  opacity: 0.72;
}

.business-hero-mark.has-brand-logo img {
  position: relative;
  z-index: 2;
  display: block;
  width: 82%;
  height: auto;
}

.business-hero-mark i {
  position: absolute;
  top: 8%;
  right: 12%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 24px currentColor;
}

.detail-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 130px clamp(24px, 7vw, 112px);
}

.detail-intro,
.partner-message {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
  background: var(--surface);
}

.detail-label {
  display: flex;
  flex-direction: column;
}

.detail-label span,
.detail-section-heading > span {
  color: var(--domain-color, var(--turquoise));
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.detail-label strong {
  margin-top: 22px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.detail-copy p {
  margin: 0;
  color: #344a55;
  font-size: clamp(16px, 1.35vw, 19px);
  letter-spacing: 0.045em;
  line-height: 2.2;
}

.detail-copy p + p {
  margin-top: 28px;
}

.detail-services,
.value-section,
.partner-types,
.company-profile {
  background: var(--background);
}

.detail-section-heading h2 {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.35;
}

.service-list {
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-list article {
  display: grid;
  min-height: 180px;
  padding: 34px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.service-list article > span {
  color: var(--domain-color, var(--turquoise));
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.service-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.detail-circulation,
.opportunity-section,
.partner-flow,
.group-companies {
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(56, 181, 178, 0.2), transparent 30%),
    #0e3452;
}

.circulation-inner,
.opportunity-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
}

.light-detail-heading > span {
  color: #78d5d1;
}

.light-detail-heading h2 {
  color: #fff;
}

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

.circulation-list > div {
  display: grid;
  min-height: 120px;
  grid-template-columns: 50px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.circulation-list span {
  color: #78d5d1;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.circulation-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  letter-spacing: 0.045em;
}

.detail-cta {
  text-align: center;
  background: var(--surface);
}

.detail-cta > p {
  margin: 0;
  color: var(--domain-color, var(--turquoise));
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.detail-cta h2 {
  max-width: 900px;
  margin: 28px auto 0;
  color: var(--ink);
  font-size: clamp(35px, 4vw, 60px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.4;
}

.detail-actions {
  display: flex;
  margin-top: 46px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.next-business {
  display: flex;
  min-height: 190px;
  padding: 36px clamp(24px, 7vw, 112px);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background: var(--domain-color, var(--turquoise));
}

.next-business > span {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.next-business strong {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: clamp(22px, 2.8vw, 42px);
  letter-spacing: 0.04em;
}

.internal-footer {
  margin-top: 0;
}

/* Recruit */

.people-hero {
  background:
    radial-gradient(circle at 78% 42%, rgba(88, 187, 177, 0.17), transparent 31%),
    linear-gradient(125deg, #fbf8f0, #eff7f3);
}

.people-hero .internal-hero-copy,
.partner-hero .internal-hero-copy,
.company-hero .internal-hero-copy {
  width: min(900px, 70%);
}

.people-hero h1,
.partner-hero h1,
.company-hero h1 {
  font-size: clamp(46px, 4.65vw, 72px);
}

.people-orbit {
  position: absolute;
  top: 52%;
  right: 7%;
  width: min(35vw, 500px);
  aspect-ratio: 1;
  border: 1px solid rgba(27, 156, 163, 0.27);
  border-radius: 50%;
  transform: translateY(-43%);
}

.people-orbit::before,
.people-orbit::after {
  position: absolute;
  border: 1px solid rgba(27, 156, 163, 0.18);
  border-radius: 50%;
  content: "";
}

.people-orbit::before {
  inset: 17%;
}

.people-orbit::after {
  inset: 34%;
  background: rgba(27, 156, 163, 0.06);
}

.people-orbit span {
  position: absolute;
  z-index: 2;
  padding: 9px 15px;
  border: 1px solid rgba(27, 156, 163, 0.25);
  border-radius: 999px;
  color: var(--turquoise);
  background: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.people-orbit span:nth-child(1) {
  top: 8%;
  left: 44%;
}

.people-orbit span:nth-child(2) {
  right: -5%;
  bottom: 28%;
}

.people-orbit span:nth-child(3) {
  bottom: 2%;
  left: 10%;
}

.recruit-message {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 9vw, 140px);
  background: var(--surface);
}

.value-grid,
.role-grid {
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.value-grid article,
.role-grid article {
  min-height: 390px;
  padding: clamp(30px, 3vw, 46px);
  background: var(--surface);
}

.value-grid article > div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--turquoise);
}

.value-grid article > div span,
.role-grid article > span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.value-grid article > div small {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.value-grid h3,
.role-grid h3 {
  margin: 88px 0 0;
  color: var(--ink);
  font-size: clamp(23px, 2.2vw, 31px);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.value-grid p,
.role-grid p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.035em;
  line-height: 1.95;
}

.opportunity-copy {
  align-self: end;
}

.opportunity-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 2;
}

.opportunity-copy p + p {
  margin-top: 22px;
}

/* Partner */

.partner-hero {
  color: #fff;
  background:
    radial-gradient(circle at 80% 38%, rgba(55, 180, 176, 0.25), transparent 29%),
    #0e3452;
}

.partner-hero .page-breadcrumb {
  color: rgba(255, 255, 255, 0.48);
}

.partner-hero .page-breadcrumb strong,
.partner-hero .internal-eyebrow {
  color: #79d3cf;
}

.partner-hero h1 {
  color: #fff;
}

.partner-hero h1 em {
  color: #79d3cf;
}

.partner-hero .internal-lead {
  color: rgba(255, 255, 255, 0.7);
}

.partner-rings {
  position: absolute;
  top: 50%;
  right: 5%;
  width: min(39vw, 550px);
  aspect-ratio: 1;
  transform: translateY(-42%);
}

.partner-rings i {
  position: absolute;
  border: 1px solid rgba(121, 211, 207, 0.24);
  border-radius: 50%;
}

.partner-rings i:nth-child(1) {
  inset: 0;
}

.partner-rings i:nth-child(2) {
  inset: 18%;
}

.partner-rings i:nth-child(3) {
  inset: 36%;
  background: rgba(121, 211, 207, 0.08);
}

.partner-grid {
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-grid article {
  min-height: 330px;
  padding: clamp(32px, 4vw, 54px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.partner-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--turquoise);
}

.partner-card-top span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.partner-card-top small {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.partner-grid h3 {
  margin: 78px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.partner-grid p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.95;
}

.flow-grid {
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.flow-grid article {
  min-height: 300px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.flow-grid span {
  color: #79d3cf;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.flow-grid h3 {
  margin: 64px 0 0;
  font-size: 23px;
  font-weight: 650;
}

.flow-grid p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.035em;
  line-height: 1.9;
}

/* Company */

.company-hero {
  background:
    radial-gradient(circle at 80% 40%, rgba(210, 158, 76, 0.16), transparent 28%),
    linear-gradient(125deg, #fbf8f0, #f2efe6);
}

.company-symbol {
  position: absolute;
  top: 52%;
  right: 8%;
  display: flex;
  width: min(34vw, 480px);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(27, 156, 163, 0.24);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-44%);
}

.company-symbol::before {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(201, 154, 74, 0.25);
  border-radius: 50%;
  content: "";
}

.company-symbol span {
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(70px, 9vw, 132px);
  font-style: italic;
}

.company-symbol strong {
  z-index: 1;
  color: var(--turquoise);
  font-size: 34px;
  font-weight: 400;
}

.company-role {
  background: var(--surface);
}

.role-grid article > span {
  color: var(--turquoise);
}

.company-profile dl {
  margin: 66px 0 0;
  border-top: 1px solid var(--line);
}

.company-profile dl > div {
  display: grid;
  min-height: 104px;
  padding: 24px 0;
  grid-template-columns: minmax(170px, 0.32fr) 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.company-profile dt {
  color: var(--turquoise);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.company-profile dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0.045em;
  line-height: 1.8;
}

.group-link-list {
  margin-top: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.group-link-list a {
  display: grid;
  min-height: 116px;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: padding 0.25s ease;
}

.group-link-list a:hover,
.group-link-list a:focus-visible {
  padding: 0 12px;
}

.group-link-list span {
  color: #79d3cf;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.group-link-list strong {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.group-link-list strong img {
  display: block;
  width: min(360px, 62vw);
  height: auto;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
}

.group-link-list .arrow {
  color: #79d3cf;
}

.brand-lineup {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.brand-lineup > div {
  display: grid;
  min-height: 160px;
  padding: 28px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.94);
}

.brand-lineup img {
  display: block;
  width: min(100%, 430px);
  height: auto;
}

@media (max-width: 1120px) {
  .join-heading {
    grid-template-columns: 1fr 1fr;
  }

  .internal-hero-copy {
    width: 70%;
  }

  .business-hero-mark,
  .people-orbit,
  .company-symbol {
    right: 3%;
    width: 36vw;
  }

  .partner-rings {
    right: 1%;
  }

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

@media (max-width: 820px) {
  .join {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .join-heading {
    display: block;
  }

  .join-heading h2 {
    margin-top: 30px;
  }

  .join-heading > p {
    margin-top: 24px;
  }

  .join-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .join-card {
    min-height: 430px;
  }

  .brand-logo-wrap {
    width: 190px;
  }

  .internal-hero {
    min-height: 680px;
    padding-top: 132px;
    padding-bottom: 72px;
    align-items: flex-end;
  }

  .internal-hero-copy {
    width: 100%;
  }

  .business-detail-hero .internal-hero-copy,
  .people-hero .internal-hero-copy,
  .partner-hero .internal-hero-copy,
  .company-hero .internal-hero-copy {
    width: 100%;
  }

  .page-breadcrumb {
    margin-bottom: 38px;
  }

  .page-number {
    top: 36px;
    left: -18px;
    font-size: 122px;
  }

  .internal-hero h1 {
    font-size: clamp(42px, 10vw, 66px);
  }

  .internal-lead br {
    display: none;
  }

  .business-hero-mark,
  .people-orbit,
  .partner-rings,
  .company-symbol {
    top: 30%;
    right: -10%;
    width: 54vw;
    opacity: 0.4;
  }

  .detail-shell {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .detail-intro,
  .partner-message,
  .recruit-message,
  .circulation-inner,
  .opportunity-inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .service-list,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .value-grid article,
  .role-grid article {
    min-height: 310px;
  }

  .value-grid h3,
  .role-grid h3,
  .partner-grid h3 {
    margin-top: 58px;
  }

  .next-business {
    min-height: 150px;
  }

  .next-business > span {
    display: none;
  }
}

@media (max-width: 560px) {
  .join-card {
    min-height: 400px;
    padding: 30px;
  }

  .join-card h3 {
    margin-top: 40px;
    font-size: 28px;
  }

  .internal-hero {
    min-height: 620px;
  }

  .internal-hero h1 {
    font-size: 42px;
  }

  .internal-lead {
    font-size: 14px;
  }

  .business-hero-mark,
  .people-orbit,
  .partner-rings,
  .company-symbol {
    top: 28%;
    right: -18%;
    width: 68vw;
  }

  .service-list article {
    min-height: 140px;
    padding: 26px 22px;
  }

  .brand-logo-wrap {
    width: 165px;
  }

  .site-footer .brand-logo-wrap {
    width: min(250px, 76vw);
  }

  .card-brand-logo {
    top: 72px;
    right: 20px;
    width: 52%;
  }

  .brand-lineup {
    grid-template-columns: 1fr;
  }

  .brand-lineup > div {
    min-height: 130px;
    padding: 22px;
  }

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

  .flow-grid article {
    min-height: 240px;
  }

  .company-profile dl > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .group-link-list a {
    grid-template-columns: 36px 1fr auto;
    gap: 12px;
  }

  .next-business {
    align-items: flex-start;
  }

  .next-business strong {
    font-size: 20px;
  }
}

/* Final bright-theme cascade */

.hero-visual::before {
  position: absolute;
  z-index: 3;
  inset: 11% 6% 9% 22%;
  border-radius: 48% 52% 44% 56%;
  background:
    linear-gradient(145deg, rgba(16, 46, 76, 0.08), rgba(20, 157, 171, 0.2)),
    radial-gradient(circle at 72% 26%, rgba(16, 46, 76, 0.2), transparent 46%);
  content: "";
  mix-blend-mode: multiply;
}

.hero-symbol {
  position: absolute;
  z-index: 6;
  top: 46%;
  right: 4%;
  width: min(25vw, 340px);
  height: min(29vw, 390px);
  filter: drop-shadow(0 18px 34px rgba(16, 46, 76, 0.24));
  transform: translateY(-50%);
}

.hero-symbol-ring {
  position: absolute;
  display: block;
  width: 58%;
  height: 57%;
  border: clamp(13px, 1.55vw, 22px) solid #fff;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 9px 22px rgba(16, 46, 76, 0.12);
  transform: rotate(24deg);
}

.hero-symbol .ring-top {
  top: 2%;
  right: 5%;
}

.hero-symbol .ring-bottom {
  bottom: 2%;
  left: 5%;
}

.hero-symbol > span {
  position: absolute;
  z-index: 2;
  top: 15%;
  right: 1%;
  width: clamp(11px, 1.25vw, 18px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 8px 20px rgba(145, 100, 32, 0.3);
}

.hero-symbol-caption {
  position: absolute;
  z-index: 7;
  right: 5.5%;
  bottom: 18%;
  color: rgba(255, 255, 255, 0.92);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-shadow: 0 2px 12px rgba(16, 46, 76, 0.28);
}

.about-facts-wide {
  margin-top: 88px;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}

.business-card:last-child:nth-child(odd),
.brand-lineup > div:last-child:nth-child(odd) {
  grid-column: auto;
}

@media (max-width: 820px) {
  .hero-symbol {
    top: 47%;
    right: 8%;
    width: min(42vw, 230px);
    height: min(48vw, 265px);
  }

  .hero-symbol-caption {
    right: 8%;
    bottom: 18%;
    font-size: 7px;
  }

  .about-facts-wide {
    margin-top: 54px;
    border-radius: 20px;
  }
}

@media (max-width: 420px) {
  .hero-symbol {
    right: 5%;
    width: 43vw;
    height: 49vw;
  }

  .hero-symbol-caption {
    display: none;
  }
}

.join-partner {
  color: #6a4b1e;
  border-color: rgba(184, 137, 67, 0.18);
  background:
    radial-gradient(circle at 82% 14%, rgba(199, 43, 136, 0.08), transparent 29%),
    linear-gradient(135deg, #fff8e9, #f8f3e8);
}

.join-partner > div > span {
  color: #a8752e;
}

.contact {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 20%, rgba(20, 157, 171, 0.11), transparent 28%),
    radial-gradient(circle at 22% 92%, rgba(199, 43, 136, 0.07), transparent 30%),
    linear-gradient(135deg, #fffaf0, #eef8f4);
}

.contact-orbit,
.contact-orbit::before,
.contact-orbit::after {
  border-color: rgba(20, 157, 171, 0.13);
}

.contact-inner > p:first-child {
  color: var(--turquoise);
}

.contact h2 {
  color: var(--ink);
}

.contact-copy {
  color: var(--muted);
}

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

.detail-circulation,
.opportunity-section,
.partner-flow,
.group-companies {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(20, 157, 171, 0.1), transparent 30%),
    linear-gradient(135deg, #f0f8f3, #fffaf1);
}

.light-detail-heading > span,
.circulation-list span,
.flow-grid span,
.group-link-list span,
.group-link-list .arrow {
  color: var(--turquoise);
}

.light-detail-heading h2,
.flow-grid h3,
.group-link-list strong {
  color: var(--ink);
}

.circulation-list,
.circulation-list > div,
.flow-grid,
.flow-grid article,
.group-link-list,
.group-link-list a,
.brand-lineup,
.brand-lineup > div {
  border-color: var(--line);
}

.circulation-list p,
.opportunity-copy p,
.flow-grid p {
  color: var(--muted);
}

.brand-lineup {
  background: rgba(16, 46, 76, 0.05);
}

.partner-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 38%, rgba(184, 137, 67, 0.13), transparent 30%),
    linear-gradient(125deg, #fffdf7, #f3faf4);
}

.partner-hero .page-breadcrumb,
.partner-hero .internal-lead {
  color: var(--muted);
}

.partner-hero .page-breadcrumb strong,
.partner-hero .internal-eyebrow,
.partner-hero h1 em {
  color: var(--turquoise);
}

.partner-hero h1 {
  color: var(--ink);
}

.partner-rings i {
  border-color: rgba(20, 157, 171, 0.2);
}

.partner-rings i:nth-child(3) {
  background: rgba(20, 157, 171, 0.06);
}
