@font-face {
  font-family: "KleeOneAndStore";
  src: url("./assets/klee-one-headlines-semibold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "InterAndStore";
  src: url("./assets/inter-latin.woff") format("woff");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "NotoSansJPAndStore";
  src: url("./assets/noto-sans-jp-site.woff") format("woff");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --canvas: #f7f8f9;
  --warm: #f7f6f3;
  --ink: #121a22;
  --ink-2: #2d3741;
  --muted: #606b76;
  --navy: #172a3d;
  --navy-2: #20384e;
  --accent: #c64d30;
  --accent-dark: #a83b23;
  --line: #dfe3e7;
  --line-dark: #aeb7c0;
  --shell: 1180px;
  --sans: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
  background: var(--white);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
p, h1, h2, h3, dl, dd, figure, ul, ol { margin-top: 0; }

:focus-visible {
  outline: 3px solid #2b78a0;
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
}

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

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 44px;
  gap: 11px;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 138px;
  height: auto;
}

.brand-name {
  display: flex;
  align-items: baseline;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.035em;
}

.brand-name small {
  margin-right: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2vw, 31px);
}

.desktop-nav a {
  position: relative;
  padding: 26px 0 24px;
  color: #36414b;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

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

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

.desktop-menu {
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: center;
}

.desktop-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-caret {
  display: inline-block;
  margin-top: -3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
  transition: transform .18s ease;
}

.desktop-menu-panel {
  position: absolute;
  top: calc(100% - 2px);
  left: -28px;
  display: grid;
  width: 346px;
  padding: 12px 0;
  border: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 46px -28px rgba(23,42,61,.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.desktop-menu:hover .desktop-menu-panel,
.desktop-menu:focus-within .desktop-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.desktop-menu:hover .nav-caret,
.desktop-menu:focus-within .nav-caret {
  transform: rotate(180deg);
}

.desktop-menu-panel a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  min-height: 92px;
  padding: 17px 28px;
  border-bottom: 0;
  gap: 8px 18px;
}

.desktop-menu-panel a::after { display: none; }
.desktop-menu-panel a:hover,
.desktop-menu-panel a:focus-visible { background: var(--canvas); }

.desktop-menu-panel .nav-panel-en {
  color: var(--navy);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.3;
}

.desktop-menu-panel strong {
  grid-column: 1;
  color: #8c98a8;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.desktop-menu-panel i {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: #77879a;
  font-size: 21px;
  font-style: normal;
  transition: transform .18s ease;
}

.desktop-menu-panel a:hover i,
.desktop-menu-panel a:focus-visible i { transform: translateX(4px); }

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  transition: color .18s ease, background .18s ease;
}

.header-contact:hover { color: #fff; background: var(--navy); }
.nav-toggle, .mobile-nav { display: none; }

/* Shared */
.section-label {
  margin-bottom: 17px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.4;
}

.section-heading h2,
.purpose-copy h2,
.contact-layout h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.15vw, 42px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.35;
}

.heading-line { white-space: nowrap; }

.section-heading > p:last-child,
.section-heading-split > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .8fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 46px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  gap: 28px;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.button-primary { color: #fff; background: var(--navy); }
.button-primary:hover { background: var(--navy-2); }
.button-secondary { border-color: var(--line-dark); color: var(--ink); background: #fff; }
.button-secondary:hover { border-color: var(--navy); }

.inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  gap: 24px;
}

.inline-link span { font-size: 17px; font-weight: 400; }

/* Hero */
.hero {
  padding: 68px 0 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 64px;
  padding-bottom: 56px;
}

.hero-copy { min-width: 0; }

.hero-company {
  display: flex;
  align-items: center;
  margin-bottom: 23px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  gap: 17px;
}

.hero-company::before {
  width: 26px;
  height: 2px;
  flex: none;
  background: var(--accent);
  content: "";
}

.hero-company span {
  padding-left: 17px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .04em;
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 25px;
  color: var(--ink);
  font-size: clamp(50px, 4.65vw, 66px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.34;
}

.hero-line { white-space: nowrap; }

.hero h1 strong {
  color: var(--navy);
  font-weight: 800;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.95;
}

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

.hero-media {
  position: relative;
  margin: 0;
  border-top: 4px solid var(--navy);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--warm);
}

.hero-media picture,
.hero-media img { width: 100%; }

.hero-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.015);
}

.hero-media figcaption {
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 17px 19px;
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.6;
  gap: 20px;
}

.hero-media figcaption span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  white-space: nowrap;
}

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

.corporate-summary > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  min-height: 78px;
  padding: 15px 24px;
  border-right: 1px solid var(--line);
}

.corporate-summary > div:first-child { border-left: 1px solid var(--line); }
.corporate-summary dt { color: var(--muted); font-size: 11px; font-weight: 700; }
.corporate-summary dd { margin: 0; color: var(--navy); font-size: 13px; font-weight: 800; }

/* Company */
.company-section {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: 110px;
}

.company-copy { min-width: 0; }
.company-intro { margin-bottom: 19px; color: var(--navy); font-size: 22px; font-weight: 800; line-height: 1.7; }
.company-copy > p:not(.company-intro) { max-width: 720px; margin-bottom: 35px; color: var(--muted); font-size: 14px; line-height: 2.05; }

.company-facts {
  margin-bottom: 27px;
  border-top: 1px solid var(--navy);
}

.company-facts > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  gap: 22px;
}

.company-facts dt { color: var(--muted); font-size: 12px; font-weight: 700; }
.company-facts dd { margin: 0; color: var(--ink-2); font-size: 13px; font-weight: 700; }

/* Business */
.business-section {
  padding: 84px 0 88px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.business-list { border-top: 2px solid var(--navy); }

.business-item {
  display: grid;
  grid-template-columns: 72px minmax(300px, .85fr) minmax(360px, 1fr);
  align-items: center;
  min-height: 145px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}

.business-item p { margin-bottom: 0; }
.business-number { color: var(--accent-dark); font-size: 12px; font-weight: 800; }
.business-type { margin-bottom: 7px !important; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.business-item h3 { margin-bottom: 0; color: var(--navy); font-size: 23px; line-height: 1.45; }
.business-item > p:last-child { color: var(--muted); font-size: 14px; line-height: 1.9; }
.section-link-row { display: flex; justify-content: flex-end; margin-top: 29px; }

/* Products */
.products-section {
  padding: 84px 0 88px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

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

.product-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.product-card a { display: grid; grid-template-columns: 1fr; min-height: 0; }
.product-card figure { min-width: 0; margin: 0; overflow: hidden; border-bottom: 1px solid var(--line); background: #e9edef; }

.product-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(.82);
}

.product-body { display: flex; flex-direction: column; align-items: flex-start; min-height: 178px; padding: 25px 27px 23px; }
.product-category { margin-bottom: 12px; color: var(--accent-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.product-category span { display: inline-block; margin-left: 9px; padding: 3px 7px; border: 1px solid #d8b5aa; color: var(--accent-dark); background: #fff7f3; font-size: 9px; letter-spacing: .03em; }
.product-body h3 { margin-bottom: 12px; color: var(--navy); font-size: 21px; line-height: 1.45; }
.product-body > p:not(.product-category) { margin-bottom: 20px; color: var(--muted); font-size: 14px; line-height: 1.85; }
.product-link { margin-top: auto; padding-bottom: 4px; border-bottom: 1px solid var(--line-dark); color: var(--ink-2); font-size: 13px; font-weight: 800; }
.product-link span { margin-left: 14px; font-size: 15px; font-weight: 400; }
.product-card a:hover .product-link { border-color: var(--navy); color: var(--navy); }

/* Purpose */
.purpose-section {
  padding: 84px 0;
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.purpose-layout {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 92px;
}

.purpose-media { margin: 0; border: 1px solid #cfc6b8; background: #e8dfd1; }
.purpose-media picture, .purpose-media img { width: 100%; }
.purpose-media img { aspect-ratio: 4 / 3; object-fit: cover; object-position: 74% center; filter: saturate(.74) contrast(1.02); }
.purpose-copy h2 { margin-bottom: 21px; }
.purpose-lead { margin-bottom: 17px; color: var(--navy); font-size: 18px; font-weight: 800; line-height: 1.8; }
.purpose-copy > p:not(.section-label, .purpose-lead) { margin-bottom: 27px; color: var(--muted); font-size: 14px; line-height: 2; }

.purpose-principles { list-style: none; margin-bottom: 0; padding: 0; border-top: 1px solid #bfb6a8; }
.purpose-principles li { display: grid; grid-template-columns: 52px 1fr; padding: 14px 0; border-bottom: 1px solid #d4cbbd; }
.purpose-principles span { color: var(--accent-dark); font-size: 10px; font-weight: 800; }
.purpose-principles b { color: var(--navy); font-size: 13px; }

/* Approach */
.approach-section {
  padding: 84px 0 88px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.approach-list { list-style: none; margin-bottom: 0; padding: 0; border-top: 2px solid var(--navy); }

.approach-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(250px, .62fr);
  align-items: center;
  min-height: 112px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}

.approach-number { color: var(--accent-dark); font-size: 12px; font-weight: 800; }
.approach-list h3 { margin-bottom: 7px; color: var(--navy); font-size: 19px; }
.approach-list div > p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.approach-output {
  margin-bottom: 0;
  padding: 14px 16px;
  border-left: 2px solid var(--line-dark);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}

.approach-output span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.approach-note { margin: 25px 0 0 auto; color: var(--muted); font-size: 13px; text-align: right; }

/* Governance */
.governance-section {
  padding: 88px 0 92px;
  border-bottom: 1px solid var(--line);
  background: #edf1f3;
}

.governance-layout {
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
  gap: 96px;
}

.governance-layout .section-heading > p:last-child { margin-top: 24px; }
.governance-content { min-width: 0; }
.governance-intro { margin-bottom: 30px; color: var(--navy); font-size: 17px; font-weight: 800; line-height: 1.9; }

.governance-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin-bottom: 33px;
  padding: 0;
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--line);
}

.governance-points li {
  display: grid;
  grid-template-columns: 38px 1fr;
  min-height: 166px;
  padding: 23px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.54);
  gap: 11px;
}

.governance-points li > span { padding-top: 3px; color: var(--accent-dark); font-size: 10px; font-weight: 800; }
.governance-points b { display: block; margin-bottom: 8px; color: var(--navy); font-size: 14px; line-height: 1.65; }
.governance-points p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.85; }

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

.policy-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 14px 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  gap: 15px;
}

.policy-links i { color: var(--accent-dark); font-size: 16px; font-style: normal; font-weight: 400; }
.policy-links a:hover { background: #f9fafb; }

/* News */
.news-section { padding: 66px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.news-layout { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); gap: 96px; }
.news-content { min-width: 0; }

.news-item {
  display: grid;
  grid-template-columns: 118px 1fr 24px;
  align-items: center;
  min-height: 84px;
  padding: 18px 0;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

.news-item time { color: var(--muted); font-size: 11px; font-weight: 700; }
.news-item > span { color: var(--ink-2); font-size: 13px; font-weight: 700; line-height: 1.7; }
.news-item i { color: var(--accent-dark); font-size: 17px; font-style: normal; }
.news-content .news-item + .news-item { border-top: 0; }
.news-content .inline-link { margin-top: 23px; }

/* Contact */
.contact-section { padding: 78px 0; background: var(--navy); color: #fff; }
.contact-layout { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); align-items: center; gap: 96px; }
.contact-layout .section-label { color: #ef987f; }
.contact-layout h2 { color: #fff; font-size: clamp(32px, 3vw, 40px); }
.contact-layout > div:last-child > p { max-width: 610px; margin-bottom: 23px; color: #cbd4dc; font-size: 13px; line-height: 1.95; }
.button-contact { min-width: 240px; color: var(--navy); background: #fff; }
.button-contact:hover { background: #edf1f3; }

/* Footer */
.site-footer { padding: 64px 0 0; color: #c6ced5; background: #0f1c29; }
.footer-main { display: grid; grid-template-columns: minmax(250px, 1fr) minmax(560px, 1.4fr); gap: 90px; padding-bottom: 56px; }
.brand-footer .brand-logo { width: 150px; filter: brightness(0) invert(1); }
.footer-brand > p { margin: 20px 0 0; color: #8f9ba6; font-size: 12px; line-height: 1.85; }
.footer-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links p { margin-bottom: 13px; color: #71808d; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 0;
  color: #c5cdd4;
  font-size: 12px;
  line-height: 1.6;
}
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); color: #71808d; font-size: 10px; }
.footer-bottom p { margin-bottom: 0; }

/* Restrained motion: headings only */
@media (prefers-reduced-motion: no-preference) {
  .motion-enabled [data-reveal="section"] {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
  }

  .motion-enabled [data-reveal="section"].is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Tablet and mobile navigation */
@media (max-width: 1160px) {
  .desktop-nav, .header-contact { display: none; }

  .header-inner { grid-template-columns: 1fr auto; }

  .nav-toggle {
    position: relative;
    display: block;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--navy);
    background: var(--navy);
    cursor: pointer;
  }

  .nav-toggle span {
    position: absolute;
    left: 13px;
    width: 18px;
    height: 1px;
    background: #fff;
    transition: transform .2s ease, top .2s ease;
  }

  .nav-toggle span:first-child { top: 18px; }
  .nav-toggle span:last-child { top: 26px; }
  .nav-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    z-index: 990;
    top: 76px;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: calc(100dvh - 76px);
    min-height: calc(100vh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 22px max(28px, calc((100vw - 720px) / 2)) max(44px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,.985);
  }

  .mobile-nav[hidden] { display: none !important; }

  .mobile-nav > a {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    min-height: 60px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
  }

  .mobile-nav > a span { color: var(--accent-dark); font-size: 10px; }

  .mobile-menu-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 12px 0 18px 42px;
    border-bottom: 1px solid var(--line);
    gap: 8px;
  }

  .mobile-menu-links a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70px;
    padding: 9px 11px;
    border: 1px solid var(--line);
    color: var(--ink-2);
    line-height: 1.45;
  }

  .mobile-menu-links small {
    color: var(--navy);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .11em;
  }

  .mobile-menu-links strong {
    margin-top: 3px;
    color: #778494;
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-nav .mobile-nav-contact {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    padding: 0 20px;
    border: 0;
    color: #fff;
    background: var(--navy);
  }

  .mobile-nav-contact::after { content: "→"; font-size: 18px; font-weight: 400; }

  .hero-layout { grid-template-columns: minmax(0, .96fr) minmax(390px, 1.04fr); gap: 38px; }
  .hero h1 { font-size: clamp(40px, 5.3vw, 50px); }
  .company-layout, .governance-layout { gap: 64px; }
  .product-body { min-height: 178px; }
}

@media (max-width: 900px) {
  .section-heading-split,
  .company-layout,
  .purpose-layout,
  .governance-layout,
  .news-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero { padding-top: 52px; }
  .hero-layout { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: 720px; }
  .hero-media { max-width: 720px; }
  .hero-media img { aspect-ratio: 16 / 10; }
  .company-intro { max-width: 720px; }
  .business-item { grid-template-columns: 58px minmax(250px, .9fr) 1fr; }
  .purpose-media { max-width: 720px; }
  .governance-layout .section-heading > p:last-child { max-width: 700px; }
  .footer-main { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 720px) {
  .hero-media img { aspect-ratio: 4 / 3; object-position: center; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 78px; }
  .shell { width: min(100% - 32px, var(--shell)); }

  .site-header {
    height: calc(68px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
  }

  .header-inner { width: calc(100% - 28px); gap: 16px; }
  .brand-logo { width: 126px; }

  .mobile-nav {
    top: calc(68px + env(safe-area-inset-top));
    height: calc(100dvh - 68px - env(safe-area-inset-top));
    min-height: calc(100vh - 68px - env(safe-area-inset-top));
    padding: 16px 18px max(40px, env(safe-area-inset-bottom));
  }

  .mobile-menu-links {
    grid-template-columns: 1fr;
    padding-left: 42px;
  }

  .hero { padding-top: 42px; }
  .hero-layout { gap: 31px; padding-bottom: 37px; }

  .hero-company {
    display: grid;
    grid-template-columns: 22px 1fr;
    margin-bottom: 19px;
    font-size: 12px;
    gap: 10px;
  }

  .hero-company::before { width: 22px; }
  .hero-company span { grid-column: 2; padding: 0; border: 0; font-size: 10px; }

  .hero h1 {
    margin-bottom: 21px;
    font-size: clamp(33px, 9.2vw, 40px);
    letter-spacing: -.04em;
    line-height: 1.4;
  }

  .hero-lead { font-size: 14px; line-height: 1.95; }

  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 24px; }
  .button { min-height: 48px; padding-inline: 15px; font-size: 12px; gap: 12px; }

  .hero-media { border-top-width: 3px; }
  .hero-media figcaption { display: block; min-height: 0; padding: 13px 14px; font-size: 11px; }
  .hero-media figcaption span { display: block; margin-bottom: 3px; }

  .corporate-summary { grid-template-columns: 1fr; }
  .corporate-summary > div { grid-template-columns: 80px 1fr; min-height: 60px; padding: 12px 15px; border-left: 1px solid var(--line); }
  .corporate-summary dt { font-size: 11px; }
  .corporate-summary dd { font-size: 13px; }

  .company-section,
  .business-section,
  .products-section,
  .purpose-section,
  .approach-section,
  .governance-section { padding: 64px 0 68px; }

  .news-section { padding: 52px 0 56px; }
  .section-label { margin-bottom: 13px; font-size: 11px; }

  .section-heading h2,
  .purpose-copy h2,
  .contact-layout h2 { font-size: clamp(29px, 8.1vw, 35px); line-height: 1.45; }

  .section-heading-split { margin-bottom: 31px; }
  .section-heading-split > p,
  .section-heading > p:last-child { font-size: 14px; line-height: 1.95; }

  .company-intro { margin-bottom: 16px; font-size: 18px; }
  .company-copy > p:not(.company-intro) { margin-bottom: 28px; font-size: 14px; }
  .company-facts > div { grid-template-columns: 86px 1fr; padding: 14px 0; gap: 16px; }
  .company-facts dt, .company-facts dd { font-size: 12.5px; }

  .business-item {
    grid-template-columns: 38px 1fr;
    min-height: 0;
    padding: 23px 0;
    gap: 7px 11px;
  }

  .business-item > p:last-child { grid-column: 2; font-size: 14px; }
  .business-type { font-size: 10px; }
  .business-item h3 { font-size: 19px; }
  .section-link-row { justify-content: flex-start; margin-top: 24px; }

  .product-grid { grid-template-columns: 1fr; }
  .product-card a { grid-template-columns: 1fr; min-height: 0; }
  .product-card figure { border-right: 0; border-bottom: 1px solid var(--line); }
  .product-card img { height: auto; min-height: 0; aspect-ratio: 16 / 10; }
  .product-body { min-height: 174px; padding: 19px 16px 17px; }
  .product-category { margin-bottom: 7px; font-size: 10px; }
  .product-body h3 { margin-bottom: 8px; font-size: 17px; }
  .product-body > p:not(.product-category) { margin-bottom: 12px; font-size: 13px; line-height: 1.8; }
  .product-link { font-size: 12px; }

  .purpose-layout { gap: 31px; }
  .purpose-media img { aspect-ratio: 4 / 3; object-position: 72% center; }
  .purpose-lead { font-size: 16px; }
  .purpose-copy > p:not(.section-label, .purpose-lead) { font-size: 14px; }

  .approach-list li {
    grid-template-columns: 36px 1fr;
    min-height: 0;
    padding: 22px 0;
    gap: 8px 12px;
  }

  .approach-list h3 { font-size: 17px; }
  .approach-list div > p { font-size: 14px; line-height: 1.85; }
  .approach-output { grid-column: 2; margin-top: 4px; padding: 10px 12px; font-size: 12.5px; }
  .approach-note { font-size: 12.5px; line-height: 1.8; text-align: left; }

  .governance-layout { gap: 28px; }
  .governance-intro { font-size: 15px; }
  .governance-points { grid-template-columns: 1fr; }
  .governance-points li { min-height: 0; padding: 19px 16px; }
  .governance-points b { font-size: 13px; }
  .governance-points p { font-size: 13px; }
  .policy-links { grid-template-columns: 1fr; }

  .news-layout { gap: 24px; }
  .news-item { grid-template-columns: 1fr 24px; gap: 8px 12px; }
  .news-item time { grid-column: 1; }
  .news-item > span { grid-column: 1; font-size: 13.5px; }
  .news-item i { grid-column: 2; grid-row: 1 / 3; }

  .contact-section { padding: 60px 0 64px; }
  .contact-layout { gap: 22px; }
  .contact-layout > div:last-child > p { font-size: 14px; }
  .button-contact { min-width: 0; width: 100%; }

  .site-footer { padding-top: 48px; }
  .footer-main { gap: 38px; padding-bottom: 39px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px 22px; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-links p { font-size: 10px; }
  .footer-links a { font-size: 13px; }
  .footer-bottom { display: grid; gap: 5px; }
}

/* Final hero */
.hero.hero-future {
  position: relative;
  isolation: isolate;
  display: block;
  height: calc(100svh - 76px);
  min-height: 650px;
  max-height: 880px;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #edf6fa;
}

.hero-future-media,
.hero-future-scrim {
  position: absolute;
  inset: 0;
}

.hero-future-media {
  z-index: -2;
  overflow: hidden;
}

.hero-future-media picture,
.hero-future-media img {
  width: 100%;
  height: 100%;
}

.hero-future-media img {
  object-fit: cover;
  object-position: 58% 50%;
}

.hero-future-scrim {
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(239,249,253,.82) 0%, rgba(239,249,253,.56) 35%, rgba(239,249,253,.08) 72%),
    linear-gradient(180deg, rgba(255,255,255,.16), transparent 42%);
}

.hero-future-content {
  display: flex;
  align-items: center;
  width: calc(100% - clamp(64px, 5vw, 112px));
  max-width: none;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 56px;
}

.hero-future-copy {
  width: min(920px, 70vw);
}

.hero-future-kicker {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--navy);
  font-family: "InterAndStore", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1.4;
  gap: 12px;
}

.hero-future-kicker::after {
  width: 24px;
  height: 1px;
  background: rgba(23,42,61,.48);
  content: "";
}

.hero.hero-future h1 {
  max-width: none;
  margin-bottom: 18px;
  color: #142126;
  font-family: "KleeOneAndStore", "Klee", "クレー", "YuKyokasho", "Yu Kyokasho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(42px, 3.8vw, 56px);
  font-weight: 600;
  letter-spacing: .035em;
  line-height: 1.34;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-future-narrow-break { display: none; }

.hero-future-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: #27404a;
  font-family: "NotoSansJPAndStore", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: clamp(13px, 1.16vw, 16px);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.8;
}

.hero-future-rule {
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 18px;
  background: #142126;
}

@media (max-width: 1100px) {
  .hero.hero-future h1 { font-size: clamp(40px, 4.5vw, 50px); }
}

@media (max-width: 900px) {
  .hero.hero-future {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    background: #fff;
  }

  .hero-future-content {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
    padding: 35px 24px 28px;
  }

  .hero-future-copy {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }

  .hero-future-kicker {
    margin-bottom: 8px;
    font-size: 8px;
  }

  .hero-future-kicker::after { width: 18px; }

  .hero.hero-future h1 {
    max-width: none;
    margin-bottom: 12px;
    font-size: clamp(27px, 7.2vw, 44px);
    line-height: 1.3;
  }

  .hero-future-lead {
    max-width: 680px;
    font-size: 11.3px;
    letter-spacing: .045em;
    line-height: 1.65;
  }

  .hero-future-rule {
    width: 38px;
    margin-top: 10px;
  }

  .hero-future-media {
    position: relative;
    inset: auto;
    z-index: 1;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #edf6fa;
  }

  .hero-future-media img {
    object-position: center;
  }

  .hero-future-scrim { display: none; }

}

@media (max-width: 560px) {
  .hero-future-content { padding: 22px 18px 18px; }
  .hero-future-narrow-break { display: inline; }
}

@media (max-width: 350px) {
  .hero-future-content { padding-inline: 15px; }
  .hero.hero-future h1 { font-size: 27px; }
  .hero-future-lead { font-size: 11px; }
}

/* News index and release articles */
.release-news-main,
.release-article-main {
  min-height: calc(100svh - 76px);
  background: linear-gradient(180deg, #f8fafb 0, #fff 360px);
}

.release-news-hero,
.release-article-hero {
  padding: clamp(64px, 8vw, 112px) 0 clamp(46px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
}

.release-eyebrow {
  margin-bottom: 17px;
  color: var(--accent-dark);
  font-family: "InterAndStore", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.release-news-hero h1,
.release-article-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.28;
}

.release-news-hero p:last-child,
.release-article-hero .release-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.release-news-section { padding: clamp(54px, 7vw, 92px) 0 110px; }
.release-news-list { border-top: 1px solid var(--navy); }

.release-news-row {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 28px;
  align-items: center;
  min-height: 112px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
  gap: 26px;
  transition: background .18s ease;
}

.release-news-row:hover { background: rgba(255,255,255,.82); }
.release-news-row time { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.release-news-row span { color: var(--ink-2); font-size: 16px; font-weight: 700; line-height: 1.7; }
.release-news-row i { color: var(--accent-dark); font-size: 18px; font-style: normal; }

.release-breadcrumb {
  margin: 0 0 27px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.release-breadcrumb a { border-bottom: 1px solid var(--line-dark); }
.release-article-hero h1 { font-size: clamp(32px, 4.3vw, 54px); }
.release-article-date { display: block; margin-top: 28px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.release-article-body { padding: clamp(48px, 7vw, 86px) 0 112px; }
.release-article-content { max-width: 820px; }
.release-article-intro { margin: 0 0 42px; color: var(--navy); font-size: clamp(18px, 2.1vw, 23px); font-weight: 700; line-height: 1.85; }
.release-article-content h2 { margin: 56px 0 18px; color: var(--navy); font-size: clamp(24px, 3vw, 32px); line-height: 1.5; }
.release-article-content p { margin: 0 0 23px; color: var(--ink-2); font-size: 15px; line-height: 2.05; }
.release-article-content ul { margin: 24px 0 34px; padding: 0; border-top: 1px solid var(--navy); list-style: none; }
.release-article-content li { padding: 17px 3px; border-bottom: 1px solid var(--line); color: var(--ink-2); font-size: 14px; font-weight: 700; line-height: 1.8; }

.release-article-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}

.release-primary-link,
.release-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid var(--navy);
  font-size: 13px;
  font-weight: 800;
  gap: 26px;
}

.release-primary-link { color: #fff; background: var(--navy); }
.release-primary-link:hover { background: var(--navy-2); }
.release-secondary-link { color: var(--navy); background: #fff; }
.release-secondary-link:hover { background: #f4f6f7; }

@media (max-width: 760px) {
  .release-news-hero,
  .release-article-hero { padding: 50px 0 42px; }
  .release-news-hero h1,
  .release-article-hero h1 { font-size: 34px; letter-spacing: -.035em; }
  .release-news-hero p:last-child,
  .release-article-hero .release-lead { font-size: 14px; }
  .release-news-section,
  .release-article-body { padding-bottom: 76px; }
  .release-news-row { grid-template-columns: minmax(0, 1fr) 22px; gap: 7px 12px; min-height: 106px; padding: 20px 2px; }
  .release-news-row time { grid-column: 1; }
  .release-news-row span { grid-column: 1; font-size: 14px; }
  .release-news-row i { grid-column: 2; grid-row: 1 / 3; }
  .release-article-intro { margin-bottom: 34px; font-size: 18px; }
  .release-article-content h2 { margin-top: 44px; }
  .release-article-content p { font-size: 14px; }
  .release-article-actions { align-items: stretch; flex-direction: column; }
  .release-primary-link,
  .release-secondary-link { width: 100%; }
}

/* Evidence */
.evidence-section {
  padding: 88px 0 92px;
  border-bottom: 1px solid var(--line);
  background: #f1f5f6;
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: 96px;
}

.evidence-layout .section-heading > p:last-child { max-width: 360px; margin-top: 24px; }
.evidence-mobile-break { display: none; }
.evidence-content { min-width: 0; }

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

.evidence-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  min-height: 224px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  gap: 22px;
}

.evidence-ring {
  position: relative;
  width: 110px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0 var(--ring), #dce4e7 var(--ring) 100%);
}

.evidence-ring::before {
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  background: #f8faf9;
  content: "";
}

.evidence-ring::after {
  position: absolute;
  inset: 25px;
  display: grid;
  place-items: center;
  border-radius: inherit;
  color: var(--navy);
  font-family: "InterAndStore", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  content: "DATA";
}

.evidence-ring-513 { --ring: 51.3%; }
.evidence-ring-470 { --ring: 47%; }
.evidence-scope { margin: 0 0 13px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .04em; line-height: 1.65; }
.evidence-number { margin: 0; color: var(--navy); font-family: "InterAndStore", sans-serif; font-size: clamp(43px, 4vw, 58px); font-weight: 650; letter-spacing: -.04em; line-height: 1; }
.evidence-number small { margin-left: 2px; font-size: .4em; letter-spacing: 0; }
.evidence-caption { margin: 15px 0 0; color: var(--ink-2); font-size: 12px; font-weight: 700; line-height: 1.7; }

.evidence-message {
  margin: 35px 0 20px;
  color: var(--navy);
  font-family: "KleeOneAndStore", "Yu Mincho", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.75;
}

.evidence-source { padding-top: 17px; border-top: 1px solid var(--line-dark); }
.evidence-source p { margin: 0 0 5px; color: #6a747d; font-size: 10px; line-height: 1.8; }

/* Business diagram */
.business-map { position: relative; }
.business-map-core { display: inline-flex; align-items: center; min-height: 48px; margin: 0 0 25px; padding: 0 18px; color: #fff; background: var(--navy); gap: 18px; }
.business-map-core span { font-family: "InterAndStore", sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.business-map-core b { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.25); font-size: 12px; letter-spacing: .02em; }

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

.business-card {
  min-height: 370px;
  padding: 30px 27px 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.business-icon { display: grid; place-items: center; width: 100%; height: 112px; margin-bottom: 24px; background: #f3f6f7; }
.business-icon svg { width: 86px; height: 65px; fill: none; stroke: var(--navy); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.business-card:nth-child(2) .business-icon { background: #edf5f4; }
.business-card:nth-child(2) .business-icon svg { stroke: #245d61; }
.business-card:nth-child(3) .business-icon { background: #f8f1ed; }
.business-card:nth-child(3) .business-icon svg { stroke: var(--accent-dark); }
.business-card .business-type { margin: 0 0 7px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.business-card h3 { margin: 0 0 12px; color: var(--navy); font-size: 21px; line-height: 1.45; }
.business-role { min-height: 54px; margin: 0 0 21px; color: var(--muted); font-size: 13px; line-height: 1.85; }
.business-tags { display: flex; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; gap: 7px; }
.business-tags li { padding: 5px 9px; border: 1px solid var(--line); color: var(--ink-2); background: #fff; font-size: 10px; font-weight: 700; }
.business-card-action { display: inline-flex; align-items: center; margin-top: 22px; padding-bottom: 4px; border-bottom: 1px solid var(--line-dark); color: var(--navy); font-size: 11px; font-weight: 800; gap: 12px; }
.business-card-action:hover { border-color: var(--accent-dark); color: var(--accent-dark); }

/* BtoB trust and process diagram */
.approach-trust {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(320px, .66fr);
  margin-bottom: 46px;
  border: 1px solid var(--line);
  background: #fff;
}

.approach-trust-image { min-width: 0; margin: 0; overflow: hidden; }
.approach-trust-image img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; filter: saturate(.72) contrast(1.025); }
.approach-trust-copy { display: flex; flex-direction: column; justify-content: center; padding: 39px 34px; color: #fff; background: var(--navy); }
.approach-trust-copy .section-label { color: #ef987f; }
.approach-trust-copy h3 { margin: 0 0 27px; font-size: clamp(25px, 2.6vw, 34px); letter-spacing: -.035em; line-height: 1.5; }
.approach-trust-copy ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.3); list-style: none; }
.approach-trust-copy li { display: flex; align-items: center; min-height: 58px; border-bottom: 1px solid rgba(255,255,255,.18); gap: 10px; }
.approach-trust-copy li:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.18); }
.approach-trust-copy li span { color: #ef987f; font-size: 9px; font-weight: 800; }
.approach-trust-copy li b { font-size: 12px; }

.approach-figure { margin: 0; border: 1px solid var(--line); background: #fff; }
.approach-figure > img { width: 100%; aspect-ratio: 16 / 7.6; object-fit: cover; object-position: center; }
.approach-labels { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.approach-labels li { display: grid; grid-template-columns: 28px 1fr; min-height: 88px; padding: 18px 15px; border-right: 1px solid var(--line); gap: 2px 8px; }
.approach-labels li:last-child { border-right: 0; }
.approach-labels span { grid-row: 1 / 3; color: var(--accent-dark); font-size: 9px; font-weight: 800; }
.approach-labels b { color: var(--navy); font-size: 13px; line-height: 1.5; }
.approach-labels small { color: var(--muted); font-size: 10px; line-height: 1.5; }

/* Release article visuals */
.release-article-visual { margin: 0 0 52px; border: 1px solid var(--line); background: #f2f5f6; overflow: hidden; }
.release-article-visual img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.release-service-flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 30px 0 44px; padding: 0; border-top: 2px solid var(--navy); border-left: 1px solid var(--line); list-style: none; }
.release-service-flow li { display: grid; min-height: 118px; padding: 19px 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.release-service-flow span { color: var(--accent-dark); font-size: 9px; font-weight: 800; }
.release-service-flow b { align-self: end; color: var(--navy); font-size: 13px; line-height: 1.6; }

@media (max-width: 1000px) {
  .evidence-layout { grid-template-columns: 1fr; gap: 38px; }
  .evidence-layout .section-heading > p:last-child { max-width: 660px; }
  .evidence-card { grid-template-columns: 96px 1fr; }
  .evidence-ring { width: 92px; }
  .business-card { padding-inline: 21px; }
  .approach-trust { grid-template-columns: 1fr 340px; }
}

@media (max-width: 760px) {
  .evidence-section { padding: 64px 0 68px; }
  .evidence-mobile-break { display: inline; }
  .evidence-cards { grid-template-columns: 1fr; }
  .evidence-card { min-height: 178px; padding: 22px 18px; }
  .evidence-message { font-size: 22px; }
  .business-map-core { width: 100%; justify-content: center; }
  .business-map-grid { grid-template-columns: 1fr; }
  .business-card { display: grid; grid-template-columns: 104px 1fr; min-height: 0; padding: 22px 18px; gap: 0 17px; }
  .business-icon { grid-row: 1 / 5; width: 104px; height: 104px; margin: 0; }
  .business-icon svg { width: 74px; }
  .business-card .business-type { align-self: end; }
  .business-card h3 { margin-bottom: 5px; font-size: 18px; }
  .business-role { min-height: 0; margin-bottom: 12px; font-size: 12px; }
  .business-tags { gap: 5px; }
  .business-tags li { padding: 4px 7px; font-size: 9px; }
  .business-card-action { margin-top: 13px; font-size: 10px; }
  .approach-trust { grid-template-columns: 1fr; }
  .approach-trust-image img { min-height: 0; aspect-ratio: 16 / 10; }
  .approach-trust-copy { padding: 30px 24px; }
  .approach-figure > img { aspect-ratio: 16 / 9; }
  .approach-labels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .approach-labels li:nth-child(2) { border-right: 0; }
  .approach-labels li { min-height: 78px; }
  .release-service-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .release-service-flow li { min-height: 96px; }
  .release-service-flow li:nth-child(2) { border-right: 0; }
  .release-desktop-break { display: none; }
}

@media (max-width: 430px) {
  .evidence-card { grid-template-columns: 82px 1fr; gap: 15px; }
  .evidence-ring { width: 80px; }
  .evidence-ring::before { inset: 9px; }
  .evidence-ring::after { font-size: 8px; }
  .evidence-number { font-size: 40px; }
  .business-card { grid-template-columns: 82px 1fr; gap: 0 14px; }
  .business-icon { width: 82px; height: 96px; }
  .business-icon svg { width: 64px; }
}
