:root {
  --navy-950: #07111f;
  --navy-900: #0a1728;
  --navy-800: #10233d;
  --navy-700: #173657;
  --blue-500: #4e8fd7;
  --blue-300: #8db9e8;
  --silver-500: #8c9bad;
  --silver-300: #c7d0da;
  --silver-100: #edf1f5;
  --white: #ffffff;
  --ink: #152235;
  --muted: #647286;
  --line: rgba(21, 42, 68, 0.13);
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
  --radius: 4px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

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

.section {
  padding: 120px 0;
}

.section-sm {
  padding: 80px 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(78, 143, 215, 0.14), transparent 32%),
    var(--navy-950);
}

.section-soft {
  background: #f4f6f8;
}

.eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--blue-500);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-dark .eyebrow {
  color: var(--blue-300);
}

.section-title {
  max-width: 830px;
  margin: 0 0 32px;
  color: var(--navy-900);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.section-dark .section-title {
  color: var(--white);
}

.section-lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-lead {
  color: var(--silver-300);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.text-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.section-dark .text-link {
  color: var(--white);
}

.btn {
  display: inline-flex;
  min-height: 56px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid var(--navy-800);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy-800);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn::after {
  content: "→";
}

.btn:hover {
  color: var(--navy-800);
  background: transparent;
  transform: translateY(-2px);
}

.btn-light {
  border-color: var(--white);
  color: var(--navy-900);
  background: var(--white);
}

.btn-light:hover {
  color: var(--white);
  background: transparent;
}

.btn-outline {
  color: var(--navy-800);
  background: transparent;
}

.btn-outline:hover {
  color: var(--white);
  background: var(--navy-800);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 108px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: height 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled,
.site-header.header-light {
  height: 92px;
  color: var(--navy-900);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(7, 17, 31, 0.07);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 48px), 1380px);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.header-navs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.utility-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.utility-nav a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: currentColor;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.utility-nav a::after {
  content: "↗";
  color: var(--blue-300);
  font-size: 10px;
}

.site-header.scrolled .utility-nav a::after,
.site-header.header-light .utility-nav a::after {
  color: var(--blue-500);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-family: Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.14em;
}

.brand-text small {
  margin-top: 5px;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.global-nav {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  align-items: center;
}

.global-nav a {
  position: relative;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-group {
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
}

.submenu-toggle {
  position: relative;
  width: 18px;
  height: 22px;
  padding: 0;
  border: 0;
  color: currentColor;
  background: transparent;
}

.submenu-toggle::before {
  position: absolute;
  top: 7px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-group.submenu-open .submenu-toggle::before {
  top: 10px;
  transform: rotate(225deg);
}

.submenu {
  position: absolute;
  z-index: 110;
  top: calc(100% + 22px);
  left: 50%;
  width: 190px;
  padding: 10px;
  color: var(--navy-900);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 23px;
  content: "";
}

.submenu a {
  display: block;
  padding: 11px 13px;
  border-bottom: 1px solid var(--line);
}

.submenu a:last-child {
  border-bottom: 0;
}

.submenu a:hover {
  background: var(--silver-100);
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu,
.nav-group.submenu-open .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-group.is-current > .nav-parent::after {
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

.global-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.global-nav a:hover::after,
.global-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.global-nav .nav-cta {
  padding: 11px 18px;
  border: 1px solid currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: currentColor;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  place-items: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.76) 52%, rgba(7, 17, 31, 0.2) 100%),
    url("../images/hero-geometry.svg") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 9vw;
  bottom: 9vh;
  width: min(34vw, 480px);
  aspect-ratio: 1;
  border: 1px solid rgba(141, 185, 232, 0.22);
  content: "";
  transform: rotate(45deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--container));
  padding-top: 84px;
}

.hero-kicker {
  margin: 0 0 35px;
  color: var(--blue-300);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 910px;
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.35;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--blue-300);
  font-family: Arial, sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.hero-copy {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--silver-300);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 42px;
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 38px;
  color: rgba(255, 255, 255, 0.5);
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.statement {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.statement-label {
  color: var(--blue-500);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.statement-copy {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3.2vw, 45px);
  line-height: 1.65;
}

.statement-copy strong {
  color: var(--blue-500);
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-visual {
  position: relative;
  min-height: 500px;
}

.concept-circle {
  position: absolute;
  display: grid;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(141, 185, 232, 0.36);
  border-radius: 50%;
  place-content: center;
  text-align: center;
}

.concept-circle strong {
  display: block;
  font-family: "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.concept-circle span {
  color: var(--silver-300);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.concept-circle:first-child {
  top: 15px;
  left: 0;
}

.concept-circle:last-child {
  right: 0;
  bottom: 15px;
  background: rgba(78, 143, 215, 0.08);
}

.concept-plus {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  border: 1px solid var(--blue-300);
  color: var(--navy-950);
  background: var(--blue-300);
  font-size: 25px;
  transform: translate(-50%, -50%);
  place-items: center;
}

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

.card {
  min-height: 330px;
  padding: 42px 36px;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  z-index: 1;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.card-number {
  display: block;
  margin-bottom: 50px;
  color: var(--blue-500);
  font-family: "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
}

.card h3 {
  margin: 0 0 18px;
  color: var(--navy-800);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
}

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

.fellow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 58px;
}

.fellow-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
}

.fellow-card::before,
.fellow-card::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(141, 185, 232, 0.24);
  border-radius: 50%;
}

.fellow-card::before {
  top: 55px;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translateX(-50%);
}

.fellow-card::after {
  top: 190px;
  left: 50%;
  width: 250px;
  height: 250px;
  transform: translateX(-50%);
}

.fellow-meta {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 25px;
  background: linear-gradient(transparent, rgba(7, 17, 31, 0.98) 35%);
}

.fellow-meta small {
  color: var(--blue-300);
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.fellow-meta h3 {
  margin: 8px 0;
  font-family: "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
}

.fellow-meta p {
  margin: 0;
  color: var(--silver-300);
  font-size: 12px;
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.tag {
  padding: 5px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.section-dark .tag {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--silver-300);
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 460px;
  align-items: flex-end;
  overflow: hidden;
  padding: 160px 0 80px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98), rgba(10, 23, 40, 0.82)),
    url("../images/hero-geometry.svg") center / cover;
}

.page-hero::after {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(141, 185, 232, 0.2);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.page-hero p {
  margin: 16px 0 0;
  color: var(--blue-300);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.breadcrumb {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.breadcrumb span {
  margin: 0 9px;
}

.data-list {
  margin: 55px 0 0;
  border-top: 1px solid var(--line);
}

.data-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.data-row dt {
  color: var(--navy-800);
  font-weight: 700;
}

.data-row dd {
  margin: 0;
  color: var(--muted);
}

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

.principle {
  padding: 38px 30px;
  border-top: 2px solid var(--blue-500);
  background: var(--white);
}

.principle strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy-800);
  font-family: "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-list {
  margin-top: 65px;
}

.service-item {
  display: grid;
  grid-template-columns: 100px 0.9fr 1.1fr;
  gap: 38px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.service-item:last-child {
  border-bottom: 1px solid var(--line);
}

.service-no {
  color: var(--blue-500);
  font-family: "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
}

.service-item h2 {
  margin: 0;
  color: var(--navy-800);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(24px, 3vw, 35px);
  font-weight: 500;
  line-height: 1.5;
}

.service-body p {
  margin: 0;
  color: var(--muted);
}

.service-body ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-body li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
}

.service-body li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 8px;
  height: 1px;
  content: "";
  background: var(--blue-500);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.profile {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.profile-id {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid var(--navy-700);
  color: var(--navy-700);
  font-family: "Times New Roman", serif;
  font-size: 19px;
}

.profile small {
  color: var(--blue-500);
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.13em;
}

.profile h3 {
  margin: 8px 0 14px;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: 23px;
  font-weight: 500;
}

.profile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.trend-page .trend-hero {
  min-height: 330px;
  padding: 124px 0 48px;
}

.trend-page .trend-hero::after {
  right: 4%;
  width: 210px;
  height: 210px;
}

.trend-hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: end;
}

.trend-hero-title {
  position: relative;
  z-index: 1;
}

.trend-edition {
  margin: 0 0 20px !important;
  color: var(--blue-300) !important;
  font-family: Arial, sans-serif;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 0.16em !important;
}

.trend-page .trend-hero h1 {
  font-size: clamp(50px, 6vw, 76px);
}

.trend-page .trend-hero-title > p:last-child {
  margin-top: 10px;
}

.trend-hero-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.trend-hero-stat {
  min-height: 90px;
  padding: 17px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 17, 31, 0.38);
  backdrop-filter: blur(6px);
}

.trend-hero-stat small {
  display: block;
  color: var(--blue-300);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.trend-hero-stat strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-family: "Yu Mincho", serif;
  font-size: 16px;
  font-weight: 500;
}

.trend-hero-stat span {
  display: block;
  margin-top: 1px;
  color: var(--silver-300);
  font-size: 9px;
}

.trend-page .breadcrumb {
  padding: 11px 0;
}

.trend-headlines {
  padding: 42px 0 65px;
}

.headline-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: end;
}

.headline-intro .eyebrow {
  margin-bottom: 12px;
}

.headline-intro .section-title {
  margin-bottom: 0;
  font-size: clamp(30px, 3.5vw, 44px);
}

.headline-intro .section-lead {
  max-width: 580px;
  font-size: 12px;
}

.trend-feature {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 65px;
  margin-top: 58px;
  padding: 52px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.weekly-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.weekly-stat {
  min-height: 145px;
  padding: 25px;
  background: var(--white);
}

.weekly-stat small {
  display: block;
  color: var(--blue-500);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.weekly-stat strong {
  display: block;
  margin-top: 22px;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.weekly-stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.news-item {
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr) 120px;
  gap: 24px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.news-meta time {
  display: block;
  color: var(--navy-800);
  font-family: "Times New Roman", serif;
  font-size: 17px;
}

.news-meta-top {
  display: flex;
  gap: 7px;
  align-items: center;
}

.news-badge {
  display: inline-flex !important;
  width: fit-content;
  min-height: 18px;
  align-items: center;
  margin: 0 !important;
  padding: 2px 6px;
  border: 1px solid transparent;
  font-family: "Yu Gothic", sans-serif !important;
  font-size: 8px !important;
  font-weight: 700;
  letter-spacing: 0.05em !important;
  line-height: 1;
}

.badge-new {
  border-color: #b1545a;
  color: #8f3e45 !important;
  background: #fbf0f1;
}

.badge-important {
  border-color: #a87335;
  color: #8a5b23 !important;
  background: #fcf5e9;
}

.badge-watch {
  border-color: var(--blue-500);
  color: var(--navy-700) !important;
  background: #edf4fa;
}

.badge-standard {
  border-color: var(--silver-500);
  color: var(--muted) !important;
  background: var(--silver-100);
}

.news-meta span {
  display: block;
  margin-top: 3px;
  color: var(--blue-500);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.news-body h3 {
  max-width: 760px;
  margin: 0 0 3px;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: clamp(17px, 1.65vw, 21px);
  font-weight: 500;
  line-height: 1.45;
}

.news-body p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.news-takeaway {
  padding: 16px 0 0 18px;
  border-left: 1px solid var(--blue-500);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.news-takeaway strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-500);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.news-source {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 14px;
  color: var(--navy-800);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.news-source-compact {
  align-self: center;
  justify-self: end;
  margin-top: 0;
  text-align: right;
}

.news-source::after {
  content: "↗";
}

.report-note {
  margin-top: 34px;
  padding: 18px 22px;
  border-left: 2px solid var(--blue-500);
  color: var(--muted);
  background: var(--silver-100);
  font-size: 12px;
}

.deep-dive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.deep-dive-card {
  display: flex;
  min-height: 570px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.deep-dive-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.deep-dive-tag {
  padding: 5px 10px;
  border: 1px solid var(--blue-300);
  color: var(--blue-500);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.deep-dive-date {
  color: var(--silver-500);
  font-family: "Times New Roman", serif;
  font-size: 15px;
}

.deep-dive-card h3 {
  margin: 0 0 18px;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: clamp(24px, 2.8vw, 33px);
  font-weight: 500;
  line-height: 1.5;
}

.deep-dive-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

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

.fact-cell {
  padding: 16px 10px;
  background: var(--silver-100);
  text-align: center;
}

.fact-cell strong {
  display: block;
  color: var(--navy-800);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.fact-cell span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.commentary-box {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.commentary-box h4 {
  margin: 0 0 12px;
  color: var(--blue-500);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.deep-dive-card .commentary-box h4 {
  display: flex;
  gap: 9px;
  align-items: center;
}

.deep-dive-card .commentary-box h4::before {
  width: 13px;
  height: 9px;
  border: 1px solid currentColor;
  border-radius: 2px;
  content: "";
  box-shadow: 3px 3px 0 -2px var(--white), 3px 3px 0 -1px currentColor;
}

.commentary-box p,
.commentary-box li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.commentary-box p {
  margin: 0;
}

.commentary-box p + p {
  margin-top: 8px;
}

.commentary-box ul {
  margin: 0;
  padding-left: 18px;
}

.deep-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: auto;
  padding-top: 25px;
}

.deep-sources a {
  color: var(--navy-800);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.deep-sources a::after {
  margin-left: 4px;
  content: "↗";
}

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

.release-card {
  padding: 30px;
  border-top: 2px solid var(--blue-500);
  background: var(--white);
}

.release-card h3 {
  margin: 0 0 14px;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: 22px;
  font-weight: 500;
}

.release-card p,
.release-card li {
  color: var(--muted);
  font-size: 12px;
}

.release-card p {
  margin: 0;
}

.release-card ul {
  margin: 0;
  padding-left: 18px;
}

.release-card .deep-sources {
  margin-top: 20px;
}

.news-brief-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 38px;
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.news-brief {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.news-brief time {
  color: var(--blue-500);
  font-family: "Times New Roman", serif;
  font-size: 12px;
}

.news-brief p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.brief-category {
  display: inline-flex;
  min-height: 18px;
  align-items: center;
  margin: 0 8px 5px 0;
  padding: 2px 7px;
  border: 1px solid var(--silver-300);
  color: var(--muted);
  background: var(--white);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.category-risk {
  border-color: #cf9a9e;
  color: #8f3e45;
  background: #fbf0f1;
}

.category-finance {
  border-color: #d4b37d;
  color: #805a22;
  background: #fcf5e9;
}

.category-model,
.category-agent,
.category-research {
  border-color: var(--blue-300);
  color: var(--navy-700);
  background: #edf4fa;
}

.category-policy {
  border-color: var(--silver-500);
  color: var(--muted);
  background: var(--silver-100);
}

.category-product,
.category-business,
.category-design,
.category-infra {
  border-color: #9bbcaf;
  color: #416b5e;
  background: #edf6f2;
}

.news-brief strong {
  color: var(--navy-800);
}

.news-brief a {
  color: inherit;
}

.weekly-analysis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.analysis-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.analysis-card span {
  color: var(--blue-300);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.analysis-card h3 {
  margin: 14px 0 10px;
  color: var(--white);
  font-family: "Yu Mincho", serif;
  font-size: 23px;
  font-weight: 500;
}

.analysis-card p {
  margin: 0;
  color: var(--silver-300);
  font-size: 13px;
}

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

.timeline-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-row time {
  color: var(--blue-500);
  font-family: "Times New Roman", serif;
  font-size: 20px;
}

.timeline-row h3 {
  margin: 0 0 5px;
  color: var(--navy-800);
  font-size: 15px;
}

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

.ai-report-section {
  padding-top: 142px;
  background:
    linear-gradient(180deg, var(--navy-900) 0, var(--navy-900) 380px, var(--silver-100) 380px);
}

.ai-report {
  max-width: 1180px;
}

.ai-report > div:first-child {
  display: grid;
  min-height: 190px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 38px;
  padding: 0 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.ai-report > div:first-child h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.ai-report > div:first-child p {
  margin: 11px 0 0;
  color: var(--silver-300);
  font-size: 13px;
}

.ai-report > div:first-child p:first-of-type {
  color: var(--white);
  font-family: "Yu Mincho", serif;
  font-size: clamp(18px, 2vw, 24px);
}

.ai-report > div:first-child > div:last-child {
  max-width: 270px;
  color: var(--silver-300);
  font-size: 10px;
  line-height: 1.8;
  text-align: right;
}

.ai-report > div:nth-child(2),
.ai-report > section {
  margin-bottom: 32px;
  padding: 34px 38px;
  border: 1px solid var(--line);
  background: var(--white);
}

.ai-report > div:nth-child(2) {
  border-top: 3px solid var(--blue-500);
  box-shadow: var(--shadow);
}

.ai-report > div:nth-child(2) h2 {
  margin: 0 0 18px;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1.45;
}

.ai-report .section-header {
  margin: 0 0 22px;
  padding: 0 0 13px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1.45;
}

.ai-report > div:nth-child(2) .text-sm {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.ai-report .space-y-3 {
  display: grid;
  gap: 14px;
}

.ai-report .space-y-1\.5,
.ai-report .space-y-2 {
  display: grid;
  gap: 8px;
}

.ai-report .flex {
  display: flex;
}

.ai-report .grid {
  display: grid;
}

.ai-report .flex-wrap {
  flex-wrap: wrap;
}

.ai-report .items-center {
  align-items: center;
}

.ai-report .items-start {
  align-items: flex-start;
}

.ai-report .justify-between {
  justify-content: space-between;
}

.ai-report .gap-2 {
  gap: 8px;
}

.ai-report .gap-3 {
  gap: 12px;
}

.ai-report .gap-4 {
  gap: 16px;
}

.ai-report .grid-cols-1 {
  grid-template-columns: 1fr;
}

.ai-report .mb-1 {
  margin-bottom: 4px;
}

.ai-report .mb-2 {
  margin-bottom: 8px;
}

.ai-report .mb-3 {
  margin-bottom: 12px;
}

.ai-report .mt-3 {
  margin-top: 12px;
}

.ai-report .mb-4 {
  margin-bottom: 16px;
}

.ai-report .mb-8 {
  margin-bottom: 32px;
}

.ai-report .mt-4 {
  margin-top: 16px;
}

.ai-report .mt-8 {
  margin-top: 32px;
}

.ai-report .mr-2 {
  margin-right: 8px;
}

.ai-report .ml-2 {
  margin-left: 8px;
}

.ai-report .p-3 {
  padding: 12px;
}

.ai-report .p-5 {
  padding: 20px;
}

.ai-report .p-6 {
  padding: 24px;
}

.ai-report .px-2 {
  padding-right: 8px;
  padding-left: 8px;
}

.ai-report .py-0\.5 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.ai-report .rounded {
  border-radius: 999px;
}

.ai-report .rounded-xl {
  border-radius: 16px;
}

.ai-report .rounded-2xl {
  border-radius: 22px;
}

.ai-report .border {
  border: 1px solid var(--line);
}

.ai-report .border-slate-200 {
  border-color: var(--line);
}

.ai-report .bg-white {
  background: var(--white);
}

.ai-report .bg-slate-50,
.ai-report .bg-slate-100 {
  background: var(--silver-100);
}

.ai-report .text-xs {
  font-size: 12px;
}

.ai-report .text-sm {
  font-size: 14px;
}

.ai-report .text-lg {
  font-size: 18px;
}

.ai-report .text-2xl {
  font-size: 24px;
}

.ai-report .font-medium {
  font-weight: 600;
}

.ai-report .font-semibold {
  font-weight: 700;
}

.ai-report .text-slate-400,
.ai-report .text-slate-500,
.ai-report .text-slate-600,
.ai-report .text-slate-700 {
  color: var(--muted);
}

.ai-report .text-blue-700 {
  color: var(--blue-500);
}

.ai-report .text-red-700 {
  color: #8f3e45;
}

.ai-report .text-green-700 {
  color: #416b5e;
}

.ai-report .news-card {
  position: relative;
  padding: 23px 25px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ai-report .news-card::after {
  position: absolute;
  right: 22px;
  bottom: 15px;
  color: var(--silver-500);
  content: "DETAIL  ＋";
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ai-report .news-card:hover,
.ai-report .news-card:focus-visible,
.ai-report .news-card.is-open {
  border-color: var(--blue-300);
  box-shadow: 0 18px 42px rgba(7, 24, 48, 0.09);
  transform: translateY(-1px);
}

.ai-report .news-card.is-open::after {
  content: "CLOSE  −";
}

.ai-report .news-card > .flex {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 155px;
  gap: 30px;
  align-items: start;
}

.ai-report .news-card .text-xs.font-mono {
  color: var(--blue-500);
  font-family: "Times New Roman", serif;
  font-size: 13px;
}

.ai-report .label {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  margin-left: 6px;
  padding: 2px 7px;
  border: 1px solid var(--silver-300);
  color: var(--muted);
  background: var(--silver-100);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.ai-report .bg-red-100 {
  border-color: #cf9a9e;
  color: #8f3e45;
  background: #fbf0f1;
}

.ai-report .bg-amber-100 {
  border-color: #d4b37d;
  color: #805a22;
  background: #fcf5e9;
}

.ai-report .bg-emerald-100 {
  border-color: #9bbcaf;
  color: #416b5e;
  background: #edf6f2;
}

.ai-report .bg-blue-100,
.ai-report .bg-blue-50 {
  border-color: #b9cde5;
  color: #315f93;
  background: #eef5fc;
}

.ai-report .bg-green-100 {
  border-color: #9bbcaf;
  color: #416b5e;
  background: #edf6f2;
}

.ai-report .bg-purple-100 {
  border-color: #c6b8df;
  color: #62498a;
  background: #f4f0fb;
}

.ai-report .bg-orange-100 {
  border-color: #d4b37d;
  color: #805a22;
  background: #fcf5e9;
}

.ai-report .news-headline {
  margin: 8px 0 0;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 500;
  line-height: 1.55;
}

.ai-report .news-summary,
.ai-report .report-summary-body,
.ai-report .report-summary-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.ai-report .news-summary {
  margin: 12px 0 18px;
}

.ai-report .source-heading {
  margin-bottom: 7px;
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.ai-report .text-right {
  text-align: right;
}

.ai-report .report-source-link {
  display: inline-block;
  margin-bottom: 4px;
  min-height: 0;
  padding: 0;
  color: var(--blue-500);
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ai-report .report-source-link::after {
  margin-left: 4px;
  content: "↗";
}

.ai-report .source-note {
  display: inline-block;
  color: var(--muted);
  font-size: 12px;
}

.ai-report .report-comment {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--blue-300);
  color: var(--muted);
  background: var(--silver-100);
  font-size: 12px;
  line-height: 1.75;
}

.ai-report .details {
  display: none;
  margin-top: 18px;
  padding: 18px 0 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.ai-report .news-card:hover .details,
.ai-report .news-card:focus-within .details,
.ai-report .news-card.is-open .details {
  display: block;
}

.ai-report .details > div {
  margin-top: 13px;
  padding: 13px 15px;
  border-left: 2px solid var(--blue-300);
  color: var(--muted);
  background: var(--silver-100);
  font-size: 11px;
  line-height: 1.8;
}

.ai-report > div:last-child {
  margin-top: 12px;
  padding: 22px 4px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

@media (min-width: 1024px) {
  .ai-report .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.leaders-section {
  padding-top: 142px;
  background:
    radial-gradient(circle at 16% 8%, rgba(85, 139, 201, 0.22), transparent 34%),
    linear-gradient(180deg, var(--navy-900) 0, var(--navy-900) 430px, var(--silver-100) 430px);
}

.leaders-page {
  max-width: 1280px;
  color: var(--navy-800);
}

.leaders-page > .flex.items-start.justify-between {
  display: grid;
  min-height: 230px;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.leaders-page h1 {
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.leaders-page h2,
.leaders-page h3 {
  color: var(--navy-800);
}

.leaders-page > .flex.items-start.justify-between p {
  max-width: 860px;
  margin: 14px 0 0;
  color: var(--silver-300);
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.8;
}

.leaders-page > .flex.items-start.justify-between > div:last-child {
  color: var(--silver-300);
  font-size: 11px;
  line-height: 1.8;
}

.leaders-page .flex { display: flex; }
.leaders-page .grid { display: grid; }
.leaders-page .flex-col { flex-direction: column; }
.leaders-page .flex-wrap { flex-wrap: wrap; }
.leaders-page .flex-1 { flex: 1; }
.leaders-page .items-center { align-items: center; }
.leaders-page .items-start { align-items: flex-start; }
.leaders-page .justify-between { justify-content: space-between; }
.leaders-page .gap-1 { gap: 4px; }
.leaders-page .gap-2 { gap: 8px; }
.leaders-page .gap-3 { gap: 12px; }
.leaders-page .gap-4 { gap: 16px; }
.leaders-page .w-full { width: 100%; }
.leaders-page .ml-auto { margin-left: auto; }
.leaders-page .mx-auto { margin-right: auto; margin-left: auto; }
.leaders-page .mt-0\.5 { margin-top: 2px; }
.leaders-page .mt-1 { margin-top: 4px; }
.leaders-page .mt-2 { margin-top: 8px; }
.leaders-page .mt-3 { margin-top: 12px; }
.leaders-page .mt-6 { margin-top: 24px; }
.leaders-page .mt-8 { margin-top: 32px; }
.leaders-page .mb-1 { margin-bottom: 4px; }
.leaders-page .mb-2 { margin-bottom: 8px; }
.leaders-page .mb-3 { margin-bottom: 12px; }
.leaders-page .mb-6 { margin-bottom: 24px; }
.leaders-page .p-2 { padding: 8px; }
.leaders-page .p-3 { padding: 12px; }
.leaders-page .p-4 { padding: 16px; }
.leaders-page .p-5 { padding: 20px; }
.leaders-page .px-1 { padding-right: 4px; padding-left: 4px; }
.leaders-page .px-1\.5 { padding-right: 6px; padding-left: 6px; }
.leaders-page .px-2 { padding-right: 8px; padding-left: 8px; }
.leaders-page .px-3 { padding-right: 12px; padding-left: 12px; }
.leaders-page .py-0\.5 { padding-top: 2px; padding-bottom: 2px; }
.leaders-page .py-1\.5 { padding-top: 6px; padding-bottom: 6px; }
.leaders-page .py-px { padding-top: 1px; padding-bottom: 1px; }
.leaders-page .pl-5 { padding-left: 20px; }
.leaders-page .rounded { border-radius: 999px; }
.leaders-page .rounded-lg { border-radius: 12px; }
.leaders-page .rounded-xl { border-radius: 18px; }
.leaders-page .rounded-2xl { border-radius: 22px; }
.leaders-page .border { border: 1px solid var(--line); }
.leaders-page .border-slate-100 { border-color: #edf1f6; }
.leaders-page .border-slate-200 { border-color: var(--line); }
.leaders-page .border-slate-300 { border-color: var(--silver-300); }
.leaders-page .border-blue-200 { border-color: #c7d7eb; }
.leaders-page .border-red-200 { border-color: #e7c6c9; }
.leaders-page .border-emerald-200 { border-color: #c7ddd3; }
.leaders-page .border-amber-200 { border-color: #e6d3ad; }
.leaders-page .border-purple-200,
.leaders-page .border-violet-200 { border-color: #d7cceb; }
.leaders-page .border-teal-200 { border-color: #bedbd8; }
.leaders-page .border-orange-200 { border-color: #e8c9ad; }
.leaders-page .border-rose-200 { border-color: #e9c4cc; }
.leaders-page .bg-white { background: var(--white); }
.leaders-page .bg-slate-50 { background: #f8fafc; }
.leaders-page .bg-slate-200 { background: #e7edf3; }
.leaders-page .bg-slate-800 { background: var(--navy-800); }
.leaders-page .bg-blue-100 { background: #eaf2fb; }
.leaders-page .bg-red-100 { background: #fbf0f1; }
.leaders-page .bg-emerald-100 { background: #edf6f2; }
.leaders-page .shadow-sm { box-shadow: 0 18px 45px rgba(7, 17, 31, 0.08); }
.leaders-page .inline-flex { display: inline-flex; }
.leaders-page .list-disc { list-style: disc; }
.leaders-page .space-y-0\.5 > * + * { margin-top: 2px; }
.leaders-page .space-y-1 > * + * { margin-top: 4px; }
.leaders-page .grid-cols-1 { grid-template-columns: 1fr; }
.leaders-page .text-right { text-align: right; }
.leaders-page .text-center { text-align: center; }
.leaders-page .tracking-tight { letter-spacing: -0.03em; }
.leaders-page .font-bold { font-weight: 700; }
.leaders-page .font-semibold { font-weight: 650; }
.leaders-page .font-medium { font-weight: 600; }
.leaders-page .font-normal { font-weight: 400; }
.leaders-page .text-\[10px\] { font-size: 10px; }
.leaders-page .text-\[11px\] { font-size: 11px; }
.leaders-page .text-xs { font-size: 12px; }
.leaders-page .text-sm { font-size: 14px; }
.leaders-page .text-lg { font-size: 18px; }
.leaders-page .text-xl { font-size: 22px; }
.leaders-page .text-3xl { font-size: clamp(30px, 4vw, 46px); }
.leaders-page .text-white { color: var(--white); }
.leaders-page .text-slate-400 { color: #8a98aa; }
.leaders-page .text-slate-500 { color: var(--muted); }
.leaders-page .text-slate-600 { color: var(--muted); }
.leaders-page .text-slate-700 { color: var(--navy-700); }
.leaders-page .text-slate-800 { color: var(--navy-800); }
.leaders-page .text-blue-600,
.leaders-page .text-blue-700 { color: var(--blue-500); }
.leaders-page .text-red-600,
.leaders-page .text-red-700 { color: #a9464e; }
.leaders-page .text-emerald-700 { color: #3f745f; }
.leaders-page a.text-blue-600 {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.leaders-page .filter-btn {
  min-height: 34px;
  border-radius: 999px;
  color: var(--navy-700);
  background: rgba(255, 255, 255, 0.78);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.leaders-page .filter-btn:hover {
  border-color: var(--blue-300);
  background: var(--white);
  transform: translateY(-1px);
}

.leaders-page .filter-btn.active {
  border-color: var(--blue-500);
  color: var(--white);
  background: var(--blue-500);
}

.leaders-page .grid.grid-cols-1.lg\:grid-cols-12 {
  align-items: stretch;
}

.leaders-page #graph-container {
  min-height: 620px;
  background:
    linear-gradient(rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    #f8fafc;
  background-size: 28px 28px;
}

.leaders-page .panel {
  max-height: 420px;
  overflow-y: auto;
}

.leaders-page .statement {
  border-left: 3px solid var(--blue-500);
  line-height: 1.75;
}

.leaders-page .statement.japan,
.leaders-page .japan {
  border-left-color: #c84a56;
}

.leaders-page .node {
  cursor: pointer;
  transition: stroke 0.2s ease, stroke-width 0.2s ease;
}

.leaders-page .node:hover {
  stroke: var(--blue-500);
  stroke-width: 3;
}

.leaders-page .node.person { stroke: #1e40af; }
.leaders-page .node.topic { stroke: #166534; }
.leaders-page .link {
  stroke: #64748b;
  stroke-opacity: 0.75;
  stroke-width: 2.2;
}
.leaders-page .link:hover {
  stroke: #334155;
  stroke-opacity: 0.9;
}
.leaders-page .label {
  font-size: 10.5px;
  pointer-events: none;
  fill: #1e2937;
  font-weight: 500;
}

.leaders-page .cursor-pointer {
  cursor: pointer;
}

.leaders-page > .grid + .mt-8,
.leaders-page > .mt-8.bg-white {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.leaders-page > .mt-8 h2 {
  margin: 0 0 18px;
  font-family: "Yu Mincho", serif;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 500;
}

.leaders-page > .mt-8 .grid {
  gap: 14px;
}

.leaders-page > .mt-8.bg-white h3 {
  margin: 0 0 12px;
  font-family: "Yu Mincho", serif;
  font-size: 22px;
  font-weight: 500;
}

.leaders-page > .mt-8.bg-white ul {
  margin: 0;
  line-height: 1.85;
}

.leaders-page .hidden {
  display: none;
}

@media (min-width: 768px) {
  .leaders-page .md\:block {
    display: block;
  }

  .leaders-page .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .leaders-page .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .leaders-page .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .leaders-page .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .leaders-page .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }
}

@media (max-width: 920px) {
  .leaders-section {
    padding-top: 118px;
    background:
      radial-gradient(circle at 20% 5%, rgba(85, 139, 201, 0.18), transparent 42%),
      linear-gradient(180deg, var(--navy-900) 0, var(--navy-900) 500px, var(--silver-100) 500px);
  }

  .leaders-page > .flex.items-start.justify-between {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
  }

  .leaders-page > .flex.items-start.justify-between > div:last-child {
    text-align: left;
  }

  .leaders-page .filter-btn.ml-auto {
    margin-left: 0;
  }

  .leaders-page .grid.grid-cols-1.lg\:grid-cols-12 {
    gap: 18px;
  }

  .leaders-page #graph-container {
    min-height: 500px;
  }
}

.trend-feature-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trend-date {
  color: var(--blue-500);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.trend-index {
  color: var(--silver-300);
  font-family: "Times New Roman", serif;
  font-size: 86px;
  font-style: italic;
  line-height: 1;
}

.trend-feature h2 {
  margin: 0 0 22px;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.5;
}

.trend-feature p {
  margin: 0;
  color: var(--muted);
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.trend-card {
  min-height: 365px;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
}

.trend-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.trend-card-head span:first-child {
  color: var(--blue-500);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.trend-card-head span:last-child {
  color: var(--silver-500);
  font-family: "Times New Roman", serif;
  font-size: 25px;
  font-style: italic;
}

.trend-card h3 {
  margin: 0 0 16px;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.5;
}

.trend-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.insight-box {
  margin-top: 25px;
  padding: 18px 20px;
  border-left: 2px solid var(--blue-500);
  background: var(--silver-100);
  font-size: 13px;
}

.insight-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-800);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.14);
}

.source-link {
  display: flex;
  min-height: 92px;
  gap: 22px;
  align-items: center;
  padding: 24px;
  background: var(--navy-950);
}

.source-link span {
  color: var(--blue-300);
  font-family: "Times New Roman", serif;
  font-size: 18px;
}

.source-link strong {
  display: block;
  color: var(--white);
  font-size: 13px;
}

.source-link small {
  display: block;
  margin-top: 3px;
  color: var(--silver-500);
  font-size: 10px;
}

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

.lesson-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 38px 32px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.lesson-level {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  color: var(--blue-500);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.lesson-level span:last-child {
  color: var(--silver-500);
}

.lesson-card h2 {
  margin: 0 0 17px;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
}

.lesson-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lesson-topics {
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
}

.lesson-topics li {
  padding: 7px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.lesson-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.lesson-link::after {
  content: "↓";
}

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

.course-module {
  padding: 110px 0;
  scroll-margin-top: 72px;
}

.course-module:nth-child(even) {
  background: #f4f6f8;
}

.module-header {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 55px;
  align-items: start;
  margin-bottom: 60px;
}

.module-number {
  color: var(--blue-500);
  font-family: "Times New Roman", serif;
  font-size: 62px;
  font-style: italic;
  line-height: 1;
}

.module-number small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.module-header h2 {
  margin: 0 0 20px;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: clamp(31px, 4vw, 49px);
  font-weight: 500;
  line-height: 1.4;
}

.module-header p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.learning-objectives {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.learning-objectives span {
  padding: 6px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 11px;
}

.lesson-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lesson-block {
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
}

.lesson-block-full {
  grid-column: 1 / -1;
}

.lesson-block-label {
  display: block;
  margin-bottom: 20px;
  color: var(--blue-500);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.lesson-block h3 {
  margin: 0 0 16px;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.lesson-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lesson-block p + p {
  margin-top: 15px;
}

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

.concept-step {
  min-height: 135px;
  padding: 22px;
  background: var(--silver-100);
}

.concept-step span {
  color: var(--blue-500);
  font-family: "Times New Roman", serif;
  font-size: 13px;
}

.concept-step strong {
  display: block;
  margin-top: 18px;
  color: var(--navy-800);
  font-size: 14px;
}

.concept-step small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.example-box {
  margin-top: 22px;
  padding: 24px;
  border-left: 2px solid var(--blue-500);
  background: var(--silver-100);
  color: var(--ink);
  font-size: 13px;
  white-space: pre-line;
}

.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 27px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.check-list li::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  border: 1px solid var(--blue-500);
  color: var(--blue-500);
  content: "✓";
  font-size: 10px;
  line-height: 1;
  place-items: center;
}

.knowledge-check {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.knowledge-check details {
  border-bottom: 1px solid var(--line);
}

.knowledge-check summary {
  position: relative;
  padding: 18px 42px 18px 0;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.knowledge-check summary::-webkit-details-marker {
  display: none;
}

.knowledge-check summary::after {
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--blue-500);
  content: "+";
  font-size: 20px;
  font-weight: 400;
}

.knowledge-check details[open] summary::after {
  content: "−";
}

.knowledge-check details p {
  padding: 0 38px 20px 0;
  color: var(--muted);
  font-size: 13px;
}

.course-next {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 35px;
}

.course-next a {
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.course-next a::after {
  margin-left: 10px;
  content: "↓";
}

.glossary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.glossary-item {
  padding: 30px 30px 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.glossary-item:nth-child(even) {
  padding-right: 0;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.glossary-item dt {
  color: var(--blue-300);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.glossary-item dd {
  margin: 8px 0 0;
  color: var(--silver-300);
  font-size: 13px;
}

.talent-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
  border: 1px solid var(--line);
}

.flow-step {
  position: relative;
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.flow-step:last-child {
  border-right: 0;
}

.flow-step:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -11px;
  display: grid;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  color: var(--blue-500);
  background: var(--white);
  content: "›";
  line-height: 1;
  transform: translateY(-50%);
  place-items: center;
}

.flow-step span {
  color: var(--blue-500);
  font-family: "Times New Roman", serif;
  font-size: 14px;
}

.flow-step h3 {
  margin: 28px 0 12px;
  color: var(--navy-800);
  font-size: 18px;
}

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

.form-wrap {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  align-items: start;
}

.form-aside {
  position: sticky;
  top: 110px;
}

.form-aside h2 {
  margin: 0 0 20px;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: 30px;
  font-weight: 500;
}

.form-aside p {
  color: var(--muted);
  font-size: 14px;
}

.form-panel {
  padding: 50px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(7, 17, 31, 0.06);
}

.form-note {
  margin: 0 0 35px;
  padding: 15px 18px;
  border-left: 2px solid var(--blue-500);
  color: var(--muted);
  background: var(--silver-100);
  font-size: 13px;
}

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

.field {
  margin-bottom: 26px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 700;
}

.required {
  margin-left: 7px;
  color: #9b4f53;
  font-size: 10px;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #ccd4dc;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 180px;
  padding: 14px 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(78, 143, 215, 0.12);
}

.check-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 5px 0 30px;
  color: var(--muted);
  font-size: 13px;
}

.check-field input {
  margin-top: 7px;
}

.form-status {
  display: none;
  margin-top: 20px;
  padding: 13px 16px;
  color: var(--navy-700);
  background: #edf4fa;
  font-size: 13px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #1b6748;
}

.form-status.is-error {
  color: #a43b43;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.join-hero {
  min-height: 560px;
}

.join-hero-content .join-hero-kicker {
  margin: 0 0 20px;
  color: var(--blue-300);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.join-hero-content > p:not(.join-hero-kicker) {
  margin-bottom: 30px;
}

.join-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.join-intro-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.join-intro-copy > p + p {
  margin-top: 18px;
}

.join-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.join-tags span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  color: var(--navy-700);
  background: var(--silver-100);
  font-size: 11px;
  font-weight: 700;
}

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

.join-work-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 34px 30px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.join-work-card > span {
  color: var(--blue-500);
  font-family: "Times New Roman", serif;
  font-size: 20px;
}

.join-work-card small,
.join-term small {
  margin-top: 36px;
  color: var(--blue-500);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.join-work-card h3,
.join-term h3 {
  margin: 14px 0;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
}

.join-work-card > p,
.join-term p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.join-work-card dl {
  margin: auto 0 0;
}

.join-work-card dl div {
  display: grid;
  grid-template-columns: 55px 1fr;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.join-work-card dt {
  color: var(--blue-500);
  font-weight: 700;
}

.join-work-card dd {
  margin: 0;
  color: var(--muted);
}

.join-impact-head {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.join-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  background: rgba(255, 255, 255, 0.15);
}

.join-impact-grid article {
  min-height: 290px;
  padding: 38px 32px;
  background: var(--navy-950);
}

.join-impact-grid strong {
  color: var(--blue-300);
  font-family: "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
}

.join-impact-grid h3 {
  margin: 45px 0 14px;
  color: var(--white);
  font-family: "Yu Mincho", serif;
  font-size: 22px;
  font-weight: 500;
}

.join-impact-grid p {
  margin: 0;
  color: var(--silver-500);
  font-size: 13px;
}

.join-requirements {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.requirement-columns {
  display: grid;
  gap: 20px;
}

.requirement-panel {
  padding: 32px;
  border-top: 2px solid var(--blue-500);
  background: var(--silver-100);
}

.requirement-panel > span {
  color: var(--blue-500);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.requirement-panel h3 {
  margin: 10px 0 20px;
  color: var(--navy-800);
  font-family: "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 500;
}

.requirement-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.requirement-panel li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.requirement-panel li::before {
  position: absolute;
  top: 20px;
  left: 2px;
  width: 7px;
  height: 1px;
  content: "";
  background: var(--blue-500);
}

.join-terms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 55px;
  border: 1px solid var(--line);
  background: var(--line);
}

.join-term {
  min-height: 275px;
  padding: 30px 26px;
  background: var(--white);
}

.join-term small {
  display: block;
  margin-top: 0;
}

.join-term h3 {
  font-size: 19px;
}

.join-terms-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.join-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.join-flow article {
  position: relative;
  padding: 30px 30px 0 0;
}

.join-flow article:not(:last-child)::after {
  position: absolute;
  top: -4px;
  right: 20px;
  color: var(--blue-500);
  content: "→";
  font-size: 14px;
}

.join-flow span {
  color: var(--blue-500);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.join-flow h3 {
  margin: 22px 0 10px;
  color: var(--navy-800);
  font-size: 17px;
}

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

.join-registration {
  scroll-margin-top: 70px;
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(7, 17, 31, 0.98), rgba(16, 35, 61, 0.9)),
    url("../images/hero-geometry.svg") center / cover;
}

.cta-inner {
  display: flex;
  min-height: 330px;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.cta-inner h2 {
  max-width: 720px;
  margin: 0;
  font-family: "Yu Mincho", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.5;
}

.cta-inner p {
  margin: 12px 0 0;
  color: var(--silver-300);
}

.site-footer {
  padding: 75px 0 30px;
  color: var(--silver-300);
  background: #050c16;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 55px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 390px;
  margin: 25px 0 0;
  color: var(--silver-500);
  font-size: 13px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 35px;
}

.footer-nav a {
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--silver-300);
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.09em;
}

.footer-bottom {
  display: flex;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
  color: var(--silver-500);
  font-size: 10px;
  letter-spacing: 0.07em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1000px) {
  .global-nav {
    gap: 16px;
  }

  .global-nav a {
    font-size: 10px;
  }

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

  .card-grid,
  .profile-grid,
  .learning-path {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .join-work-card {
    min-height: 400px;
  }

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

  .flow-step:nth-child(2) {
    border-right: 0;
  }

  .flow-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .flow-step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 85px 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .header-navs {
    display: contents;
  }

  .utility-nav {
    position: fixed;
    z-index: 102;
    right: 12vw;
    bottom: 42px;
    left: 12vw;
    display: grid;
    gap: 0;
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .menu-open .utility-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .utility-nav a {
    justify-content: space-between;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 12px;
  }

  .utility-nav a::after,
  .site-header.scrolled .utility-nav a::after,
  .site-header.header-light .utility-nav a::after {
    color: var(--blue-300);
  }

  .global-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 12vw;
    color: var(--white);
    background: rgba(7, 17, 31, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .menu-open .global-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-open .site-header {
    color: var(--white);
    background: transparent;
    box-shadow: none;
  }

  .global-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 17px;
  }

  .nav-group {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 48px;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-group .nav-parent {
    border-bottom: 0;
  }

  .submenu-toggle {
    width: 48px;
    height: 54px;
    color: var(--white);
  }

  .submenu-toggle::before {
    top: 20px;
    left: 19px;
    width: 8px;
    height: 8px;
  }

  .nav-group.submenu-open .submenu-toggle::before {
    top: 24px;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    padding: 0 0 10px 22px;
    color: var(--silver-300);
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-group.submenu-open .submenu {
    display: block;
    transform: none;
  }

  .submenu a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
  }

  .submenu a:hover {
    background: transparent;
  }

  .global-nav .nav-cta {
    margin-top: 22px;
    padding: 14px 20px;
    text-align: center;
  }

  .hero {
    min-height: 720px;
  }

  .statement,
  .split,
  .form-wrap,
  .join-intro,
  .join-requirements {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .join-impact-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .join-impact-grid {
    grid-template-columns: 1fr;
  }

  .join-impact-grid article {
    min-height: 0;
  }

  .join-impact-grid h3 {
    margin-top: 25px;
  }

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

  .join-flow article:nth-child(2)::after {
    display: none;
  }

  .trend-feature {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trend-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .trend-page .trend-hero {
    min-height: 470px;
    padding: 120px 0 42px;
  }

  .headline-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-item {
    grid-template-columns: 120px 1fr;
  }

  .news-source-compact {
    grid-column: 2;
    justify-self: start;
  }

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

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

  .news-takeaway {
    grid-column: 2;
  }

  .module-header {
    grid-template-columns: 110px 1fr;
    gap: 30px;
  }

  .trend-feature-meta {
    flex-direction: row;
  }

  .concept-visual {
    max-width: 570px;
    min-height: 460px;
  }

  .service-item {
    grid-template-columns: 60px 1fr;
  }

  .service-body {
    grid-column: 2;
  }

  .form-aside {
    position: static;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow,
  .hero-content,
  .header-inner {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .site-header {
    height: 70px;
  }

  .site-header.scrolled,
  .site-header.header-light {
    height: 64px;
  }

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

  .brand-text small {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .join-hero {
    min-height: 570px;
  }

  .join-work-grid,
  .join-terms-grid,
  .join-flow {
    grid-template-columns: 1fr;
  }

  .join-work-card {
    min-height: 0;
  }

  .join-work-card dl {
    margin-top: 35px;
  }

  .join-flow article {
    padding-right: 0;
  }

  .join-flow article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -8px;
    left: 0;
    content: "↓";
  }

  .hero::after {
    right: -90px;
    width: 270px;
  }

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

  .hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero-copy br {
    display: none;
  }

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

  .hero-index {
    display: none;
  }

  .section-title {
    font-size: 32px;
  }

  .statement {
    gap: 25px;
  }

  .statement-copy {
    font-size: 25px;
  }

  .concept-visual {
    min-height: 390px;
    overflow: hidden;
  }

  .concept-circle {
    width: 260px;
    height: 260px;
  }

  .concept-circle:first-child {
    left: -25px;
  }

  .concept-circle:last-child {
    right: -25px;
  }

  .card-grid,
  .profile-grid,
  .fellow-grid,
  .principles,
  .trend-grid,
  .learning-path,
  .source-list,
  .glossary {
    grid-template-columns: 1fr;
  }

  .trend-feature {
    padding: 30px 22px;
  }

  .trend-page .trend-hero {
    min-height: 500px;
    padding: 105px 0 30px;
  }

  .trend-hero-grid {
    gap: 25px;
  }

  .trend-page .trend-hero h1 {
    font-size: 49px;
  }

  .trend-edition {
    margin-bottom: 12px !important;
  }

  .trend-hero-stat {
    min-height: 78px;
    padding: 13px 14px;
  }

  .trend-hero-stat strong {
    font-size: 14px;
  }

  .trend-headlines {
    padding: 48px 0 65px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 19px 0;
  }

  .news-takeaway {
    grid-column: auto;
  }

  .news-source-compact {
    grid-column: auto;
    justify-self: start;
    margin-top: 5px;
  }

  .weekly-summary {
    grid-template-columns: 1fr;
  }

  .weekly-stat {
    min-height: auto;
  }

  .deep-dive-grid,
  .news-brief-list,
  .weekly-analysis {
    grid-template-columns: 1fr;
  }

  .deep-dive-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .timeline-row {
    grid-template-columns: 60px 1fr;
    gap: 18px;
  }

  .ai-report-section {
    padding-top: 108px;
    background:
      linear-gradient(180deg, var(--navy-900) 0, var(--navy-900) 455px, var(--silver-100) 455px);
  }

  .ai-report > div:first-child {
    min-height: 245px;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .ai-report > div:first-child > div:last-child {
    max-width: none;
    text-align: left;
  }

  .ai-report > div:nth-child(2),
  .ai-report > section {
    padding: 25px 20px;
  }

  .ai-report .news-card {
    padding: 21px 18px 38px;
  }

  .ai-report .news-card > .flex {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ai-report .text-right {
    text-align: left;
  }

  .ai-report .details {
    display: block;
  }

  .ai-report .news-card::after {
    display: none;
  }

  .trend-index {
    font-size: 55px;
  }

  .trend-card,
  .lesson-card {
    min-height: auto;
  }

  .course-module {
    padding: 75px 0;
  }

  .module-header,
  .lesson-body {
    grid-template-columns: 1fr;
  }

  .module-header {
    gap: 24px;
  }

  .module-number {
    font-size: 46px;
  }

  .lesson-block-full {
    grid-column: auto;
  }

  .lesson-block {
    padding: 28px 22px;
  }

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

  .lesson-topics {
    margin-top: 30px;
  }

  .glossary-item:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .card {
    min-height: 280px;
  }

  .fellow-card {
    min-height: 380px;
  }

  .page-hero {
    min-height: 370px;
    padding: 130px 0 60px;
  }

  .page-hero::after {
    right: -120px;
  }

  .page-hero h1 {
    font-size: 49px;
  }

  .data-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-body {
    grid-column: 1;
  }

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

  .flow-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-step:not(:last-child)::after {
    display: none;
  }

  .form-panel {
    padding: 30px 22px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .cta-inner {
    flex-direction: column;
    min-height: 360px;
    align-items: flex-start;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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