@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Public+Sans:wght@500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap");

:root {
  --bg: #f3f4f6;
  --bg-soft: #eef1f5;
  --panel: #ffffff;
  --panel-soft: #f8f9fb;
  --line: #d9dde3;
  --line-strong: #bcc4ce;
  --ink: #14171c;
  --ink-soft: #48515c;
  --muted: #6b7683;
  --accent: #d7132f;
  --accent-strong: #b40f27;
  --accent-soft: rgba(215, 19, 47, 0.08);
  --shadow: 0 10px 28px rgba(20, 23, 28, 0.06);
  --font-display:
    "BIZ UDPMincho",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "MS PMincho",
    serif;
  --font-ui:
    "Aptos",
    "Hiragino Sans",
    "Yu Gothic UI",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fafbfc 0, var(--bg) 220px, var(--bg-soft) 100%);
  font-family: var(--font-ui);
  line-height: 1.6;
}

body.studio-page {
  background:
    linear-gradient(180deg, #f7f8fa 0, #f0f2f5 260px, var(--bg-soft) 100%);
}

body.public-page {
  color: #1a1512;
  background: linear-gradient(180deg, #f7f0e3 0, #ece3d4 240px, #f7f2e8 100%);
}

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

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

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(215, 19, 47, 0.18);
  outline-offset: 2px;
}

.site-header,
.studio-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

body.public-page .site-header {
  border-bottom-color: rgba(76, 60, 47, 0.16);
  background: rgba(248, 242, 233, 0.92);
}

.site-header__inner,
.studio-header__inner,
.public-shell,
.studio-shell,
.article-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header__inner,
.studio-header__inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-brand {
  display: grid;
  gap: 2px;
}

.site-brand__eyebrow,
.eyebrow {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-brand strong {
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-header .site-brand strong {
  color: var(--accent);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-nav a,
.text-link,
.filter-chip,
.studio-tab,
.company-list a,
.news-banner,
.primary-button,
.ghost-button {
  transition:
    color 140ms ease,
    background-color 140ms ease,
    border-color 140ms ease,
    transform 140ms ease,
    box-shadow 140ms ease;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--accent-strong);
}

.public-shell,
.studio-shell,
.article-shell {
  padding: 18px 0 56px;
}

.public-shell,
.studio-shell {
  display: grid;
  gap: 18px;
}

.public-shell--home {
  gap: 40px;
  padding-top: 30px;
}

.public-shell--home .flash-message {
  border-radius: 0;
  border: 1px solid rgba(98, 66, 49, 0.16);
  background: rgba(255, 247, 238, 0.88);
  box-shadow: none;
}

.home-hero {
  display: grid;
  gap: 30px;
}

.home-hero__head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.7fr);
  gap: 40px;
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(92, 70, 56, 0.16);
}

.home-hero__copy h1 {
  margin: 8px 0 0;
  max-width: 9ch;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.4vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.home-hero__tagline {
  margin: 16px 0 0;
  color: var(--accent-strong);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home-hero__lede {
  margin: 14px 0 0;
  max-width: 44rem;
  color: #564740;
  font-size: 1.02rem;
  line-height: 1.8;
}

.home-hero__stamp {
  margin: 0;
  display: grid;
  gap: 16px;
  padding-left: 24px;
  border-left: 1px solid rgba(92, 70, 56, 0.16);
}

.home-hero__stamp div {
  display: grid;
  gap: 4px;
}

.home-hero__stamp dt {
  color: #7b695f;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero__stamp dd {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lead-story {
  display: grid;
  gap: 16px;
  padding: 30px 0 24px;
  border-top: 4px solid #1e1714;
  border-bottom: 1px solid rgba(92, 70, 56, 0.18);
  animation: editorial-rise 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-story--empty {
  border-top-color: rgba(92, 70, 56, 0.32);
}

.lead-story--with-image {
  grid-template-columns: 196px minmax(0, 1fr);
  align-items: start;
  column-gap: 24px;
}

.lead-story__label {
  margin: 0;
  grid-column: 1 / -1;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-story__body {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.lead-story__media {
  align-self: start;
  border-radius: 18px;
  background: linear-gradient(180deg, #f6f1ea 0, #ebe3d8 100%);
}

.lead-story__title {
  margin: 0;
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.lead-story__excerpt {
  margin: 0;
  max-width: 44rem;
  color: #4e423b;
  font-size: 1.05rem;
  line-height: 1.8;
}

.lead-story__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  color: #6c5b51;
  font-size: 0.84rem;
}

.lead-story__company {
  color: #241815;
  font-weight: 700;
}

.lead-story__cta {
  color: var(--accent-strong);
  margin-left: auto;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-story:hover .lead-story__title {
  color: var(--accent-strong);
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.editorial-main {
  display: grid;
  gap: 34px;
}

.editorial-controls {
  display: grid;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(92, 70, 56, 0.16);
}

.section-line--feed {
  padding-bottom: 14px;
}

.section-line--feed h2 {
  font-family: var(--font-display);
  font-size: 1.72rem;
  letter-spacing: -0.04em;
}

body.public-page .editorial-controls .search-form {
  padding: 0;
}

body.public-page .editorial-controls .search-form__field input {
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(92, 70, 56, 0.22);
  border-radius: 0;
  background: transparent;
}

body.public-page .editorial-controls .search-form__field input:focus {
  box-shadow: none;
  border-bottom-color: var(--accent-strong);
}

.filter-chip-row--editorial {
  padding-bottom: 0;
}

body.public-page .filter-chip-row--editorial .filter-chip {
  min-height: 34px;
  padding: 0 12px;
  border-color: rgba(92, 70, 56, 0.16);
  background: transparent;
  color: #5b4b43;
}

body.public-page .filter-chip-row--editorial .filter-chip:hover {
  background: rgba(255, 255, 255, 0.55);
}

body.public-page .filter-chip-row--editorial .filter-chip--active {
  color: var(--public-blue);
}

.editorial-feed {
  display: grid;
  gap: 10px;
}

.editorial-feed__list {
  display: grid;
}

.feed-item,
.feed-empty {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 26px;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(92, 70, 56, 0.16);
}

.feed-empty {
  grid-template-columns: 1fr;
  padding-bottom: 0;
}

.feed-item:first-child,
.feed-empty:first-child {
  border-top: 0;
}

.feed-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: transparent;
  transition: background-color 160ms ease;
}

.feed-item__index {
  color: rgba(45, 28, 23, 0.34);
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1;
}

.feed-item__body {
  min-width: 0;
}

.feed-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: #7a695e;
  font-size: 0.82rem;
}

.feed-item__company {
  color: #241815;
  font-weight: 700;
}

.feed-item__title {
  margin: 4px 0 0;
  font-size: 1.26rem;
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.feed-item__excerpt {
  margin: 8px 0 0;
  max-width: 44rem;
  color: #594a43;
  font-size: 0.95rem;
}

.feed-item__arrow {
  color: rgba(45, 28, 23, 0.34);
  font-size: 1rem;
  font-weight: 700;
  align-self: center;
  transition:
    transform 160ms ease,
    color 160ms ease;
}

.feed-item:hover::before {
  background: var(--accent);
}

.feed-item:hover .feed-item__title,
.feed-item:hover .feed-item__arrow {
  color: var(--accent-strong);
}

.feed-item:hover .feed-item__arrow {
  transform: translate(3px, -2px);
}

.feed-item,
.rail-module {
  animation: editorial-rise 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feed-item:nth-child(2) { animation-delay: 40ms; }
.feed-item:nth-child(3) { animation-delay: 80ms; }
.feed-item:nth-child(4) { animation-delay: 120ms; }
.feed-item:nth-child(5) { animation-delay: 160ms; }

.editorial-rail {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 30px;
  align-content: start;
}

.rail-module {
  display: grid;
  gap: 12px;
  padding-top: 10px;
  border-top: 2px solid rgba(92, 70, 56, 0.24);
}

.rail-module h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.46rem;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

body.public-page .rail-module .panel-note {
  margin-top: 0;
  color: #5d4d45;
  line-height: 1.75;
}

body.public-page .rail-module .request-form {
  margin-top: 0;
}

body.public-page .rail-module .request-form__field input,
body.public-page .rail-module .request-form__field textarea {
  border-color: rgba(92, 70, 56, 0.16);
  background: rgba(255, 255, 255, 0.58);
}

.company-list--rail {
  margin-top: 2px;
}

.company-list--rail li {
  border-top: 1px solid rgba(92, 70, 56, 0.14);
}

.company-list--rail a {
  padding: 14px 0;
}

.company-list--rail strong {
  color: #241815;
}

.news-feed--editorial {
  overflow: visible;
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(92, 70, 56, 0.14);
  border-top: 3px solid #231815;
  border-radius: 24px;
  box-shadow: none;
}

.public-shell--home .news-feed--editorial .section-line {
  padding: 18px 22px 14px;
  border-bottom-color: rgba(92, 70, 56, 0.14);
}

.public-shell--home .news-feed--editorial .news-banner,
.public-shell--home .news-feed--editorial .news-empty {
  padding: 18px 22px;
  background: transparent;
}

.public-shell--home .news-feed--editorial .news-banner {
  border-top-color: rgba(92, 70, 56, 0.12);
}

.public-shell--home .news-feed--editorial .news-banner:hover {
  background: rgba(255, 255, 255, 0.4);
}

.public-shell--home .news-feed--editorial .news-banner::before {
  top: 18px;
  bottom: 18px;
}

.public-shell--home .news-feed--editorial .news-banner--with-image {
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
}

.public-shell--home .news-feed--editorial .news-banner__media {
  border-radius: 14px;
  background: linear-gradient(180deg, #f6f1ea 0, #ebe3d8 100%);
}

.public-shell--home .news-feed--editorial .news-banner__title {
  font-size: 1.1rem;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.public-shell--home .news-feed--editorial .news-banner__meta {
  margin-top: 0;
}

.public-shell--home .news-feed--editorial .news-empty {
  padding-bottom: 24px;
}

@keyframes editorial-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.public-masthead,
.news-feed,
.news-panel,
.studio-hero,
.source-form,
.panel,
.studio-item,
.flash-message,
.not-found__card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.public-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 20px 22px;
  border-top: 4px solid var(--accent);
}

.public-masthead h1,
.studio-hero__copy h1,
.article-main h1,
.news-empty h2,
.not-found__card h1 {
  margin: 6px 0 8px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.public-masthead h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.public-masthead__lede,
.section-line p,
.source-row p,
.run-row span,
.not-found__card p,
.form-head p,
.studio-hero__copy p {
  margin: 0;
  color: var(--ink-soft);
}

.public-masthead__lede {
  max-width: 38rem;
  font-size: 0.97rem;
}

.inline-stats {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 10px;
}

.inline-stats div {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-soft);
}

.inline-stats dt {
  color: var(--muted);
  font-size: 0.76rem;
}

.inline-stats dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.filter-strip {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.section-line {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.section-line h2,
.form-head h2,
.panel h2,
.news-panel h2,
.article-section h2 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-line--filters,
.section-line--studio {
  padding-bottom: 0;
  border-bottom: 0;
}

.section-line--studio {
  align-items: center;
}

.text-link {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

.search-form {
  display: grid;
  gap: 12px;
  padding: 14px 18px 0;
}

.search-form__scope {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.search-form__scope strong {
  color: var(--ink);
}

.search-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.search-form__field {
  display: grid;
  gap: 6px;
}

.search-form__field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.search-form__hint {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.search-form__field input {
  min-height: 44px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.search-form__field input:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(210, 39, 44, 0.12);
}

.search-form__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.request-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.request-form__field {
  display: grid;
  gap: 6px;
}

.request-form__field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.request-form__field input,
.request-form__field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.request-form__field input {
  min-height: 44px;
  padding: 0 14px;
}

.request-form__field textarea {
  min-height: 88px;
  padding: 12px 14px;
  resize: vertical;
}

.request-form__field input:focus,
.request-form__field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(210, 39, 44, 0.12);
}

.request-form__actions {
  display: flex;
  justify-content: flex-start;
}

.request-form__challenge {
  display: grid;
  gap: 8px;
}

.request-form__note {
  margin: 0;
  color: rgba(17, 26, 39, 0.72);
  font-size: 0.76rem;
  line-height: 1.6;
}

.request-form__turnstile {
  min-height: 66px;
}

.request-form__actions--split {
  gap: 10px;
  flex-wrap: wrap;
}

.studio-ad-form textarea {
  min-height: 176px;
  font-family:
    "IBM Plex Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 0.82rem;
  line-height: 1.6;
}

.filter-chip-row,
.studio-tab-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.filter-chip,
.studio-tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--ink-soft);
}

.filter-chip:hover,
.studio-tab:hover {
  border-color: var(--line-strong);
  background: #fff;
}

.filter-chip strong,
.studio-tab {
  font-size: 0.9rem;
}

.filter-chip--active,
.studio-tab--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.news-layout,
.article-shell,
.studio-body {
  display: grid;
  gap: 18px;
}

.news-layout,
.article-shell {
  grid-template-columns: minmax(0, 1fr) 292px;
}

.news-feed {
  overflow: hidden;
}

.news-feed .section-line {
  padding: 16px 18px 12px;
}

.news-feed__list {
  display: grid;
}

.news-banner,
.news-empty {
  display: block;
  position: relative;
  padding: 15px 18px;
  background: #fff;
}

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

.news-banner:first-child {
  border-top: 0;
}

.news-banner:hover {
  background: var(--accent-soft);
}

.news-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: transparent;
}

.news-banner:hover::before {
  background: var(--accent);
}

.news-banner--with-image {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.news-banner__media {
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0f2f5 0, #e5e9ef 100%);
  aspect-ratio: 4 / 3;
}

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

.news-banner__body {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.news-banner__headline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.news-banner__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-banner__cta {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.news-banner__meta,
.article-meta,
.studio-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

.news-banner__company {
  color: var(--ink);
  font-weight: 700;
}

.news-banner__status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f1f3f6;
  color: var(--ink-soft);
}

.news-empty {
  padding: 24px 18px;
}

.news-empty h2 {
  font-size: 1.5rem;
}

.news-empty p {
  max-width: 34rem;
  color: var(--ink-soft);
}

.news-sidebar,
.article-side,
.studio-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.news-sidebar {
  position: sticky;
  top: 82px;
  height: fit-content;
}

.news-panel,
.panel,
.source-form,
.daily-report,
.studio-item,
.metric-card,
.flash-message,
.not-found__card {
  padding: 18px;
}

.rule-list,
.company-list,
.source-list,
.run-list {
  margin: 14px 0 0;
  padding: 0;
}

.rule-list {
  list-style: disc;
  padding-left: 18px;
  color: var(--ink-soft);
}

.company-list,
.registered-company-list,
.run-list,
.request-list {
  list-style: none;
}

.registered-company-list {
  display: grid;
  gap: 14px;
}

.request-list {
  display: grid;
  gap: 14px;
}

.registered-company {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-soft);
}

.request-card {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-soft);
}

.request-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.request-card__head > div {
  display: grid;
  gap: 8px;
}

.request-card__head strong {
  font-size: 1rem;
}

.request-card__head > span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.request-card__meta {
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.request-card__meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
}

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

.request-card__meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.request-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.registered-company__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.registered-company__title {
  display: grid;
  gap: 8px;
}

.registered-company__head strong {
  font-size: 1rem;
}

.registered-company__head span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.registered-company__meta {
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.registered-company__meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
}

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

.registered-company__meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.registered-company__note,
.panel-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.6;
}

.registered-company__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-chip--needs_audit,
.status-chip--stale {
  background: rgba(210, 41, 41, 0.1);
  color: #a11a1a;
}

.status-chip--in_progress {
  background: rgba(196, 117, 0, 0.12);
  color: #9a5b00;
}

.status-chip--complete {
  background: rgba(29, 150, 95, 0.12);
  color: #156741;
}

.status-chip--attention {
  background: rgba(210, 41, 41, 0.1);
  color: #a11a1a;
}

.status-chip--ready {
  background: rgba(29, 150, 95, 0.12);
  color: #156741;
}

.company-list li,
.registered-company,
.request-card,
.run-row {
  border-top: 1px solid var(--line);
}

.company-list li:first-child,
.registered-company:first-child,
.request-card:first-child,
.run-row:first-child {
  border-top: 0;
}

.company-list a,
.run-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.company-list a:hover {
  color: var(--accent-strong);
}

.article-main h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.article-section {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.studio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  padding: 20px 22px;
  border-top: 4px solid var(--accent);
}

.studio-hero__copy h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

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

.metric-card {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.metric-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.studio-actions,
.studio-body {
  margin-top: 0;
}

.filter-chip-row--studio {
  margin: 0;
  padding: 14px 18px 0;
}

.studio-list--grouped {
  display: grid;
  gap: 18px;
}

.studio-company-group {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.studio-company-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.studio-company-group__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding: 0 18px 12px;
}

.studio-company-group__head h3 {
  margin: 0;
  font-size: 1.12rem;
}

.studio-company-group__head p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.studio-company-group__items {
  display: grid;
}

.daily-report {
  display: grid;
  gap: 16px;
}

.daily-report__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.daily-report__head h2 {
  margin: 4px 0 6px;
  font-size: 1.14rem;
  font-weight: 800;
}

.daily-report__head p,
.daily-report__metric p,
.daily-report__message {
  margin: 0;
  color: var(--ink-soft);
}

.daily-report__status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.daily-report__status--success {
  background: rgba(29, 150, 95, 0.12);
  color: #156741;
}

.daily-report__status--failed {
  background: rgba(215, 19, 47, 0.12);
  color: var(--accent-strong);
}

.daily-report__status--unknown {
  background: #eef1f5;
  color: var(--ink-soft);
}

.daily-report__message {
  font-size: 0.94rem;
  line-height: 1.7;
}

.daily-report__metrics {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.daily-report__metric {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-soft);
}

.daily-report__metric dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.daily-report__metric dd {
  margin: 8px 0 6px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.daily-report__metric strong {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.daily-report__delta {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.daily-report__delta--plus {
  color: #156741;
}

.daily-report__delta--minus {
  color: var(--accent-strong);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px);
  gap: 14px;
  margin-top: 16px;
}

.form-grid label {
  display: grid;
  gap: 6px;
}

.form-grid span,
.info-pairs dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.form-grid input,
.form-grid select {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.form-grid input::placeholder {
  color: #98a1ac;
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: rgba(215, 19, 47, 0.4);
  box-shadow: 0 0 0 3px rgba(215, 19, 47, 0.08);
}

.form-actions,
.studio-item__links,
.review-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.studio-body {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.82fr);
}

.studio-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.studio-item h3 {
  margin: 10px 0 8px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.studio-item__gaps {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.88rem;
  line-height: 1.6;
}

.studio-item__titles {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.studio-item__titles p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.studio-item__titles strong {
  color: var(--ink);
}

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

.info-pairs div {
  display: grid;
  gap: 4px;
}

.info-pairs dd {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.flash-message {
  color: var(--accent-strong);
  background: #fff7f8;
}

.button-link,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-link,
.primary-button {
  color: #fff;
  background: var(--accent);
}

.button-link:hover,
.primary-button:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

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

.ghost-button:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.empty-inline,
.studio-item--empty,
.registered-company--empty {
  color: var(--ink-soft);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.not-found__card {
  width: min(560px, 100%);
}

@media (max-width: 980px) {
  .home-hero__head,
  .editorial-layout {
    grid-template-columns: 1fr;
  }

  .home-hero__stamp {
    padding-left: 0;
    border-left: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(92, 70, 56, 0.16);
  }

  .editorial-rail {
    position: static;
  }

  .public-masthead,
  .news-layout,
  .article-shell,
  .studio-hero,
  .studio-body {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header__inner,
  .studio-header__inner,
  .public-shell,
  .studio-shell,
  .article-shell {
    width: min(100vw - 18px, 1180px);
  }

  .public-shell,
  .studio-shell,
  .article-shell {
    padding: 14px 0 40px;
  }

  .public-masthead,
  .news-feed,
  .news-panel,
  .studio-hero,
  .source-form,
  .panel,
  .studio-item,
  .flash-message,
  .not-found__card {
    border-radius: 14px;
  }

  .public-masthead,
  .studio-hero,
  .filter-strip {
    padding: 16px;
  }

  .public-shell--home {
    gap: 24px;
  }

  .home-hero__copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .home-hero__tagline {
    font-size: 1rem;
  }

  .lead-story {
    padding: 22px 0 18px;
  }

  .lead-story--with-image {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .lead-story__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .public-masthead h1,
  .studio-hero__copy h1,
  .article-main h1 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .inline-stats,
  .daily-report__metrics,
  .news-banner__body,
  .search-form__grid,
  .form-grid,
  .info-pairs,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .news-banner--with-image {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-banner__media {
    max-width: 160px;
  }

  .public-shell--home .news-feed--editorial .news-banner,
  .public-shell--home .news-feed--editorial .news-empty,
  .public-shell--home .news-feed--editorial .section-line {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feed-item,
  .feed-empty {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feed-item__index,
  .feed-item__arrow {
    display: none;
  }

  .section-line,
  .company-list a,
  .registered-company__head,
  .request-card__head,
  .request-card__meta div,
  .run-row {
    flex-direction: column;
    align-items: start;
  }

  .news-banner__headline {
    display: grid;
    gap: 8px;
  }

  .news-banner__cta {
    font-size: 0.76rem;
  }

}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

body.public-page {
  --public-canvas: #f3f6fb;
  --public-surface: #ffffff;
  --public-surface-low: #e9eef4;
  --public-surface-lowest: rgba(255, 255, 255, 0.82);
  --public-ink: #1b1c1c;
  --public-muted: #5f5e5e;
  --public-muted-soft: #6f767d;
  --public-blue: #005ab7;
  --public-blue-strong: #00448a;
  --public-red: #bc0000;
  --public-shadow: 0 12px 32px rgba(27, 28, 28, 0.06);
  color: var(--public-ink);
  background:
    linear-gradient(180deg, #f7f9fc 0, #eef2f7 240px, var(--public-canvas) 100%);
  font-family:
    "Inter",
    "Noto Sans JP",
    "Hiragino Sans",
    "Yu Gothic UI",
    sans-serif;
}

body.public-page .site-header {
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 20px rgba(27, 28, 28, 0.04);
}

body.public-page .site-header__inner,
body.public-page .public-shell {
  width: min(1280px, calc(100vw - 40px));
}

body.public-page .site-brand__eyebrow,
body.public-page .eyebrow {
  color: var(--public-muted-soft);
  letter-spacing: 0.18em;
}

body.public-page .site-brand strong,
body.public-page .text-link:hover,
body.public-page .feed-item:hover .feed-item__title,
body.public-page .feed-item:hover .feed-item__arrow,
body.public-page .news-banner__cta,
body.public-page .lead-story__cta {
  color: var(--public-blue);
}

body.public-page .site-header__actions {
  display: flex;
  align-items: center;
  justify-items: end;
  gap: 8px;
}

body.public-page .site-header__meta {
  margin: 0;
  color: var(--public-muted-soft);
  font-family:
    "IBM Plex Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

body.public-page .site-header__meta strong {
  color: #111a27;
  font-weight: 700;
}

body.public-page .public-shell--home {
  gap: 28px;
  padding-top: 28px;
  padding-bottom: 56px;
}

body.public-page .market-ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-height: 68px;
  border-top: 1px solid rgba(17, 26, 39, 0.12);
  border-bottom: 1px solid rgba(17, 26, 39, 0.12);
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

body.public-page .market-ticker__badge {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 0 22px;
  color: #bc0000;
  font-family:
    "IBM Plex Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  border-right: 1px solid rgba(17, 26, 39, 0.1);
  background: rgba(188, 0, 0, 0.06);
}

body.public-page .market-ticker__viewport {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

body.public-page .market-ticker__track {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: max-content;
  animation: public-market-ticker 74s linear infinite;
}

body.public-page .market-ticker:hover .market-ticker__track {
  animation-play-state: paused;
}

body.public-page .market-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  min-height: 68px;
  border-right: 1px solid rgba(17, 26, 39, 0.08);
}

body.public-page .market-ticker__company {
  color: #005ab7;
  font-family:
    "Public Sans",
    "Noto Sans JP",
    "Hiragino Sans",
    sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.public-page .market-ticker__text {
  color: rgba(17, 26, 39, 0.88);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
}

@keyframes public-market-ticker {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

body.public-page .feature-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 18px 24px;
  align-items: stretch;
}

body.public-page .feature-overview__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 480px;
  padding: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(17, 26, 39, 0.08),
    0 12px 28px rgba(17, 26, 39, 0.05);
  overflow: hidden;
}

body.public-page .feature-overview__stat {
  display: grid;
  gap: 6px;
  padding: 18px 20px 20px;
  align-content: end;
  background: transparent;
  border-right: 1px solid rgba(17, 26, 39, 0.08);
  border-bottom: 1px solid rgba(17, 26, 39, 0.08);
}

body.public-page .feature-overview__stat:nth-child(2n) {
  border-right: 0;
}

body.public-page .feature-overview__stat:nth-last-child(-n + 2) {
  border-bottom: 0;
}

body.public-page .feature-overview__stat span {
  color: rgba(95, 94, 94, 0.88);
  font-family:
    "IBM Plex Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.4;
}

body.public-page .feature-overview__stat strong {
  color: #111a27;
  font-family:
    "Public Sans",
    "Noto Sans JP",
    "Hiragino Sans",
    sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

body.public-page .feature-overview__ad {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 18px 20px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(17, 26, 39, 0.08);
}

body.public-page .feature-overview__ad--filled {
  place-items: stretch;
  padding: 14px 16px;
}

body.public-page .feature-overview__ad-content {
  width: 100%;
  min-height: 100%;
}

body.public-page .feature-overview__ad-content iframe,
body.public-page .feature-overview__ad-content img,
body.public-page .feature-overview__ad-content ins {
  max-width: 100%;
}

body.public-page .feature-overview__ad-content .demo-ad-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 100%;
  padding: 14px 18px;
  background:
    linear-gradient(135deg, rgba(0, 90, 183, 0.08), rgba(0, 90, 183, 0.02) 58%),
    #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 90, 183, 0.14);
  color: #111a27;
  text-decoration: none;
}

body.public-page .feature-overview__ad-content .demo-ad-card:hover {
  box-shadow:
    inset 0 0 0 1px rgba(0, 90, 183, 0.22),
    0 14px 28px rgba(17, 26, 39, 0.06);
}

body.public-page .feature-overview__ad-content .demo-ad-card--image {
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr) auto;
  gap: 14px;
  padding: 12px;
}

body.public-page .feature-overview__ad-content .demo-ad-card__media {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 90, 183, 0.04), rgba(0, 90, 183, 0.01));
  box-shadow: inset 0 0 0 1px rgba(0, 90, 183, 0.1);
}

body.public-page .feature-overview__ad-content .demo-ad-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

body.public-page .feature-overview__ad-content .demo-ad-card__body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

body.public-page .feature-overview__ad-content .demo-ad-card__eyebrow {
  color: #005ab7;
  font-family:
    "IBM Plex Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.public-page .feature-overview__ad-content .demo-ad-card__title {
  margin: 0;
  color: #111a27;
  font-family:
    "Public Sans",
    "Noto Sans JP",
    "Hiragino Sans",
    sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.public-page .feature-overview__ad-content .demo-ad-card__copy {
  color: #5f6978;
  font-size: 0.82rem;
  line-height: 1.5;
}

body.public-page .feature-overview__ad-content .demo-ad-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(0, 90, 183, 0.18);
  color: #005ab7;
  font-family:
    "IBM Plex Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  body.public-page .feature-overview__ad-content .demo-ad-card--image {
    grid-template-columns: minmax(0, 150px) minmax(0, 1fr);
  }

  body.public-page .feature-overview__ad-content .demo-ad-card--image .demo-ad-card__cta {
    justify-self: start;
    margin-left: calc(150px + 14px);
  }
}

@media (max-width: 720px) {
  body.public-page .feature-overview__ad-content .demo-ad-card--image {
    grid-template-columns: 1fr;
  }

  body.public-page .feature-overview__ad-content .demo-ad-card--image .demo-ad-card__media {
    min-height: 132px;
  }

  body.public-page .feature-overview__ad-content .demo-ad-card--image .demo-ad-card__cta {
    margin-left: 0;
    justify-self: start;
  }
}

body.public-page .feature-overview__ad span {
  color: var(--public-muted-soft);
  font-family:
    "IBM Plex Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

body.public-page .feature-section-head {
  display: grid;
  gap: 8px;
  align-items: end;
}

body.public-page .feature-section-head__title {
  display: grid;
  gap: 6px;
  align-content: end;
}

body.public-page .feature-section-head__title h2 {
  margin: 0;
  color: #111a27;
  font-family:
    "Public Sans",
    "Noto Sans JP",
    "Hiragino Sans",
    sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

body.public-page .flash-message,
body.public-page .public-masthead,
body.public-page .editorial-controls,
body.public-page .lead-story,
body.public-page .signal-stack,
body.public-page .news-feed--curated,
body.public-page .rail-panel {
  border: 0;
  border-radius: 28px;
  box-shadow: none;
}

body.public-page .flash-message {
  background: rgba(255, 255, 255, 0.72);
}

body.public-page .public-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.75fr);
  gap: 28px;
  padding: 34px 32px 34px 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0, rgba(244, 248, 252, 0.9) 100%);
}

body.public-page .public-masthead__intro {
  display: grid;
  gap: 14px;
  align-content: start;
}

body.public-page .public-masthead h1 {
  margin: 0;
  max-width: 10ch;
  font-family:
    "Public Sans",
    "Noto Sans JP",
    "Hiragino Sans",
    sans-serif;
  font-size: clamp(2.8rem, 6.1vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

body.public-page .public-masthead__lede,
body.public-page .public-masthead__note,
body.public-page .section-line p,
body.public-page .feed-empty p,
body.public-page .news-empty p,
body.public-page .panel-note {
  color: var(--public-muted);
}

body.public-page .public-masthead__lede {
  max-width: 48rem;
  font-size: 1rem;
  line-height: 1.9;
}

body.public-page .public-masthead__side {
  display: grid;
  gap: 16px;
  align-content: start;
}

body.public-page .public-masthead__note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

body.public-page .inline-stats {
  gap: 12px;
}

body.public-page .inline-stats div {
  padding: 16px 18px;
  border: 0;
  border-radius: 20px;
  background: var(--public-surface-low);
}

body.public-page .inline-stats dt,
body.public-page .news-banner__meta,
body.public-page .lead-story__meta,
body.public-page .feed-item__meta,
body.public-page .company-list a,
body.public-page .news-banner__cta,
body.public-page .lead-story__label,
body.public-page .feed-item__index {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

body.public-page .inline-stats dt {
  color: var(--public-muted-soft);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.public-page .inline-stats dd {
  margin: 0;
  color: var(--public-ink);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.public-page .editorial-controls {
  padding: 24px 28px;
  background: var(--public-surface-low);
}

body.public-page .section-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 0 0 14px;
  border-bottom: 0;
}

body.public-page .section-line h2 {
  margin: 0;
  font-family:
    "Public Sans",
    "Noto Sans JP",
    "Hiragino Sans",
    sans-serif;
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

body.public-page .section-line--compact {
  padding-bottom: 18px;
}

body.public-page .search-form {
  gap: 14px;
  padding: 18px 0 0;
}

body.public-page .search-form__field span,
body.public-page .request-form__field span {
  color: var(--public-muted-soft);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.public-page .search-form__hint {
  color: var(--public-muted-soft);
  font-size: 0.72rem;
}

body.public-page .search-form__field input,
body.public-page .request-form__field input,
body.public-page .request-form__field textarea {
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(0, 90, 183, 0.08);
}

body.public-page .search-form__field input:focus,
body.public-page .request-form__field input:focus,
body.public-page .request-form__field textarea:focus {
  border-color: transparent;
  box-shadow:
    inset 0 0 0 2px rgba(0, 90, 183, 0.26),
    0 0 0 4px rgba(0, 90, 183, 0.08);
}

body.public-page .filter-chip-row--editorial {
  gap: 10px;
  padding-top: 8px;
}

body.public-page .filter-chip {
  min-height: 34px;
  border-radius: 8px;
  border: 0;
  background: rgba(255, 255, 255, 0.78);
  color: var(--public-muted);
  box-shadow: inset 0 0 0 1px rgba(0, 90, 183, 0.08);
}

body.public-page .filter-chip--active {
  background: rgba(0, 90, 183, 0.12);
  color: var(--public-blue);
  box-shadow: inset 0 0 0 1px rgba(0, 90, 183, 0.22);
}

body.public-page .public-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

body.public-page .public-primary {
  display: grid;
  gap: 24px;
}

body.public-page .lead-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.82fr);
  gap: 24px;
  align-items: start;
}

body.public-page .lead-story {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: var(--public-surface);
  box-shadow: var(--public-shadow);
}

body.public-page .lead-story--with-image {
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

body.public-page .lead-story__media {
  overflow: hidden;
  border-radius: 18px;
  background: var(--public-surface-low);
  min-height: 220px;
}

body.public-page .lead-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.public-page .lead-story__label {
  margin: 0;
  color: var(--public-blue);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.public-page .lead-story__body {
  display: grid;
  gap: 16px;
  min-width: 0;
}

body.public-page .lead-story__title {
  margin: 0;
  max-width: 12ch;
  font-family:
    "Public Sans",
    "Noto Sans JP",
    "Hiragino Sans",
    sans-serif;
  font-size: clamp(2.2rem, 4.7vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

body.public-page .lead-story__excerpt {
  max-width: 42rem;
  color: var(--public-muted);
  font-size: 1rem;
  line-height: 1.8;
}

body.public-page .lead-story__meta,
body.public-page .feed-item__meta,
body.public-page .news-banner__meta {
  margin-top: 0;
  color: var(--public-muted-soft);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

body.public-page .news-banner__meta {
  display: grid;
  gap: 4px;
}

body.public-page .news-banner__meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}

body.public-page .news-banner__meta-line--primary {
  gap: 8px;
}

body.public-page .lead-story__company,
body.public-page .feed-item__company,
body.public-page .news-banner__company {
  color: var(--public-ink);
  font-weight: 700;
}

body.public-page .signal-stack {
  display: grid;
  gap: 16px;
  padding: 24px 24px 18px;
  background: var(--public-surface-low);
}

body.public-page .editorial-feed__list {
  display: grid;
}

body.public-page .feed-item,
body.public-page .feed-empty {
  grid-template-columns: 46px minmax(0, 1fr) 20px;
  gap: 14px;
  padding: 16px 0;
  border-top: 0;
}

body.public-page .feed-item + .feed-item,
body.public-page .feed-empty {
  border-top: 1px solid rgba(27, 28, 28, 0.08);
}

body.public-page .feed-item::before {
  display: none;
}

body.public-page .feed-item__index {
  color: rgba(0, 90, 183, 0.46);
  font-size: 0.76rem;
  align-self: start;
  padding-top: 3px;
}

body.public-page .feed-item__title {
  margin: 3px 0 0;
  font-family:
    "Public Sans",
    "Noto Sans JP",
    "Hiragino Sans",
    sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

body.public-page .feed-item__arrow {
  color: rgba(0, 90, 183, 0.44);
}

body.public-page .news-feed--curated {
  overflow: visible;
  padding: 24px 28px 8px;
  background: var(--public-surface-low);
}

body.public-page .news-feed--curated .news-feed__list {
  display: grid;
}

body.public-page .news-banner,
body.public-page .news-empty {
  padding: 20px 0;
  background: transparent;
}

body.public-page .news-banner {
  border-top: 0;
}

body.public-page .news-banner + .news-banner,
body.public-page .news-empty {
  border-top: 1px solid rgba(27, 28, 28, 0.08);
}

body.public-page .news-banner:hover {
  background: transparent;
}

body.public-page .news-banner::before {
  display: none;
}

body.public-page .news-banner--with-image {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
}

body.public-page .news-banner__media {
  border-radius: 14px;
  background: #dfe7ef;
}

body.public-page .news-banner__headline {
  justify-content: flex-start;
  gap: 12px;
}

body.public-page .news-banner__title {
  font-family:
    "Public Sans",
    "Noto Sans JP",
    "Hiragino Sans",
    sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.02em;
  white-space: pre-line;
  -webkit-line-clamp: 3;
}

body.public-page .news-banner__cta {
  position: relative;
  top: 2px;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.public-page .public-rail {
  position: static;
  display: grid;
  gap: 24px;
  align-content: start;
}

body.public-page .public-company-panel--mobile {
  display: none;
}

body.public-page .rail-panel {
  padding: 22px 24px 20px;
  background: var(--public-surface-lowest);
  backdrop-filter: blur(20px);
  box-shadow: var(--public-shadow);
}

body.public-page .company-list--rail {
  margin-top: 14px;
}

body.public-page .company-list--rail li {
  border-top: 0;
}

body.public-page .company-list--rail li + li {
  border-top: 1px solid rgba(27, 28, 28, 0.08);
}

body.public-page .company-list__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  padding-inline: 10px;
  margin-inline: -10px;
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

body.public-page .company-list__row:hover,
body.public-page .company-list__row:focus-within {
  background: rgba(0, 90, 183, 0.06);
}

body.public-page .company-list__row--active {
  background: rgba(0, 90, 183, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 90, 183, 0.22);
}

body.public-page .company-list--rail a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: var(--public-muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

body.public-page .company-list__link {
  min-width: 0;
  transition: color 160ms ease;
}

body.public-page .company-list__link strong {
  color: inherit;
}

body.public-page .company-list__link:hover {
  color: var(--public-blue);
}

body.public-page .company-list__link--active {
  color: var(--public-blue);
}

body.public-page .company-list__label {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  gap: 10px;
}

body.public-page .company-list__label > span:last-child {
  min-width: 0;
  line-height: 1.24;
}

body.public-page .company-list__icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3px;
  box-sizing: border-box;
  border: 1px solid rgba(17, 26, 39, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 2px rgba(17, 26, 39, 0.05);
}

body.public-page .company-list__icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

body.public-page .company-list__icon.is-fallback img {
  display: none;
}

body.public-page .company-list__icon--fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--public-blue);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

body.public-page .company-list__icon.is-fallback .company-list__icon--fallback {
  display: inline-flex;
}

body.public-page .company-list__icon--fallback[hidden] {
  display: none !important;
}

body.public-page .company-list--rail strong {
  color: var(--public-ink);
  font-size: 0.95rem;
  font-weight: 700;
}

body.public-page .company-list__favorite {
  border: 0;
  background: transparent;
  color: rgba(17, 26, 39, 0.32);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 10px;
  transition: color 160ms ease, background-color 160ms ease;
}

body.public-page .company-list__favorite.is-active,
body.public-page .company-list__favorite[aria-pressed="true"] {
  color: #f5c542;
}

body.public-page .company-list__favorite:hover {
  color: #d8a600;
  background: rgba(216, 166, 0, 0.08);
}

body.public-page .company-list__more-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--public-blue);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

body.public-page .company-list__more-link:hover {
  color: var(--public-blue);
  text-decoration: underline;
}

body.public-page .section-line--company-directory {
  align-items: start;
}

body.public-page .company-directory-search {
  display: grid;
  gap: 4px;
  justify-items: end;
  margin-top: 6px;
}

body.public-page .company-directory-search__label {
  color: var(--public-muted-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.public-page .company-directory-search input {
  width: 132px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(17, 26, 39, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--public-ink);
  font-size: 0.78rem;
}

body.public-page .company-directory-search input::placeholder {
  color: rgba(17, 26, 39, 0.42);
}

body.public-page .company-directory-search input:focus {
  border-color: rgba(0, 90, 183, 0.3);
  box-shadow: 0 0 0 3px rgba(0, 90, 183, 0.08);
}

body.public-page .push-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(27, 28, 28, 0.08);
}

body.public-page .rail-panel__subsection {
  margin-top: 18px;
}

body.public-page .push-panel__header {
  display: grid;
  gap: 5px;
}

body.public-page .push-panel__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.public-page .push-panel__header h3 {
  margin: 0;
  color: var(--public-ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.public-page .push-panel__tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(0, 90, 183, 0.12);
  background: rgba(0, 90, 183, 0.06);
  color: var(--public-blue);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  white-space: nowrap;
}

body.public-page .push-panel__status {
  margin: 0;
  color: var(--public-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

body.public-page .push-panel__meta {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(17, 26, 39, 0.56);
}

body.public-page .push-panel__guide {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.6;
  color: rgba(17, 26, 39, 0.68);
}

body.public-page .push-panel__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

body.public-page .push-panel__challenge {
  display: grid;
  gap: 8px;
  width: 100%;
}

body.public-page .push-panel__challenge-note {
  margin: 0;
  color: rgba(17, 26, 39, 0.72);
  font-size: 0.74rem;
  line-height: 1.6;
}

body.public-page .push-panel__turnstile {
  min-height: 66px;
}

body.public-page .push-panel__button {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(17, 26, 39, 0.1);
  background: #fff;
  color: var(--public-ink);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

body.public-page .push-panel__button--primary {
  border-color: rgba(0, 90, 183, 0.18);
  background: #005ab7;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 90, 183, 0.14);
  min-width: 168px;
}

body.public-page .push-panel__button--secondary {
  border-color: rgba(17, 26, 39, 0.09);
  background: rgba(17, 26, 39, 0.03);
}

body.public-page .push-panel__button--ghost {
  border-color: transparent;
  background: transparent;
  color: var(--public-blue);
  min-height: 30px;
  padding-inline: 4px;
  font-size: 0.74rem;
  box-shadow: none;
  min-width: auto;
}

body.public-page .push-panel__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(17, 26, 39, 0.08);
}

body.public-page .push-panel__button:active {
  transform: translateY(0);
  box-shadow: none;
}

body.public-page .push-panel__button--ghost:hover {
  box-shadow: none;
  text-decoration: underline;
}

@media (max-width: 1180px) {
  body.public-page .push-panel__eyebrow {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1040px) {
  body.public-page .public-grid,
  body.public-page .lead-stage,
  body.public-page .public-masthead {
    grid-template-columns: 1fr;
  }

  body.public-page .feature-overview {
    grid-template-columns: 1fr;
  }

  body.public-page .feature-section-head {
    gap: 10px;
  }

  body.public-page .public-rail {
    position: static;
  }

  body.public-page .public-masthead {
    padding-left: 32px;
  }
}

@media (max-width: 760px) {
  body.public-page .site-header__inner,
  body.public-page .public-shell {
    width: min(100vw - 18px, 1280px);
  }

  body.public-page .market-ticker {
    grid-template-columns: auto minmax(0, 1fr);
  }

  body.public-page .market-ticker__badge {
    justify-content: center;
    min-height: 56px;
    padding: 12px 14px;
    border-right: 1px solid rgba(17, 26, 39, 0.1);
    border-bottom: 0;
  }

  body.public-page .market-ticker__item {
    min-height: 56px;
    padding: 0 16px;
    gap: 10px;
  }

  body.public-page .site-header__actions {
    justify-items: start;
  }

  body.public-page .feature-overview__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  body.public-page .section-line--company-directory {
    align-items: end;
  }

  body.public-page .company-directory-search {
    justify-items: start;
  }

  body.public-page .feature-overview__stat {
    border-right: 1px solid rgba(17, 26, 39, 0.08);
    border-bottom: 0;
  }

  body.public-page .feature-overview__stat:nth-child(2n) {
    border-right: 0;
  }

  body.public-page .feature-overview__stat:nth-child(n + 3) {
    border-top: 1px solid rgba(17, 26, 39, 0.08);
  }

  body.public-page .public-masthead,
  body.public-page .editorial-controls,
  body.public-page .lead-story,
  body.public-page .signal-stack,
  body.public-page .news-feed--curated,
  body.public-page .rail-panel {
    padding: 18px;
    border-radius: 20px;
  }

  body.public-page .public-masthead h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  body.public-page .inline-stats {
    grid-template-columns: 1fr;
  }

  body.public-page .lead-story--with-image,
  body.public-page .search-form__grid {
    grid-template-columns: 1fr;
  }

  body.public-page .news-banner--with-image {
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  body.public-page .news-banner__media,
  body.public-page .lead-story__media {
    max-width: 100%;
  }

  body.public-page .news-banner__media {
    border-radius: 12px;
  }

  body.public-page .feed-item,
  body.public-page .feed-empty {
    grid-template-columns: 1fr;
  }

  body.public-page .feed-item__index,
  body.public-page .feed-item__arrow {
    display: none;
  }
}

body.public-page .signal-stack {
  background: rgba(255, 255, 255, 0.72);
}

body.public-page .filter-chip-row--editorial .filter-chip {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
}

body.public-page .feed-item,
body.public-page .feed-empty {
  grid-template-columns: 42px 104px minmax(0, 1fr) 20px;
  align-items: start;
}

body.public-page .feed-item + .feed-item,
body.public-page .feed-empty {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 0;
}

body.public-page .feed-item__thumb {
  overflow: hidden;
  border-radius: 6px;
  background: #dfe7ef;
  aspect-ratio: 4 / 3;
}

body.public-page .feed-item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.public-page .feed-item__excerpt,
body.public-page .news-banner__summary {
  margin: 8px 0 0;
  color: var(--public-muted);
  line-height: 1.75;
}

body.public-page .news-banner__summary {
  margin-top: 0;
}

body.public-page .feed-item__excerpt {
  font-size: 0.92rem;
}

body.public-page .news-feed--curated {
  background: var(--public-surface-low);
}

body.public-page .news-banner,
body.public-page .news-empty {
  padding: 0;
}

body.public-page .news-banner + .news-banner,
body.public-page .news-empty {
  margin-top: 32px;
  padding-top: 0;
  border-top: 0;
}

body.public-page .news-banner__body {
  gap: 12px;
}

body.public-page .news-banner__status {
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(188, 0, 0, 0.1);
  color: var(--public-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (max-width: 760px) {
  body.public-page .news-banner__title {
    font-size: 1.04rem;
    line-height: 1.38;
    -webkit-line-clamp: 4;
  }

  body.public-page .news-banner__summary {
    display: none;
  }

  body.public-page .feed-item,
  body.public-page .feed-empty {
    grid-template-columns: 1fr;
  }

  body.public-page .feed-item__thumb {
    max-width: 132px;
  }
}

body.public-page .feature-carousel {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: var(--public-shadow);
}

body.public-page .feature-carousel--hero {
  gap: 0;
  padding: 0;
  border-top: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

body.public-page .feature-carousel__count {
  color: var(--public-muted-soft);
  font-family:
    "IBM Plex Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

body.public-page .feature-carousel__stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(17, 26, 39, 0.08), rgba(17, 26, 39, 0.72)),
    #dfe7ef;
}

body.public-page .feature-carousel__empty {
  display: grid;
  gap: 12px;
  align-content: end;
  min-height: 560px;
  padding: 34px;
  background: var(--public-surface-low);
}

body.public-page .feature-carousel__empty h2 {
  margin: 0;
  font-family:
    "Public Sans",
    "Noto Sans JP",
    "Hiragino Sans",
    sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.04em;
}

body.public-page .feature-slide {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 50%;
  width: min(58%, 760px);
  display: block;
  container-type: inline-size;
  container-name: feature-card;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(17, 26, 39, 0.22);
  transform: translateX(-50%) scale(1);
  transition:
    opacity 320ms ease,
    transform 420ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

body.public-page .feature-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
  z-index: 3;
}

body.public-page .feature-slide.is-prev,
body.public-page .feature-slide.is-next {
  opacity: 0.72;
  pointer-events: auto;
  top: 82px;
  bottom: 82px;
  width: min(19%, 228px);
  filter: saturate(0.82);
  z-index: 2;
}

body.public-page .feature-slide.is-prev-2,
body.public-page .feature-slide.is-next-2 {
  opacity: 0.34;
  pointer-events: auto;
  top: 126px;
  bottom: 126px;
  width: min(13%, 152px);
  filter: saturate(0.62);
  z-index: 1;
}

body.public-page .feature-slide.is-prev {
  left: 0;
  transform: translateX(34%) scale(1);
}

body.public-page .feature-slide.is-next {
  left: auto;
  right: 0;
  transform: translateX(-34%) scale(1);
}

body.public-page .feature-slide.is-prev-2 {
  left: 0;
  transform: translateX(8%) scale(1);
}

body.public-page .feature-slide.is-next-2 {
  left: auto;
  right: 0;
  transform: translateX(-8%) scale(1);
}

body.public-page .feature-slide__media,
body.public-page .feature-slide__media img {
  width: 100%;
  height: 100%;
}

body.public-page .feature-slide__media {
  display: grid;
  place-items: center;
  background: #0c1520;
}

body.public-page .feature-slide__media img {
  display: block;
  object-fit: contain;
  object-position: center center;
}

body.public-page .feature-slide__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 16, 24, 0) 0%, rgba(10, 16, 24, 0) 54%, rgba(10, 16, 24, 0.76) 100%);
}

body.public-page .feature-slide.is-prev .feature-slide__scrim,
body.public-page .feature-slide.is-next .feature-slide__scrim {
  background:
    linear-gradient(180deg, rgba(10, 16, 24, 0) 0%, rgba(10, 16, 24, 0) 48%, rgba(10, 16, 24, 0.82) 100%);
}

body.public-page .feature-slide.is-prev-2 .feature-slide__scrim,
body.public-page .feature-slide.is-next-2 .feature-slide__scrim {
  background:
    linear-gradient(180deg, rgba(10, 16, 24, 0.08) 0%, rgba(10, 16, 24, 0.14) 52%, rgba(10, 16, 24, 0.88) 100%);
}

body.public-page .feature-slide__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  gap: 0;
  max-width: min(26ch, 72%);
  padding: 0 28px 26px;
}

body.public-page .feature-slide.is-prev .feature-slide__content,
body.public-page .feature-slide.is-next .feature-slide__content {
  max-width: none;
  padding: 0 16px 16px;
  gap: 0;
}

body.public-page .feature-slide.is-prev-2 .feature-slide__content,
body.public-page .feature-slide.is-next-2 .feature-slide__content {
  max-width: none;
  padding: 0 12px 12px;
  gap: 0;
}

body.public-page .feature-slide__eyebrow,
body.public-page .feature-slide__meta {
  font-family:
    "IBM Plex Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
}

body.public-page .feature-slide__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.public-page .feature-slide__title {
  margin: 0;
  max-width: 10ch;
  color: #fff;
  font-family:
    "Public Sans",
    "Noto Sans JP",
    "Hiragino Sans",
    sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: pre-line;
  text-wrap: balance;
  text-wrap: pretty;
  word-break: keep-all;
  line-break: strict;
}

@container feature-card (max-width: 720px) {
  body.public-page .feature-slide__title {
    max-width: 11ch;
    font-size: clamp(1.55rem, 7.4cqw, 2.7rem);
  }
}

@container feature-card (max-width: 520px) {
  body.public-page .feature-slide__title {
    max-width: none;
    font-size: clamp(1.15rem, 9.2cqw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }
}

@container feature-card (max-width: 320px) {
  body.public-page .feature-slide__title {
    font-size: clamp(0.92rem, 9.6cqw, 1.28rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
  }
}

body.public-page .feature-slide.is-prev .feature-slide__title,
body.public-page .feature-slide.is-next .feature-slide__title {
  max-width: none;
  font-size: clamp(0.96rem, 1.55vw, 1.18rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.public-page .feature-slide.is-prev-2 .feature-slide__title,
body.public-page .feature-slide.is-next-2 .feature-slide__title {
  max-width: none;
  font-size: clamp(0.82rem, 1.1vw, 0.96rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.public-page .feature-slide__summary {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.82;
}

body.public-page .feature-slide.is-prev .feature-slide__summary,
body.public-page .feature-slide.is-next .feature-slide__summary {
  display: none;
}

body.public-page .feature-slide.is-prev-2 .feature-slide__summary,
body.public-page .feature-slide.is-next-2 .feature-slide__summary {
  display: none;
}

body.public-page .feature-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

body.public-page .feature-slide.is-prev .feature-slide__meta,
body.public-page .feature-slide.is-next .feature-slide__meta {
  font-size: 0.68rem;
}

body.public-page .feature-slide.is-prev-2 .feature-slide__meta,
body.public-page .feature-slide.is-next-2 .feature-slide__meta {
  display: none;
}

body.public-page .feature-slide__company {
  color: #fff;
  font-weight: 700;
}

body.public-page .feature-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.public-page .feature-carousel__controls--overlay {
  position: absolute;
  inset: auto 24px 18px 24px;
  z-index: 2;
  align-items: end;
}

body.public-page .feature-carousel__overlay-center {
  display: grid;
  justify-items: center;
  gap: 10px;
}

body.public-page .feature-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

body.public-page .feature-carousel__dot,
body.public-page .feature-carousel__button {
  border: 0;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease;
}

body.public-page .feature-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(0, 90, 183, 0.22);
}

body.public-page .feature-carousel__dot.is-active {
  width: 28px;
  background: var(--public-blue);
}

body.public-page .feature-carousel__button {
  min-height: 40px;
  min-width: 40px;
  padding: 0;
  border-radius: 999px;
  background: rgba(9, 16, 25, 0.56);
  color: #fff;
  font-family:
    "Public Sans",
    "Noto Sans JP",
    "Hiragino Sans",
    sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

body.public-page .feature-carousel__button:hover,
body.public-page .feature-carousel__dot:hover {
  transform: translateY(-1px);
}

body.public-page .feature-carousel__button:active,
body.public-page .feature-carousel__dot:active {
  transform: translateY(0);
}

body.public-page .feature-carousel--single .feature-carousel__controls {
  display: none;
}

body.public-page .feature-carousel--hero .feature-carousel__stage,
body.public-page .feature-carousel--hero .feature-carousel__empty {
  min-height: 550px;
}

body.public-page .feature-carousel--hero .feature-carousel__stage {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

body.public-page .feature-carousel--hero .feature-carousel__count {
  color: rgba(255, 255, 255, 0.9);
}

body.public-page .feature-carousel--hero .feature-carousel__dot {
  background: rgba(255, 255, 255, 0.34);
}

body.public-page .feature-carousel--hero .feature-carousel__dot.is-active {
  background: #fff;
}

@media (max-width: 1040px) {
  body.public-page .feature-carousel__stage,
  body.public-page .feature-carousel__empty {
    min-height: 500px;
  }

  body.public-page .feature-carousel--hero .feature-carousel__stage,
  body.public-page .feature-carousel--hero .feature-carousel__empty {
    min-height: 530px;
  }

  body.public-page .feature-slide__content {
    max-width: min(80ch, 86%);
  }

  body.public-page .feature-slide {
    top: 0;
    bottom: 0;
    width: min(70%, 780px);
  }

  body.public-page .feature-slide.is-prev,
  body.public-page .feature-slide.is-next {
    width: min(22%, 208px);
    top: 52px;
    bottom: 52px;
  }

  body.public-page .feature-slide.is-prev-2,
  body.public-page .feature-slide.is-next-2 {
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  body.public-page .feature-slide__content {
    max-width: min(24ch, 76%);
    padding: 0 22px 22px;
  }

}

@media (max-width: 760px) {
  body.public-page .feature-carousel {
    padding: 18px;
    border-radius: 20px;
  }

  body.public-page .feature-carousel--hero {
    padding: 0;
  }

  body.public-page .feature-carousel__stage,
  body.public-page .feature-carousel__empty {
    min-height: 324px;
    border-radius: 20px;
  }

  body.public-page .feature-carousel--hero .feature-carousel__stage,
  body.public-page .feature-carousel--hero .feature-carousel__empty {
    min-height: 342px;
  }

  body.public-page .feature-slide__content {
    max-width: min(24ch, 92%);
    padding: 0 16px 18px;
  }

  body.public-page .feature-slide__title {
    max-width: none;
    font-size: clamp(1.08rem, 5.2vw, 1.76rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  body.public-page .feature-slide__summary {
    font-size: 0.92rem;
  }

  body.public-page .feature-carousel__controls {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  body.public-page .feature-carousel__controls--overlay {
    inset: auto 18px 18px 18px;
  }

  body.public-page .feature-overview {
    grid-template-columns: 1fr;
  }

  body.public-page .feature-overview__ad {
    order: -1;
  }

  body.public-page .feature-overview__stats {
    order: 1;
  }

  body.public-page .feature-slide,
  body.public-page .feature-slide.is-active {
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(64%, 460px);
    border-radius: 20px;
    transform: translateX(-50%) scale(1);
  }

  body.public-page .feature-slide.is-prev,
  body.public-page .feature-slide.is-next {
    opacity: 0.72;
    pointer-events: auto;
    top: 28px;
    bottom: 28px;
    width: min(28%, 148px);
    filter: saturate(0.82);
  }

  body.public-page .feature-slide.is-prev {
    left: 0;
    transform: translateX(24%) scale(1);
  }

  body.public-page .feature-slide.is-next {
    left: auto;
    right: 0;
    transform: translateX(-24%) scale(1);
  }

  body.public-page .feature-slide.is-prev-2,
  body.public-page .feature-slide.is-next-2 {
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  body.public-page .public-company-panel--mobile {
    display: block;
  }

  body.public-page .public-company-panel--desktop {
    display: none;
  }

  body.public-page .company-list__row {
    gap: 10px;
  }

  body.public-page .company-list--rail a {
    gap: 10px;
    padding: 13px 0;
  }

  body.public-page .company-list__label {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
  }

  body.public-page .company-list__icon {
    width: 28px;
    height: 28px;
    padding: 3px;
    border-radius: 8px;
  }

  body.public-page .section-line--company-directory {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  body.public-page .company-directory-search {
    justify-items: start;
    margin-top: 0;
  }
}
