@charset "UTF-8";
:root {
  --brand-700: #013459;
  --brand-600: #0f5687;
  --brand-500: #1c6eb3;
  --brand-400: #2f72a8;
  --accent-500: #fca670;
  --accent-600: #b85420;
  --accent-100: #fff2ea;
  --surface-0: #fff;
  --surface-cream: #fffdf7;
  --surface-blue: #eef5fa;
  --surface-navy: #062f4c;
  --text-primary: #12354d;
  --text-secondary: #5f7280;
  --ink-500: #536b79;
  --ink-600: #5f7280;
  --ink-700: #12354d;
  --border: #d8e2e9;
  --border-strong: #aec2cf;
  --shadow-card: 0 18px 50px rgba(1,52,89,.08);
  --shadow-float: 0 30px 80px rgba(1,52,89,.14);
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Libre Franklin", Arial, sans-serif;
  --max: 1200px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

.screen-reader-text {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text-primary);
  background: var(--surface-cream);
  font-family: var(--font-ja);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.menu-open #hubspot-messages-iframe-container { display: none !important; }
img { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 4px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; color: #fff; background: var(--brand-700); font-size: 13px; font-weight: 700; text-decoration: none; transform: translateY(-160%); transition: transform .18s var(--ease); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.narrow { max-width: 760px; }
.section { position: relative; padding: 132px 0; overflow: hidden; }
.section--white { background: var(--surface-0); }
.section--blue { background: var(--surface-blue); }
.section--navy { background: var(--surface-navy); color: white; }
.section--cream { background: var(--surface-cream); }

.kicker {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-500);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section--navy .kicker { color: #a9d4f5; }
.section-heading { margin: 0; color: var(--brand-700); font-size: clamp(32px, 4vw, 46px); line-height: 1.38; letter-spacing: -.025em; }
.section--navy .section-heading { color: white; }
.section-lead { margin: 22px 0 0; max-width: 720px; color: var(--text-secondary); font-size: 17px; }
.section--navy .section-lead { color: #cedde7; }
.section-head-row { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-500);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.text-link::after { content: "↗"; transition: transform .2s var(--ease); }
.text-link:hover::after { transform: translate(2px,-2px); }
.section--navy .text-link { color: #bfe1fa; }

.button {
  min-height: 56px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.button::after { content: "→"; font-family: var(--font-en); font-size: 18px; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--accent-500); color: var(--brand-700); box-shadow: 0 14px 34px rgba(252,166,112,.26); }
.button--primary:hover { box-shadow: 0 18px 40px rgba(252,166,112,.36); }
.button--secondary { border-color: var(--brand-500); background: rgba(255,255,255,.86); color: var(--brand-500); }
.button--secondary:hover { background: var(--surface-blue); }
.button--light { background: white; color: var(--brand-700); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(216,226,233,.8);
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { width: 144px; height: auto; display: block; }
.global-nav { display: flex; align-items: center; gap: 26px; }
.global-nav > a:not(.header-cta) { position: relative; color: var(--brand-700); font-size: 13px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.global-nav > a:not(.header-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--brand-500); transition: right .25s var(--ease); }
.global-nav > a:not(.header-cta):hover::after { right: 0; }
.global-nav > a[aria-current="page"]::after { right: 0; }
.nav-item { min-height: 44px; position: relative; display: inline-flex; align-items: center; }
.nav-item__parent { min-height: 44px; position: relative; display: inline-flex; align-items: center; gap: 7px; color: var(--brand-700); font-size: 13px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.nav-item__parent::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--brand-500); transition: right .25s var(--ease); }
.nav-item:hover .nav-item__parent::after, .nav-item:focus-within .nav-item__parent::after, .nav-item__parent[aria-current="page"]::after { right: 0; }
.nav-item__caret { width: 6px; height: 6px; margin-top: -3px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .2s var(--ease); }
.nav-item:hover .nav-item__caret, .nav-item:focus-within .nav-item__caret { transform: translateY(3px) rotate(225deg); }
.nav-submenu { min-width: 230px; padding: 10px; position: absolute; top: calc(100% + 8px); left: -18px; display: grid; gap: 2px; border: 1px solid rgba(1,52,89,.14); background: rgba(255,255,255,.98); box-shadow: 0 18px 42px rgba(1,52,89,.14); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s linear .2s; }
.nav-submenu::before { content: ""; height: 10px; position: absolute; left: 0; right: 0; top: -10px; }
.nav-submenu a { min-height: 46px; padding: 11px 13px; display: flex; align-items: center; color: var(--brand-700); font-size: 13px; font-weight: 700; text-decoration: none; transition: background .2s var(--ease), color .2s var(--ease), padding-left .2s var(--ease); }
.nav-submenu a::after { content: "→"; margin-left: auto; color: var(--brand-500); font-family: var(--font-en); }
.nav-submenu a:hover, .nav-submenu a:focus-visible { padding-left: 17px; background: var(--surface-blue); color: var(--brand-500); }
.nav-item:hover .nav-submenu, .nav-item:focus-within .nav-submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
.header-cta { min-height: 46px; padding: 10px 18px; border-radius: 8px; }
.menu-toggle { width: 46px; height: 46px; padding: 0; display: none; place-items: center; border: 1px solid rgba(1,52,89,.22); border-radius: 50%; background: white; color: var(--brand-700); box-shadow: 0 8px 24px rgba(1,52,89,.08); }
.menu-toggle-icon, .menu-toggle-icon::before, .menu-toggle-icon::after { width: 20px; height: 2px; display: block; background: currentColor; transition: transform .25s var(--ease), opacity .2s var(--ease), background .2s var(--ease); }
.menu-toggle-icon { position: relative; }
.menu-toggle-icon::before, .menu-toggle-icon::after { content: ""; position: absolute; left: 0; }
.menu-toggle-icon::before { top: -6px; }
.menu-toggle-icon::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  min-height: 770px;
  padding: 166px 0 78px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fbf8f1;
}
.hero-visual { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: hero-drift 12s ease-in-out infinite alternate; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(255,253,247,.98) 0%, rgba(255,253,247,.94) 34%, rgba(255,253,247,.56) 55%, rgba(255,253,247,.04) 78%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; height: 150px; background: linear-gradient(0deg, var(--surface-cream), rgba(255,253,247,0)); }
@keyframes hero-drift { from { transform: scale(1.01) translate3d(0,0,0); } to { transform: scale(1.035) translate3d(-8px,-4px,0); } }
.hero-content { position: relative; z-index: 2; width: min(780px, 68%); }
.hero h1 { margin: 0; color: var(--brand-700); font-size: clamp(44px, 4.7vw, 60px); font-weight: 800; line-height: 1.22; letter-spacing: -.045em; }
.hero h1 .blue { color: var(--brand-500); }
.mobile-break, .sp-break { display: none; }
.hero-lead { margin: 30px 0 0; max-width: 650px; color: #36586e; font-size: 17px; line-height: 2; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-proof { margin-top: 48px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 28px; }
.hero-proof span { position: relative; color: var(--text-secondary); font-family: var(--font-en); font-size: 11px; font-weight: 600; letter-spacing: .12em; }
.hero-proof span + span::before { content: ""; position: absolute; left: -15px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: var(--brand-400); }

.issues-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.issue-card { min-height: 520px; position: relative; display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 18px; background: white; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.issue-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--card-accent, var(--brand-500)); }
.issue-card:hover { transform: translateY(-5px); border-color: transparent; box-shadow: var(--shadow-card); }
.issue-card:nth-child(2) { --card-accent: var(--accent-500); }
.issue-card:nth-child(3) { --card-accent: var(--brand-400); }
.issue-visual { aspect-ratio: 4 / 3; overflow: hidden; background: #edf4f8; }
.issue-visual img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s var(--ease); }
.issue-card:hover .issue-visual img { transform: scale(1.035); }
.issue-content { padding: 26px 30px 30px; display: flex; flex: 1; flex-direction: column; }
.issue-number { margin: 0 0 18px; color: var(--card-accent, var(--brand-500)); font-family: var(--font-en); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.issue-card h3 { margin: 0; color: var(--brand-700); font-size: 23px; line-height: 1.5; }
.issue-card p { margin: 18px 0 28px; color: var(--text-secondary); font-size: 14px; }
.issue-card .issue-number { margin: 0 0 18px; color: var(--card-accent, var(--brand-500)); font-size: 12px; }
.issue-card .text-link { margin-top: auto; }
.issue-routing-visual { width: 100%; max-width: 330px; justify-self: end; padding: 18px; border: 1px solid var(--border); background: rgba(255,255,255,.72); }
.issue-route-main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; }
.issue-route-main span, .issue-route-main strong { min-height: 42px; padding: 8px 6px; display: grid; place-items: center; border: 1px solid #c5d8e5; color: var(--brand-700); font-size: 10px; line-height: 1.35; text-align: center; }
.issue-route-main strong { border-color: var(--accent-500); background: var(--accent-100); }
.issue-route-main i { color: var(--brand-400); font-family: var(--font-en); font-size: 16px; font-style: normal; }
.issue-route-down { height: 24px; display: grid; place-items: center; color: var(--accent-500); font-family: var(--font-en); font-size: 18px; line-height: 1; }
.issue-route-supports { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.issue-route-supports span { min-height: 34px; padding: 5px 3px; display: grid; place-items: center; color: white; background: var(--brand-500); font-size: 9px; font-weight: 700; line-height: 1.3; text-align: center; }
.issue-route-supports span:nth-child(2) { color: var(--brand-700); background: #dcebf5; }
.issue-route-supports span:nth-child(3) { background: var(--brand-700); }

.service-diagram { margin-top: 60px; padding: 38px; border: 1px solid var(--border); border-radius: 26px; background: linear-gradient(145deg, #f7fbfd 0%, #fff 52%, #fff9f4 100%); box-shadow: var(--shadow-card); }
.diagram-caption { margin: 0 0 18px; color: var(--brand-500); font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.diagram-issues { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.diagram-issue { min-height: 76px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); border-radius: 13px; background: white; color: var(--brand-700); font-size: 14px; font-weight: 700; }
.diagram-issue::before { content: ""; width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: var(--issue-color, var(--brand-500)); box-shadow: 0 0 0 6px color-mix(in srgb, var(--issue-color, var(--brand-500)) 14%, transparent); }
.diagram-issue:nth-child(2) { --issue-color: var(--accent-500); }
.diagram-issue:nth-child(3) { --issue-color: var(--brand-400); }
.diagram-connector { height: 54px; display: grid; place-items: center; color: var(--brand-400); }
.diagram-connector::before { content: ""; width: 1px; height: 28px; background: currentColor; }
.diagram-connector::after { content: ""; width: 7px; height: 7px; margin-top: -17px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); }
.diagram-hub { padding: 27px 32px; display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 28px; border-radius: 17px; color: white; background: var(--surface-navy); box-shadow: 0 18px 40px rgba(1,52,89,.16); }
.diagram-hub-label { color: #bfe1fa; font-family: var(--font-en); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.diagram-hub strong { font-size: 20px; line-height: 1.5; }
.diagram-hub small { max-width: 330px; color: #c8d9e4; font-size: 12px; line-height: 1.75; }
.diagram-orders { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.diagram-order { padding: 27px 28px; position: relative; border: 1px solid var(--border); border-radius: 16px; background: white; }
.diagram-order--package { border-color: var(--brand-500); box-shadow: inset 0 4px 0 var(--brand-500); }
.diagram-order--single { box-shadow: inset 0 4px 0 var(--accent-500); }
.diagram-order span { color: var(--brand-500); font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.diagram-order h3 { margin: 9px 0 8px; color: var(--brand-700); font-size: 21px; }
.diagram-order p { margin: 0; color: var(--text-secondary); font-size: 13px; }
.diagram-channel-area { padding: 25px 27px; border-radius: 16px; background: var(--surface-blue); }
.channel-title { margin: 0 0 16px; color: var(--brand-700); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.channels { display: flex; flex-wrap: wrap; gap: 9px; }
.channel { padding: 8px 13px; border: 1px solid var(--border); border-radius: 999px; background: white; color: var(--text-primary); font-size: 12px; font-weight: 500; }
.channel:is(a) { text-decoration: none; transition: border-color .25s var(--ease), background-color .25s var(--ease); }
.channel:is(a):hover { border-color: var(--brand-400); background: var(--surface-blue); }
.diagram-outcome { margin-top: 22px; padding: 18px 24px; display: flex; align-items: center; justify-content: center; gap: 28px; border-radius: 13px; color: var(--brand-700); background: var(--accent-100); font-size: 15px; font-weight: 800; }
.diagram-outcome span { color: var(--accent-500); font-size: 20px; }

.works-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work-card { border: 1px solid rgba(255,255,255,.9); border-radius: 20px; background: white; overflow: hidden; box-shadow: 0 16px 40px rgba(1,52,89,.06); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.work-top { padding: 30px 30px 20px; }
.work-tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--surface-blue); color: var(--brand-500); font-size: 11px; font-weight: 700; }
.work-card h3 { min-height: 68px; margin: 15px 0 0; color: var(--brand-700); font-size: 19px; line-height: 1.65; }
.metric-panel { padding: 26px 30px 28px; background: linear-gradient(145deg, #f4f9fc, #fff); }
.metric-label { color: var(--text-secondary); font-size: 11px; }
.metric-row { margin-top: 9px; display: flex; align-items: center; gap: 10px; color: var(--brand-700); font-family: var(--font-en); font-size: 27px; font-weight: 700; line-height: 1; }
.metric-row .arrow { color: var(--accent-500); font-size: 20px; }
.metric-row strong { color: var(--accent-500); font-size: 43px; letter-spacing: -.04em; }
.work-body { padding: 22px 30px 28px; }
.work-body > p { margin: 0; color: var(--text-secondary); font-size: 13px; }

.approach-bg { position: absolute; inset: 0; pointer-events: none; opacity: .38; background-image: radial-gradient(circle at 82% 12%, rgba(70,135,189,.32), transparent 28%), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: auto, 48px 48px, 48px 48px; }
.approach-cycle { margin-top: 68px; padding: 38px 32px 30px; position: relative; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.045); }
.cycle-flow { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.cycle-flow::before { content: ""; position: absolute; top: 27px; left: 8.3%; right: 8.3%; height: 1px; background: linear-gradient(90deg, rgba(169,212,245,.35), var(--accent-500), rgba(169,212,245,.35)); }
.cycle-node { position: relative; z-index: 1; text-align: center; }
.cycle-index { width: 56px; height: 56px; margin: 0 auto 20px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--surface-navy); background: var(--accent-500); font-family: var(--font-en); font-size: 12px; font-weight: 700; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.cycle-node h3 { margin: 0; color: white; font-size: 14px; line-height: 1.6; }
.cycle-node p { margin: 7px 0 0; color: #bcd0dd; font-size: 11px; line-height: 1.65; }
.cycle-return { margin-top: 34px; padding: 15px 20px; display: flex; align-items: center; justify-content: center; gap: 18px; border: 1px dashed rgba(169,212,245,.32); border-radius: 999px; color: #d9e8f1; font-size: 13px; font-weight: 600; }
.cycle-return span { color: var(--accent-500); font-family: var(--font-en); font-size: 22px; }
.approach-principles { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.approach-principle { padding: 16px 18px; border-radius: 12px; color: #d7e6ef; background: rgba(255,255,255,.07); font-size: 12px; text-align: center; }
.approach-principle strong { color: white; }

.team-layout { margin-top: 58px; display: grid; grid-template-columns: .9fr 80px 1.35fr; align-items: stretch; }
.team-core, .team-network { padding: 42px; border: 1px solid var(--border); border-radius: 20px; background: white; }
.team-core { border-top: 7px solid var(--brand-500); box-shadow: var(--shadow-card); }
.team-kicker { margin: 0 0 18px; color: var(--brand-500); font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: .15em; }
.team-core h3, .team-network h3 { margin: 0; color: var(--brand-700); font-size: 23px; }
.team-core p, .team-network p { margin: 18px 0 0; color: var(--text-secondary); font-size: 14px; }
.team-connector { display: grid; place-items: center; color: var(--accent-500); font-family: var(--font-en); font-size: 27px; }
.partner-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.partner { min-height: 72px; padding: 10px; display: grid; place-items: center; border-radius: 10px; background: var(--surface-blue); color: var(--brand-700); font-size: 12px; font-weight: 600; text-align: center; }
.specialist-visual { margin-top: 26px; padding: 20px 22px; display: grid; grid-template-columns: 1fr 94px 1fr; align-items: center; gap: 14px; border: 1px solid var(--border); background: var(--surface-blue); }
.specialist-visual-label { margin: 0 0 12px; display: block; color: var(--brand-500); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-align: center; }
.specialist-pool-people { display: grid; grid-template-columns: repeat(4, 28px); justify-content: center; gap: 8px; }
.specialist-person { width: 28px; height: 28px; position: relative; display: block; border: 1px solid #b7d0e1; border-radius: 50%; background: white; }
.specialist-person::before { content: ""; width: 8px; height: 8px; position: absolute; left: 9px; top: 5px; border-radius: 50%; background: var(--brand-400); }
.specialist-person::after { content: ""; width: 16px; height: 8px; position: absolute; left: 5px; bottom: 4px; border-radius: 9px 9px 3px 3px; background: #b5cee0; }
.specialist-person:nth-child(3n+2)::before, .specialist-person:nth-child(3n+2)::after { background: var(--accent-500); }
.specialist-person:nth-child(3n)::before, .specialist-person:nth-child(3n)::after { background: var(--brand-700); }
.specialist-select { color: var(--brand-500); font-size: 9px; font-weight: 700; line-height: 1.5; text-align: center; }
.specialist-select::after { content: "→"; margin-top: 3px; display: block; color: var(--accent-500); font-family: var(--font-en); font-size: 24px; line-height: 1; }
.specialist-team-card { min-height: 80px; padding: 12px 14px; border-left: 4px solid var(--accent-500); background: white; }
.specialist-team-card strong { display: block; color: var(--brand-700); font-size: 11px; text-align: center; }
.selected-people { margin-top: 10px; display: flex; justify-content: center; }
.selected-people .specialist-person { margin-left: -5px; box-shadow: 0 0 0 3px white; }
.selected-people .specialist-person:first-child { margin-left: 0; }
.core-visual { margin-top: 30px; padding: 20px; border: 1px solid rgba(255,255,255,.26); background: rgba(1,52,89,.16); }
.core-intake { min-height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); color: white; font-size: 10px; font-weight: 700; text-align: center; }
.core-flow-arrow { height: 24px; display: grid; place-items: center; color: var(--accent-500); font-family: var(--font-en); font-size: 18px; line-height: 1; }
.core-manager { padding: 11px 12px; border-left: 4px solid var(--accent-500); color: var(--brand-700); background: white; text-align: center; }
.core-manager span { display: block; color: var(--brand-500); font-family: var(--font-en); font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.core-manager strong { display: block; margin-top: 3px; font-size: 12px; }
.core-functions { margin-top: 9px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; }
.core-functions span { min-height: 30px; padding: 5px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); color: white; font-size: 9px; font-weight: 700; line-height: 1.3; text-align: center; }

.steps { margin-top: 60px; position: relative; display: grid; grid-template-columns: repeat(5, 1fr); }
.steps::before { content: ""; position: absolute; top: 25px; left: 8%; right: 8%; height: 1px; background: #b9cfde; }
.step { padding: 0 20px; position: relative; text-align: center; }
.step-dot { width: 52px; height: 52px; margin: 0 auto 24px; position: relative; z-index: 1; display: grid; place-items: center; border: 1px solid #b9cfde; border-radius: 50%; background: white; color: var(--brand-500); font-family: var(--font-en); font-size: 12px; font-weight: 700; box-shadow: 0 8px 22px rgba(1,52,89,.07); }
.step h3 { margin: 0; color: var(--brand-700); font-size: 15px; line-height: 1.6; }
.step p { margin: 10px 0 0; color: var(--text-secondary); font-size: 12px; line-height: 1.7; }

.about-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 78px; align-items: center; }
.portrait-frame { margin: 0; position: relative; }
.portrait-frame::before { content: ""; position: absolute; left: -22px; top: 28px; width: 68%; height: 84%; border-radius: 22px; background: var(--surface-blue); transform: rotate(-4deg); }
.portrait-frame::after { content: ""; position: absolute; right: -20px; bottom: 34px; width: 90px; height: 90px; border: 1px solid rgba(252,166,112,.65); border-radius: 50%; }
.portrait-frame img { width: 100%; aspect-ratio: 1 / 1.04; position: relative; z-index: 1; display: block; border-radius: 24px; object-fit: cover; box-shadow: var(--shadow-float); }
.about-copy .section-lead { font-size: 16px; }
.message { margin: 34px 0 0; padding: 28px 30px; position: relative; border-left: 3px solid var(--accent-500); background: white; color: #3e5a6c; font-size: 14px; box-shadow: var(--shadow-card); }
.signature { margin: 22px 0 0; color: var(--brand-700); font-size: 13px; font-weight: 700; }

.articles-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { border: 1px solid var(--border); border-radius: 18px; background: white; overflow: hidden; text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.article-image { aspect-ratio: 3 / 2; overflow: hidden; background: var(--surface-blue); }
.article-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s var(--ease); }
.article-card:hover .article-image img { transform: scale(1.03); }
.article-body { padding: 24px 24px 26px; }
.article-category { color: var(--brand-500); font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.article-body h3 { min-height: 84px; margin: 12px 0 18px; color: var(--brand-700); font-size: 17px; line-height: 1.65; }
.article-date { color: var(--text-secondary); font-family: var(--font-en); font-size: 11px; }
.resource-head { margin-top: 90px; padding-top: 64px; display: flex; align-items: end; justify-content: space-between; gap: 28px; border-top: 1px solid var(--border); }
.resource-head .kicker { margin-bottom: 10px; }
.resource-head h3 { margin: 0; color: var(--brand-700); font-size: 28px; line-height: 1.45; }
.resources-grid { margin-top: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.resource-card { border: 1px solid var(--border); border-radius: 18px; background: white; overflow: hidden; text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.resource-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.resource-cover { padding: 24px; position: relative; overflow: hidden; background: linear-gradient(145deg, #e8f2f8, #f9fbfc 62%, #fff0e7); }
.resource-cover::before { content: ""; position: absolute; width: 130px; height: 130px; right: -45px; top: -54px; border: 1px solid rgba(28,110,179,.2); border-radius: 50%; box-shadow: 0 0 0 24px rgba(28,110,179,.035); }
.resource-cover img { width: 100%; aspect-ratio: 16 / 9; position: relative; display: block; object-fit: cover; border: 7px solid white; border-radius: 6px; box-shadow: 0 16px 30px rgba(1,52,89,.16); transform: rotate(-1.2deg); transition: transform .4s var(--ease); }
.resource-card:nth-child(2) .resource-cover img { transform: rotate(1.2deg); }
.resource-card:hover .resource-cover img { transform: rotate(0) scale(1.025); }
.resource-body { padding: 23px 24px 26px; }
.resource-label { color: var(--brand-500); font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.resource-body h3 { min-height: 62px; margin: 10px 0 18px; color: var(--brand-700); font-size: 16px; line-height: 1.65; }
.resource-more { color: var(--brand-500); font-size: 13px; font-weight: 700; }
.knowledge-actions { margin-top: 28px; display: flex; justify-content: flex-end; }

.home-news { padding-top: 116px; padding-bottom: 116px; }
.home-news-list { margin-top: 58px; border-top: 1px solid var(--brand-700); }
.home-news-item { border-bottom: 1px solid var(--border); }
.home-news-item > a { min-height: 104px; padding: 24px 0; display: grid; grid-template-columns: 138px minmax(0, 1fr) 44px; align-items: center; gap: 28px; text-decoration: none; transition: color .2s var(--ease), padding .25s var(--ease); }
.home-news-item > a:hover { padding-left: 10px; color: var(--brand-500); }
.home-news-item time { color: var(--brand-500); font-family: var(--font-en); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.home-news-item h3 { margin: 0; color: var(--brand-700); font-size: 17px; font-weight: 600; line-height: 1.7; }
.home-news-item > a:hover h3 { color: var(--brand-500); }
.home-news-item span { color: var(--accent-500); font-family: var(--font-en); font-size: 20px; text-align: right; }
.home-news-empty { margin: 48px 0 0; padding: 32px 0; border-top: 1px solid var(--brand-700); border-bottom: 1px solid var(--border); color: var(--text-secondary); }

.contact-section { padding: 110px 0; position: relative; overflow: hidden; background: var(--surface-navy); color: white; text-align: center; }
.contact-section::before { content: ""; position: absolute; width: 520px; height: 520px; right: -220px; top: -220px; border: 1px solid rgba(252,166,112,.28); border-radius: 50%; box-shadow: 0 0 0 70px rgba(252,166,112,.035), 0 0 0 140px rgba(252,166,112,.025); }
.contact-section::after { content: ""; position: absolute; left: -120px; bottom: -180px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(28,110,179,.32), transparent 68%); }
.contact-inner { position: relative; z-index: 1; }
.contact-kicker { margin: 0 0 18px; color: #a9d4f5; font-family: var(--font-en); font-size: 12px; font-weight: 700; letter-spacing: .18em; }
.contact-section h2 { max-width: 900px; margin: 0 auto; color: white; font-size: clamp(31px, 4vw, 48px); line-height: 1.45; }
.contact-section p { max-width: 680px; margin: 22px auto 0; color: #cbdbe5; font-size: 16px; }
.contact-section .button { min-width: 230px; margin-top: 34px; }

.site-footer { padding: 70px 0 28px; background: #05283f; color: #cad9e3; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 54px; }
.footer-brand > a img { width: 160px; padding: 10px; border-radius: 8px; background: white; }
.footer-brand > a { display: inline-flex; }
.footer-brand p { margin: 22px 0 0; font-size: 12px; }
.footer-affiliation { margin-top: 20px; }
.footer-affiliation > span { margin-bottom: 8px; display: block; color: #91a8b7; font-family: var(--font-en); font-size: 8px; font-weight: 700; letter-spacing: .14em; }
.footer-affiliation a { width: 118px; min-height: 82px; padding: 8px 12px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 4px; background: white; }
.footer-affiliation img { width: 94px; max-height: 66px; display: block; object-fit: contain; }
.footer-col h3 { margin: 0 0 18px; color: white; font-family: var(--font-en); font-size: 11px; letter-spacing: .14em; }
.footer-col a { min-height: 44px; display: flex; align-items: center; color: #cad9e3; font-size: 12px; text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-bottom { margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: #91a8b7; font-size: 10px; text-align: center; }

/* Editorial direction — Mysele v2 */
.section { padding: 148px 0; }
.section--cream { background: #fbfaf6; }
.section--blue { background: #edf4f8; }
.section-heading { font-size: clamp(38px, 4.4vw, 56px); line-height: 1.3; letter-spacing: -.04em; }
.section-head-row { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(220px, .5fr); align-items: end; border-top: 1px solid var(--brand-700); padding-top: 30px; }
.section-head-row > .text-link { justify-self: end; }
.kicker { color: var(--brand-700); letter-spacing: .2em; }
.kicker::before { width: 44px; height: 1px; }
.button { border-radius: 2px; box-shadow: none; }
.button:hover { box-shadow: none; }
.text-link { min-height: 44px; padding: 8px 0; }

.site-header { border-color: rgba(1,52,89,.18); background: rgba(255,255,255,.95); }
.header-inner { min-height: 78px; }
.header-cta { border-radius: 1px; }
.global-nav > a:not(.header-cta) { min-height: 44px; display: inline-flex; align-items: center; }

.hero { min-height: 790px; padding: 148px 0 88px; align-items: center; background: linear-gradient(90deg, #fff 0%, #fff 53%, #eef5fa 53%, #eef5fa 100%); }
.hero-art { position: absolute; inset: 112px 0 70px auto; width: 47%; overflow: hidden; border-left: 0; background: #eef5fa; animation: hero-panel-reveal .9s var(--ease) both; }
.hero-art::before { content: ""; width: 360px; height: 360px; position: absolute; right: -170px; top: -190px; z-index: 1; border: 1px solid rgba(28,110,179,.18); border-radius: 50%; box-shadow: 0 0 0 52px rgba(28,110,179,.025); pointer-events: none; }
.hero-art::after { content: ""; width: 34%; position: absolute; top: -20%; bottom: -20%; left: -42%; z-index: 2; background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent); transform: skewX(-12deg); animation: hero-light-pass 1.35s .45s var(--ease) both; pointer-events: none; }
.hero-visual { position: absolute; inset: 0; width: 100%; height: 100%; animation: none; object-fit: cover; object-position: 70% center; opacity: .64; mix-blend-mode: multiply; filter: grayscale(.06) saturate(.9) contrast(.96); transition: transform .8s var(--ease); }
.hero:hover .hero-visual { transform: scale(1.012); }
.hero-art-label { position: absolute; left: 24px; bottom: 18px; z-index: 3; color: var(--brand-700); font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.hero-color-geometry { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-color-geometry i { position: absolute; display: block; transition: transform .8s var(--ease); }
.hero-color-geometry i:nth-child(1) { width: 128px; height: 128px; right: 12%; top: 10%; border: 18px solid rgba(28,110,179,.58); transform: rotate(45deg); mix-blend-mode: multiply; }
.hero-color-geometry i:nth-child(2) { width: 178px; height: 178px; right: -58px; bottom: 8%; border: 22px solid rgba(1,52,89,.5); border-radius: 50%; mix-blend-mode: multiply; }
.hero-color-geometry i:nth-child(3) { width: 52px; height: 52px; left: 18%; bottom: 18%; border-radius: 50%; background: rgba(252,166,112,.88); box-shadow: 0 0 0 18px rgba(252,166,112,.12); }
.hero-color-geometry i:nth-child(4) { width: 150px; height: 12px; left: 9%; top: 28%; background: rgba(70,135,189,.62); box-shadow: 0 28px 0 rgba(28,110,179,.38), 0 56px 0 rgba(1,52,89,.24); transform: rotate(-8deg); transform-origin: left center; }
.hero:hover .hero-color-geometry i:nth-child(1) { transform: rotate(48deg) translate(-3px, 2px); }
.hero:hover .hero-color-geometry i:nth-child(3) { transform: translateY(-5px); }
.hero::before { display: none; }
.hero::after { left: 0; right: 0; bottom: 69px; height: 1px; background: rgba(1,52,89,.22); }
.hero .container { position: relative; }
.hero-content { width: min(760px, 58%); }
.hero-system { margin: 0 0 32px; color: var(--brand-700); font-family: var(--font-en); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.hero-system::before { content: ""; width: 52px; height: 1px; margin: 0 16px 3px 0; display: inline-block; background: var(--accent-500); }
.hero h1 { font-size: clamp(42px, 4.25vw, 56px); line-height: 1.24; letter-spacing: -.045em; text-wrap: balance; }
.hero-lead { max-width: 580px; }
.hero-actions { margin-top: 34px; }
.hero-action-note { margin: 14px 0 0; color: var(--text-secondary); font-size: 12px; line-height: 1.7; }
.hero-proof { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(1,52,89,.2); }
.hero-proof span { font-size: 12px; }
.hero-coordinate { margin: 0; position: absolute; right: 0; bottom: -75px; color: var(--brand-700); font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: .18em; writing-mode: vertical-rl; }

/* Keep the first view visually balanced on wide and zoomed-out screens. */
@media (min-width: 1441px) {
  .hero .container { width: min(calc(100% - 96px), 1440px); }
}

/* Use the extra canvas on very wide screens instead of centering a narrow FV block. */
@media (min-width: 1800px) {
  .hero { background: linear-gradient(90deg, #fff 0%, #fff 50%, #eef5fa 50%, #eef5fa 100%); }
  .hero-art { width: 50%; }
  .hero .container { width: min(calc(100% - 160px), 1680px); }
}

@keyframes hero-panel-reveal { from { opacity: 0; clip-path: inset(0 100% 0 0); } to { opacity: 1; clip-path: inset(0); } }
@keyframes hero-light-pass { from { left: -42%; } to { left: 126%; } }

.issues-grid { margin-top: 76px; display: block; border-top: 1px solid var(--brand-700); }
.issue-card { min-height: 174px; padding: 30px 0; display: grid; grid-template-columns: 70px 1.05fr 1.35fr 150px auto; align-items: center; gap: 28px; border: 0; border-bottom: 1px solid var(--border); border-radius: 0; background: transparent; overflow: visible; }
.issue-card::before { display: none; }
.issue-card:hover { transform: none; border-color: var(--brand-500); box-shadow: none; }
.issue-card .issue-number { margin: 0; color: var(--accent-500); font-family: var(--font-en); font-size: 34px; font-weight: 600; letter-spacing: -.05em; }
.issue-card h3 { font-size: 23px; line-height: 1.55; }
.issue-card > p:not(.issue-number) { margin: 0; color: var(--text-secondary); font-size: 13px; }
.issue-card .text-link { margin: 0; white-space: nowrap; }
.issue-signal { width: 128px; height: 54px; position: relative; }
.issue-signal i, .issue-signal b { position: absolute; display: block; }
.issue-signal--inflow i { left: 0; width: 86px; height: 1px; background: var(--brand-400); transform-origin: right center; }
.issue-signal--inflow i:nth-child(1) { top: 9px; transform: rotate(12deg); }
.issue-signal--inflow i:nth-child(2) { top: 26px; }
.issue-signal--inflow i:nth-child(3) { top: 43px; transform: rotate(-12deg); }
.issue-signal--inflow i::before { content: ""; width: 5px; height: 5px; position: absolute; left: 0; top: -2px; border-radius: 50%; background: var(--brand-400); }
.issue-signal--inflow b { width: 14px; height: 14px; right: 18px; top: 20px; border: 3px solid var(--accent-500); border-radius: 50%; }
.issue-signal--conversion::before { content: ""; position: absolute; left: 8px; right: 16px; top: 26px; height: 1px; background: var(--brand-400); }
.issue-signal--conversion i { width: 9px; height: 9px; top: 22px; border: 1px solid var(--brand-400); border-radius: 50%; background: #fbfaf6; }
.issue-signal--conversion i:nth-child(1) { left: 6px; }
.issue-signal--conversion i:nth-child(2) { left: 43px; }
.issue-signal--conversion i:nth-child(3) { left: 80px; }
.issue-signal--conversion b { width: 15px; height: 15px; right: 8px; top: 19px; background: var(--accent-500); }
.issue-signal--cycle::before { content: ""; width: 48px; height: 48px; position: absolute; left: 38px; top: 2px; border: 1px solid var(--brand-400); border-radius: 50%; }
.issue-signal--cycle::after { content: ""; width: 7px; height: 7px; position: absolute; left: 78px; top: 8px; border-top: 2px solid var(--accent-500); border-right: 2px solid var(--accent-500); transform: rotate(22deg); }
.issue-signal--cycle i { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-400); }
.issue-signal--cycle i:nth-child(1) { left: 59px; top: 0; }
.issue-signal--cycle i:nth-child(2) { left: 83px; top: 24px; }
.issue-signal--cycle i:nth-child(3) { left: 59px; top: 48px; }
.issue-signal--cycle b { width: 8px; height: 8px; left: 59px; top: 23px; background: var(--accent-500); }

.service-diagram { margin-top: 76px; padding: 0; border: 0; border-top: 1px solid var(--brand-700); border-bottom: 1px solid var(--brand-700); border-radius: 0; background: transparent; box-shadow: none; }
.diagram-stage { padding: 27px 0; }
.diagram-caption { margin-bottom: 20px; color: var(--brand-700); }
.diagram-issues { gap: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.diagram-issue { min-height: 86px; padding: 18px 24px; border: 0; border-right: 1px solid var(--border); border-radius: 0; background: transparent; }
.diagram-issue:last-child { border-right: 0; }
.diagram-issue::before { width: 8px; height: 8px; box-shadow: none; }
.diagram-connector { height: 34px; }
.diagram-connector::before { height: 21px; }
.diagram-hub { padding: 30px 34px; grid-template-columns: 150px 1fr 1fr; border-radius: 0; background: var(--brand-500); box-shadow: none; }
.diagram-hub-label { color: white; }
.diagram-hub small { color: #e3f1fb; }
.diagram-orders { gap: 0; border: 1px solid var(--border); }
.diagram-order { padding: 30px; border: 0; border-right: 1px solid var(--border); border-radius: 0; background: white; box-shadow: none; }
.diagram-order:last-child { border-right: 0; }
.diagram-order--package, .diagram-order--single { box-shadow: none; }
.diagram-order--package::before, .diagram-order--single::before { content: ""; width: 44px; height: 3px; position: absolute; left: 30px; top: 0; background: var(--brand-500); }
.diagram-order--single::before { background: var(--accent-500); }
.diagram-channel-area { padding: 28px 0; border-radius: 0; background: transparent; }
.channel { padding: 7px 11px; border-radius: 2px; background: var(--surface-blue); }
.diagram-outcome { margin-top: 0; padding: 22px 24px; border-radius: 0; color: white; background: var(--surface-navy); }

.works-grid { margin-top: 76px; grid-template-columns: 1.42fr .58fr; grid-template-rows: 1fr 1fr; gap: 0; border-top: 1px solid var(--brand-700); border-bottom: 1px solid var(--brand-700); }
.work-card { border: 0; border-radius: 0; box-shadow: none; }
.work-card:hover { transform: none; box-shadow: none; }
.work-card:first-child { grid-row: 1 / 3; border-right: 1px solid var(--brand-700); }
.work-card:nth-child(2) { border-bottom: 1px solid var(--brand-700); }
.work-top { padding: 34px 34px 24px; }
.work-tag { padding: 0; border-radius: 0; background: transparent; font-family: var(--font-en); letter-spacing: .14em; }
.work-card h3 { min-height: 0; }
.metric-panel { padding: 30px 34px; background: transparent; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.work-card:first-child .metric-panel { min-height: 250px; display: flex; flex-direction: column; justify-content: center; background: #f7fbfd; }
.work-card:first-child .metric-row { font-size: 38px; }
.work-card:first-child .metric-row strong { font-size: 88px; }
.work-card:not(:first-child) .metric-row { font-size: 21px; }
.work-card:not(:first-child) .metric-row strong { font-size: 35px; }
.work-body { padding: 26px 34px 32px; }

.approach-cycle { margin-top: 76px; padding: 0; border: 0; border-top: 1px solid rgba(255,255,255,.32); border-bottom: 1px solid rgba(255,255,255,.32); border-radius: 0; background: transparent; }
.cycle-flow { grid-template-columns: repeat(3, 1fr); gap: 0; }
.cycle-flow::before { display: none; }
.cycle-node { min-height: 210px; padding: 28px 30px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); text-align: left; }
.cycle-node:nth-child(3n) { border-right: 0; }
.cycle-node:nth-child(n+4) { border-bottom: 0; }
.cycle-index { width: auto; height: auto; margin: 0 0 34px; display: block; border: 0; border-radius: 0; color: var(--accent-500); background: transparent; box-shadow: none; font-size: 40px; font-weight: 500; letter-spacing: -.06em; }
.cycle-node h3 { font-size: 18px; }
.cycle-node p { margin-top: 10px; font-size: 12px; }
.cycle-return { margin: 0; padding: 21px 28px; justify-content: flex-start; border: 0; border-top: 1px solid rgba(255,255,255,.24); border-radius: 0; }
.approach-principles { margin-top: 0; gap: 0; border-top: 1px solid rgba(255,255,255,.24); }
.approach-principle { padding: 20px; border-right: 1px solid rgba(255,255,255,.16); border-radius: 0; background: transparent; }
.approach-principle:last-child { border-right: 0; }

.team-layout { margin-top: 76px; grid-template-columns: .78fr 70px 1.22fr; }
.team-core, .team-network { padding: 46px; border-radius: 0; box-shadow: none; }
.team-core { border: 0; color: white; background: var(--brand-500); }
.team-core h3, .team-core p, .team-core .team-kicker { color: white; }
.team-network { border: 1px solid var(--brand-700); }
.partner-grid { gap: 0; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.partner { min-height: 76px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); border-radius: 0; background: white; }

.steps { margin-top: 76px; border-top: 1px solid var(--brand-700); }
.steps::before { display: none; }
.step { padding: 30px 24px; border-right: 1px solid var(--border); text-align: left; }
.step:last-child { border-right: 0; }
.step-dot { width: auto; height: auto; margin: 0 0 32px; display: block; border: 0; border-radius: 0; background: transparent; box-shadow: none; color: var(--accent-500); font-size: 32px; }

.about-layout { grid-template-columns: minmax(260px, .72fr) 1.28fr; gap: 104px; }
.portrait-frame { width: min(100%, 360px); justify-self: center; }
.portrait-frame::before, .portrait-frame::after { display: none; }
.portrait-frame img { aspect-ratio: 4 / 5; border-radius: 0; box-shadow: none; filter: saturate(.86); }
.message { padding: 28px 0 28px 30px; background: transparent; box-shadow: none; font-size: 16px; }

.articles-grid { margin-top: 76px; gap: 0; border-top: 1px solid var(--brand-700); }
.article-card { padding: 0 24px 0 0; border: 0; border-right: 1px solid var(--border); border-radius: 0; background: transparent; }
.article-card + .article-card { padding-left: 24px; }
.article-card:last-child { padding-right: 0; border-right: 0; }
.article-card:hover { transform: none; box-shadow: none; }
.article-image { aspect-ratio: 16 / 10; }
.article-body { padding: 24px 0 28px; }
.resource-head { border-color: var(--brand-700); }
.resources-grid { gap: 0; border-top: 1px solid var(--brand-700); }
.resource-card { padding: 24px; border: 0; border-right: 1px solid var(--border); border-radius: 0; background: transparent; }
.resource-card:first-child { padding-left: 0; }
.resource-card:last-child { padding-right: 0; border-right: 0; }
.resource-card:hover { transform: none; box-shadow: none; }
.resource-cover { padding: 16px; background: var(--surface-blue); }
.resource-cover::before { display: none; }
.resource-cover img, .resource-card:nth-child(2) .resource-cover img { border-width: 5px; border-radius: 0; transform: none; }
.resource-card:hover .resource-cover img { transform: scale(1.015); }
.resource-body { padding: 22px 0 8px; }

.contact-section { padding: 122px 0; text-align: left; }
.contact-section::before { border-radius: 0; transform: rotate(45deg); }
.contact-inner { display: grid; grid-template-columns: 1fr 310px; align-items: end; gap: 24px 80px; }
.contact-kicker, .contact-section h2, .contact-section p { margin-left: 0; margin-right: 0; }
.contact-kicker { grid-column: 1 / -1; }
.contact-section h2 { grid-column: 1; }
.contact-section p { grid-column: 1; }
.contact-section .button { grid-column: 2; grid-row: 2 / 4; width: 100%; margin: 0; }

/* Clarity pass — familiar information structure, distinctive surface */
.issues-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--brand-700); border-bottom: 1px solid var(--brand-700); }
.issue-card { min-height: 315px; padding: 30px 32px; display: flex; align-items: flex-start; flex-direction: column; gap: 0; border: 0; border-right: 1px solid var(--border); border-radius: 0; background: rgba(255,255,255,.62); }
.issue-card:last-child { border-right: 0; }
.issue-card:hover { background: white; }
.issue-card::after { content: ""; height: 3px; position: absolute; left: 0; right: 100%; top: 0; background: var(--brand-500); transition: right .4s var(--ease); }
.issue-card:hover::after { right: 0; }
.issue-card .issue-number { margin: 0 0 30px; color: var(--accent-500); font-size: 30px; }
.issue-card h3 { min-height: 66px; margin: 0; font-size: 22px; }
.issue-card > p:not(.issue-number) { margin: 16px 0 20px; color: var(--text-secondary); font-size: 14px; }
.issue-card .text-link { margin-top: auto; }

.service-choices { margin-top: 64px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--brand-700); border-bottom: 1px solid var(--brand-700); }
.service-choice { display: flex; flex-direction: column; border-right: 1px solid var(--brand-700); }
.service-choice:last-child { border-right: 0; }
.service-choice-head { min-height: 176px; padding: 30px 32px; position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; overflow: hidden; color: white; background: var(--brand-500); }
.service-choice-head::after { content: ""; width: 38%; position: absolute; top: -30%; bottom: -30%; left: -54%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); transform: skewX(-12deg); transition: left .75s var(--ease); pointer-events: none; }
.service-choice:hover .service-choice-head::after { left: 124%; }
.service-choice--single .service-choice-head { color: var(--brand-700); background: var(--surface-blue); }
.service-choice-head span { font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.service-choice-head strong { font-size: 22px; line-height: 1.6; }
.service-choice-body { padding: 34px 32px 38px; display: flex; flex: 1; flex-direction: column; background: white; }
.service-recommend { width: fit-content; margin: 0 0 14px; padding: 4px 8px; color: var(--brand-700); background: var(--accent-100); font-size: 11px; font-weight: 700; }
.service-choice-body h3 { margin: 0; color: var(--brand-700); font-size: 24px; line-height: 1.5; }
.service-choice-body > p { margin: 16px 0 22px; color: var(--text-secondary); font-size: 14px; }
.service-channel-tags { margin: 0 0 24px; display: flex; flex-wrap: wrap; gap: 7px; }
.service-channel-tags span { padding: 6px 9px; border: 1px solid var(--border); color: var(--brand-600); background: var(--surface-blue); font-size: 10px; font-weight: 700; line-height: 1.3; }
.service-choice-body ul { margin: 0 0 30px; padding: 0; display: grid; gap: 9px; list-style: none; }
.service-choice-body li { padding-left: 18px; position: relative; color: var(--text-primary); font-size: 13px; }
.service-choice-body li::before { content: ""; width: 6px; height: 6px; position: absolute; left: 0; top: 11px; background: var(--accent-500); }
.service-choice-body .text-link { margin-top: auto; }
.service-scope { padding: 30px 0; display: grid; grid-template-columns: .48fr 1.52fr; align-items: start; gap: 48px; border-bottom: 1px solid var(--brand-700); }
.service-scope-copy { display: grid; gap: 8px; }
.service-scope-copy span { color: var(--brand-500); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.service-scope-copy strong { color: var(--brand-700); font-size: 17px; line-height: 1.65; }

.works-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 0; }
.work-card, .work-card:first-child, .work-card:nth-child(2) { grid-column: auto; grid-row: auto; position: relative; border: 0; border-right: 1px solid var(--brand-700); border-bottom: 0; }
.work-card::after { content: ""; height: 2px; position: absolute; left: 30px; right: calc(100% - 30px); bottom: 0; background: var(--accent-500); transition: right .45s var(--ease); }
.work-card:hover::after { right: 30px; }
.work-card:last-child { border-right: 0; }
.work-top { padding: 30px 30px 22px; }
.work-card h3 { min-height: 64px; }
.metric-panel, .work-card:first-child .metric-panel { min-height: 150px; padding: 28px 30px; display: flex; flex-direction: column; justify-content: center; background: rgba(255,255,255,.52); }
.work-card .metric-row, .work-card:first-child .metric-row, .work-card:not(:first-child) .metric-row { font-size: 25px; }
.work-card .metric-row strong, .work-card:first-child .metric-row strong, .work-card:not(:first-child) .metric-row strong { font-size: clamp(38px, 4vw, 52px); }
.work-body { padding: 24px 30px 30px; }

.approach-simple { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); }
.approach-simple article { min-height: 300px; padding: 32px 34px; border-right: 1px solid rgba(255,255,255,.18); }
.approach-simple article:last-child { border-right: 0; }
.approach-index { color: var(--accent-500); font-family: var(--font-en); font-size: 32px; font-weight: 600; letter-spacing: -.04em; }
.approach-simple h3 { margin: 48px 0 16px; color: white; font-size: 21px; line-height: 1.55; }
.approach-simple p { margin: 0; color: #c9d8e2; font-size: 14px; }
.approach-card-head { min-height: 90px; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.approach-card-head + h3 { margin-top: 26px; }
.approach-graphic { width: 176px; height: 92px; position: relative; flex: 0 0 auto; color: #dcecf7; font-size: 9px; font-weight: 700; line-height: 1.3; transition: transform .45s var(--ease); }
.approach-simple article:hover .approach-graphic { transform: translateY(-4px); }
.approach-graphic--reverse { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 5px; }
.mini-node { min-height: 32px; padding: 8px 4px; display: grid; place-items: center; border: 1px solid rgba(169,212,245,.35); background: rgba(255,255,255,.06); text-align: center; }
.mini-node--issue { border-color: rgba(252,166,112,.72); color: #ffd5bb; }
.mini-node--goal { color: var(--surface-navy); background: #a9d4f5; }
.mini-arrow { color: rgba(169,212,245,.72); font-family: var(--font-en); font-size: 13px; }
.mini-backtrack { grid-column: 1 / -1; margin-top: 5px; padding-top: 7px; position: relative; border-top: 1px dashed rgba(252,166,112,.45); color: var(--accent-500); text-align: right; letter-spacing: .08em; }
.mini-backtrack::before { content: "↶"; position: absolute; left: 0; top: 1px; font-size: 16px; }
.approach-graphic--combine { display: flex; align-items: center; flex-direction: column; }
.expert-row { width: 100%; display: flex; align-items: flex-start; justify-content: center; gap: 12px; }
.expert { width: 42px; display: grid; justify-items: center; gap: 3px; color: #dcecf7; text-align: center; }
.expert b { font-size: 8px; font-weight: 700; }
.expert-avatar { width: 28px; height: 28px; position: relative; display: block; border: 1px solid rgba(169,212,245,.48); border-radius: 50%; background: #103f5e; }
.expert-avatar::before { content: ""; width: 8px; height: 8px; position: absolute; left: 9px; top: 5px; border-radius: 50%; background: #a9d4f5; }
.expert-avatar::after { content: ""; width: 16px; height: 8px; position: absolute; left: 5px; bottom: 4px; border-radius: 9px 9px 3px 3px; background: rgba(169,212,245,.72); }
.expert:nth-child(2) .expert-avatar { border-color: rgba(252,166,112,.7); }
.expert:nth-child(2) .expert-avatar::before, .expert:nth-child(2) .expert-avatar::after { background: var(--accent-500); }
.expert-merge { width: 104px; height: 12px; margin-top: 2px; position: relative; border-top: 1px solid rgba(169,212,245,.35); color: var(--accent-500); font-size: 13px; line-height: 12px; text-align: center; }
.expert-merge::before, .expert-merge::after { content: ""; width: 1px; height: 6px; position: absolute; top: -6px; background: rgba(169,212,245,.35); }
.expert-merge::before { left: 0; }
.expert-merge::after { right: 0; }
.expert-team { min-width: 120px; padding: 5px 10px; color: var(--surface-navy); background: #a9d4f5; text-align: center; }
.approach-graphic--improve { padding-top: 12px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 5px; }
.mini-cycle { min-height: 34px; padding: 9px 3px; display: grid; place-items: center; border: 1px solid rgba(169,212,245,.36); background: rgba(255,255,255,.06); text-align: center; }
.mini-cycle--measure { border-color: rgba(252,166,112,.72); color: #ffd5bb; }
.mini-cycle-return { grid-column: 1 / -1; margin: 5px 14px 0; height: 18px; border-right: 1px solid rgba(169,212,245,.44); border-bottom: 1px solid rgba(169,212,245,.44); border-left: 1px solid rgba(169,212,245,.44); color: #a9d4f5; text-align: center; }
.mini-cycle-return::after { content: "改善結果を次の実行へ ↲"; padding: 0 5px; position: relative; top: 6px; background: var(--surface-navy); }

.process-graphic { width: 100%; height: 86px; margin: 0 0 24px; position: relative; color: var(--brand-700); font-size: 9px; font-weight: 700; line-height: 1.3; transition: transform .45s var(--ease); }
.step:hover .process-graphic { transform: translateY(-4px); }
.mini-form { height: 86px; padding: 13px; border: 1px solid rgba(28,110,179,.34); background: rgba(255,255,255,.54); }
.mini-form-title { margin-bottom: 8px; display: block; color: var(--brand-500); }
.mini-form-line { height: 7px; margin-top: 5px; display: block; background: #dce8f0; }
.mini-form-line--short { width: 62%; }
.mini-form-button { min-width: 38px; padding: 4px 7px; position: absolute; right: 9px; bottom: 9px; color: var(--brand-700); background: var(--accent-500); text-align: center; }
.process-graphic--hearing { display: grid; grid-template-columns: 24px 1fr; align-content: center; gap: 7px 9px; }
.mini-person { width: 22px; height: 22px; position: relative; border: 1px solid var(--brand-400); border-radius: 50%; background: white; }
.mini-person::before { content: ""; width: 7px; height: 7px; position: absolute; left: 6px; top: 4px; border-radius: 50%; background: var(--brand-400); }
.mini-person::after { content: ""; width: 13px; height: 6px; position: absolute; left: 3px; bottom: 3px; border-radius: 8px 8px 3px 3px; background: #bcd4e5; }
.mini-person--client { border-color: var(--accent-500); }
.mini-person--client::before { background: var(--accent-500); }
.mini-talk { padding: 7px 9px; position: relative; border: 1px solid #c9dbe7; background: rgba(255,255,255,.6); }
.mini-talk strong { color: var(--brand-500); }
.mini-talk--goal { border-color: rgba(252,166,112,.68); }
.priority-list { display: grid; gap: 5px; }
.priority-row { min-height: 23px; padding: 5px 8px; display: flex; align-items: center; justify-content: space-between; border: 1px solid #cedde7; background: rgba(255,255,255,.48); }
.priority-row em { color: var(--text-secondary); font-style: normal; }
.priority-row--active { border-color: var(--accent-500); color: var(--brand-700); background: #fff2ea; }
.priority-row--active em { color: #b65f2f; }
.team-map { height: 86px; position: relative; }
.team-map::before, .team-map::after { content: ""; position: absolute; z-index: 0; background: rgba(28,110,179,.25); }
.team-map::before { width: 75%; height: 1px; left: 12%; top: 43px; }
.team-map::after { width: 1px; height: 62px; left: 50%; top: 12px; }
.team-map-core, .team-role { position: absolute; z-index: 1; display: grid; place-items: center; }
.team-map-core { width: 62px; height: 32px; left: calc(50% - 31px); top: 27px; border: 2px solid var(--accent-500); background: var(--surface-blue); }
.team-role { min-width: 38px; height: 23px; padding: 0 5px; border: 1px solid #bad1e1; background: white; }
.team-role--seo { left: 0; top: 3px; }
.team-role--ads { right: 0; top: 3px; }
.team-role--creative { left: 0; bottom: 2px; }
.team-role--analysis { right: 0; bottom: 2px; }
.mini-dashboard { height: 86px; padding: 12px 12px 10px; position: relative; border: 1px solid #c8dbe8; background: rgba(255,255,255,.52); }
.mini-dashboard-title { color: var(--brand-500); }
.mini-bars { height: 38px; margin-top: 8px; display: flex; align-items: end; gap: 5px; border-bottom: 1px solid #bcd0df; }
.mini-bars i { width: 14%; display: block; background: #9fc2da; }
.mini-bars i:nth-child(1) { height: 32%; }
.mini-bars i:nth-child(2) { height: 48%; }
.mini-bars i:nth-child(3) { height: 42%; }
.mini-bars i:nth-child(4) { height: 68%; background: var(--brand-500); }
.mini-bars i:nth-child(5) { height: 88%; background: var(--accent-500); }
.mini-improve-label { padding: 3px 5px; position: absolute; right: 7px; top: 8px; color: #a65329; background: #fff2ea; }

#approach .container, #process .container { position: relative; z-index: 1; }
.approach-bg { opacity: 1; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 56px 56px; }
.approach-bg::before { content: ""; width: 420px; height: 420px; position: absolute; right: -190px; top: -230px; border: 1px solid rgba(169,212,245,.18); transform: rotate(45deg); box-shadow: 0 0 0 66px rgba(70,135,189,.035), 0 0 0 132px rgba(70,135,189,.02), 28px 34px 70px rgba(0,0,0,.12); }
.approach-bg::after { content: ""; width: 470px; height: 470px; position: absolute; left: -280px; bottom: -330px; border: 1px solid rgba(252,166,112,.16); border-radius: 50%; box-shadow: 0 0 0 72px rgba(252,166,112,.025), 28px 16px 76px rgba(0,0,0,.12); }
#process::before { content: ""; width: 380px; height: 380px; position: absolute; right: -190px; top: -220px; border: 1px solid rgba(28,110,179,.16); border-radius: 50%; box-shadow: 0 0 0 58px rgba(28,110,179,.035), 0 0 0 116px rgba(28,110,179,.02), 30px 34px 72px rgba(1,52,89,.08); }
#process::after { content: ""; width: 520px; height: 210px; position: absolute; left: -340px; bottom: -110px; border: 1px solid rgba(252,166,112,.28); box-shadow: 0 0 0 52px rgba(252,166,112,.035), 26px 20px 74px rgba(1,52,89,.07); transform: rotate(-8deg); }
.article-category, .resource-label { font-size: 11px; }
.footer-bottom { font-size: 11px; }

.issues-grid .issue-card:nth-child(2), .works-grid .work-card:nth-child(2), .approach-simple article:nth-child(2) { transition-delay: .07s; }
.issues-grid .issue-card:nth-child(3), .works-grid .work-card:nth-child(3), .approach-simple article:nth-child(3) { transition-delay: .14s; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .global-nav { gap: 18px; }
  .global-nav > a:not(.header-cta) { font-size: 12px; }
  .nav-item__parent { font-size: 12px; }
  .issue-card { grid-template-columns: 58px .9fr 1.2fr 130px; }
  .issue-card .text-link { grid-column: 2 / -1; justify-self: end; }
  .works-grid { grid-template-columns: 1.25fr .75fr; }
  .work-card:last-child { grid-column: auto; max-width: none; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .header-inner { min-height: 70px; }
  .logo img { width: 122px; }
  .site-header { z-index: 1000; }
  .menu-toggle { position: relative; z-index: 1002; display: inline-grid; }
  .global-nav {
    width: 100vw;
    height: calc(100dvh - 70px);
    padding: 28px 24px max(32px, env(safe-area-inset-bottom));
    position: fixed;
    inset: 70px 0 auto;
    z-index: 1001;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff !important;
    box-shadow: 0 26px 50px rgba(1,52,89,.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .22s var(--ease), transform .28s var(--ease), visibility 0s linear .28s;
  }
  .global-nav::before { content: "MENU / NAVIGATION"; margin-bottom: 10px; color: var(--brand-500); font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
  .global-nav > a:not(.header-cta) { min-height: 60px; padding: 17px 2px; display: flex; align-items: center; border-bottom: 1px solid var(--border); color: var(--brand-700); font-size: 16px; font-weight: 700; }
  .global-nav > a:not(.header-cta)::after { display: none; }
  .global-nav > .nav-item { min-height: auto; display: block; border-bottom: 1px solid var(--border); }
  .nav-item__parent { min-height: 58px; width: 100%; padding: 16px 2px 12px; font-size: 16px; font-weight: 700; }
  .nav-item__parent::after, .nav-item__caret { display: none; }
  .nav-submenu { min-width: 0; padding: 0 0 12px 14px; position: static; display: grid; gap: 0; border: 0; border-left: 2px solid rgba(28,110,179,.22); background: transparent; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: none; }
  .nav-submenu::before { display: none; }
  .nav-submenu a { min-height: 42px; padding: 8px 12px; font-size: 13px; }
  .nav-submenu a:hover, .nav-submenu a:focus-visible { padding-left: 16px; }
  .global-nav .header-cta { display: none; }
  .global-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
  .global-nav.is-open .header-cta { width: 100%; min-height: 56px; margin-top: 28px; display: inline-flex; }
  .hero { min-height: 760px; padding-top: 132px; }
  .hero { background: linear-gradient(90deg, #fff 0%, #fff 58%, #eef5fa 58%, #eef5fa 100%); }
  .hero-art { width: 42%; }
  .hero-visual { width: 100%; opacity: .72; }
  .hero-content { width: 67%; }
  .section-head-row { grid-template-columns: 1fr; align-items: start; }
  .section-head-row > .text-link { justify-self: start; }
  .issue-routing-visual { max-width: 430px; justify-self: start; margin-top: 12px; }
  .issues-grid, .articles-grid, .resources-grid { grid-template-columns: 1fr; }
  .issue-card { min-height: 0; grid-template-columns: 62px .9fr 1.2fr; gap: 20px; }
  .issue-card .issue-number { grid-column: 1; grid-row: 1 / 3; align-self: start; }
  .issue-card h3 { grid-column: 2; }
  .issue-card > p:not(.issue-number) { grid-column: 3; }
  .issue-signal { grid-column: 2; }
  .issue-card .text-link { grid-column: 3; justify-self: start; }
  .diagram-hub { grid-template-columns: 120px 1fr; }
  .diagram-hub small { grid-column: 2; }
  .works-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .work-card:first-child { grid-column: 1 / -1; grid-row: auto; border-right: 0; border-bottom: 1px solid var(--brand-700); }
  .work-card:nth-child(2) { border-right: 1px solid var(--brand-700); border-bottom: 0; }
  .work-card:last-child { grid-column: auto; max-width: none; }
  .cycle-flow { grid-template-columns: repeat(2, 1fr); row-gap: 0; }
  .cycle-flow::before { display: none; }
  .cycle-node, .cycle-node:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
  .cycle-node:nth-child(2n) { border-right: 0; }
  .cycle-node:nth-child(n+5) { border-bottom: 0; }
  .team-layout { grid-template-columns: 1fr; gap: 12px; }
  .team-connector { transform: rotate(90deg); }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps::before { top: 28px; bottom: 28px; left: 25px; right: auto; width: 1px; height: auto; }
  .step { min-height: 92px; padding: 0 0 24px 80px; text-align: left; }
  .step-dot { position: absolute; left: 0; top: 0; }
  .about-layout { grid-template-columns: 1fr; gap: 60px; }
  .portrait-frame { width: min(100%, 400px); max-width: 400px; }
  .articles-grid { gap: 0; }
  .article-card, .article-card + .article-card { padding: 24px 0; display: grid; grid-template-columns: 190px 1fr; border-right: 0; border-bottom: 1px solid var(--border); }
  .article-card:last-child { border-bottom: 0; }
  .article-image { aspect-ratio: auto; }
  .article-body h3 { min-height: auto; }
  .resources-grid { border-bottom: 1px solid var(--border); }
  .resource-card, .resource-card:first-child, .resource-card:last-child { padding: 24px 0; display: grid; grid-template-columns: 250px 1fr; gap: 28px; border-right: 0; border-bottom: 1px solid var(--border); }
  .resource-card:last-child { border-bottom: 0; }
  .resource-body { padding: 0; align-self: center; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-section .button { max-width: 310px; grid-column: 1; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 84px 0; }
  .header-cta { min-height: 42px; padding: 8px 12px; font-size: 12px; }
  .header-cta::after { display: none; }
  .hero {
    min-height: 900px;
    padding: 112px 0 88px;
    align-items: flex-start;
    background: #eef5fa;
  }
  .hero-art {
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    overflow: hidden;
    background: #eef5fa;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-art::before {
    inset: 0;
    width: auto;
    height: auto;
    z-index: 1;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.76) 62%, rgba(238,245,250,.32) 100%);
    box-shadow: none;
    transform: none;
  }
  .hero-art::after { display: none; }
  .hero-visual { inset: 0; width: 100%; height: 100%; opacity: .46; object-position: 66% center; border: 0; }
  .hero-color-geometry { opacity: .5; }
  .hero::before { display: none; }
  .hero::after { bottom: 0; height: 72px; background: linear-gradient(0deg, var(--surface-cream), rgba(255,253,247,0)); }
  .hero-content { width: 100%; }
  .hero-system { margin-bottom: 24px; font-size: 9px; }
  .hero h1 { font-size: clamp(34px, 9.5vw, 41px); line-height: 1.3; }
  .mobile-break, .sp-break { display: inline; }
  .hero-lead { margin-top: 23px; font-size: 14px; line-height: 1.9; }
  .hero-actions { margin-top: 28px; display: grid; }
  .button { width: 100%; }
  .hero-proof { margin-top: 30px; gap: 6px 21px; }
  .hero-coordinate { display: none; }
  .section-head-row { display: grid; }
  .section-heading { font-size: 31px; }
  .section-lead { font-size: 15px; }
  .issues-grid, .works-grid, .articles-grid { margin-top: 40px; }
  .issue-card { padding: 28px 0; display: grid; grid-template-columns: 48px 1fr; gap: 12px 18px; }
  .issue-card .issue-number { grid-column: 1; grid-row: 1; font-size: 28px; }
  .issue-card h3 { grid-column: 2; font-size: 20px; }
  .issue-card > p:not(.issue-number) { grid-column: 2; font-size: 13px; }
  .issue-signal { grid-column: 2; }
  .issue-card .text-link { grid-column: 2; }
  .team-core, .team-network { padding: 28px; }
  .issue-routing-visual { max-width: none; }
  .specialist-visual { grid-template-columns: 1fr; gap: 12px; }
  .specialist-select::after { content: "↓"; }
  .service-diagram { margin: 42px 0 0; padding: 0; border-radius: 0; }
  .diagram-issues, .diagram-orders { grid-template-columns: 1fr; }
  .diagram-issue { border-right: 0; border-bottom: 1px solid var(--border); }
  .diagram-issue:last-child { border-bottom: 0; }
  .diagram-hub { padding: 24px; grid-template-columns: 1fr; gap: 8px; }
  .diagram-hub small { grid-column: auto; }
  .diagram-channel-area { padding: 22px 18px; }
  .diagram-outcome { align-items: stretch; flex-direction: column; gap: 3px; text-align: center; }
  .diagram-outcome span { transform: rotate(90deg); }
  .approach-cycle { margin-top: 46px; padding: 0; }
  .cycle-flow { grid-template-columns: 1fr; gap: 0; }
  .cycle-flow::before { display: none; }
  .cycle-node, .cycle-node:nth-child(2n), .cycle-node:nth-child(3n), .cycle-node:nth-child(n+5) { min-height: 150px; padding: 24px 20px; display: grid; grid-template-columns: 58px 1fr; align-content: start; gap: 8px 16px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .cycle-node:last-child { border-bottom: 0; }
  .cycle-index { margin: 0; grid-row: 1 / 3; font-size: 34px; }
  .cycle-node p { max-width: 320px; }
  .cycle-return { margin-top: 0; border-radius: 0; }
  .approach-principles { grid-template-columns: 1fr; }
  .metric-row { font-size: 24px; }
  .metric-row strong { font-size: 37px; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout {
    grid-template-areas:
      "about-copy"
      "portrait";
    gap: 32px;
  }
  .about-copy { grid-area: about-copy; }
  .portrait-frame {
    width: min(100%, 280px);
    max-width: 280px;
    grid-area: portrait;
    justify-self: start;
  }
  .article-card, .article-card + .article-card { padding: 26px 0; display: block; border-right: 0; border-bottom: 1px solid var(--border); }
  .article-card:first-child { padding-top: 0; }
  .article-card:last-child { padding-bottom: 0; border-bottom: 0; }
  .article-image { width: 100%; aspect-ratio: 16 / 9; }
  .article-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .article-body { padding: 18px 0 0; }
  .article-body h3 { min-height: 0; margin: 10px 0 12px; font-size: 16px; line-height: 1.65; }
  .article-category, .article-date { font-size: 9px; }
  .resource-head { margin-top: 62px; padding-top: 46px; align-items: flex-start; flex-direction: column; }
  .resource-head h3 { font-size: 24px; }
  .resources-grid { gap: 0; }
  .resource-card, .resource-card:first-child, .resource-card:last-child { padding: 22px 0; grid-template-columns: 1fr; gap: 18px; }
  .resource-body { padding: 0; }
  .knowledge-actions { justify-content: flex-start; }
  .home-news { padding-top: 84px; padding-bottom: 84px; }
  .home-news-list { margin-top: 42px; }
  .home-news-item > a { min-height: 0; padding: 22px 0; grid-template-columns: 1fr 28px; gap: 8px 16px; }
  .home-news-item > a:hover { padding-left: 0; }
  .home-news-item time { grid-column: 1 / -1; }
  .home-news-item h3 { font-size: 15px; }
  .home-news-item span { grid-column: 2; grid-row: 2; }
  .contact-section { padding: 84px 0; }
  .contact-section p { font-size: 14px; }
  .footer-affiliation a { width: 108px; min-height: 76px; }
  .footer-affiliation img { width: 86px; max-height: 60px; }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 20px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col { min-width: 0; }
  .footer-col:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }
  .footer-col:last-child h3 { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .issues-grid, .service-choices, .works-grid, .approach-simple { grid-template-columns: 1fr; }
  .issue-card { min-height: 0; padding: 30px 26px; display: grid; grid-template-columns: 52px 1fr; gap: 12px 18px; border-right: 0; border-bottom: 1px solid var(--border); }
  .issue-card:last-child { border-bottom: 0; }
  .issue-card .issue-number { grid-column: 1; grid-row: 1 / 4; margin: 0; }
  .issue-card h3, .issue-card > p:not(.issue-number), .issue-card .text-link { grid-column: 2; min-height: 0; margin: 0; }
  .issue-card > p:not(.issue-number) { margin: 8px 0 14px; }
  .service-choice { border-right: 0; border-bottom: 1px solid var(--brand-700); }
  .service-choice:last-child { border-bottom: 0; }
  .service-scope { grid-template-columns: 1fr; gap: 22px; }
  .work-card, .work-card:first-child, .work-card:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--brand-700); }
  .work-card:last-child { border-bottom: 0; }
  .approach-simple article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .approach-simple article:last-child { border-bottom: 0; }
  .approach-simple h3 { margin-top: 28px; }
  .approach-card-head { min-height: 78px; }
  .steps { border-top: 1px solid var(--brand-700); }
  .step { min-height: 156px; padding: 26px 20px 26px 112px; border-right: 0; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: 0; }
  .step-dot { left: 20px; top: 24px; }
  .process-graphic { width: min(100%, 190px); height: 86px; margin: 0 0 18px; }
}

@media (max-width: 640px) {
  .issues-grid, .service-choices, .works-grid, .approach-simple { margin-top: 42px; }
  .hero { min-height: 900px; padding-bottom: 88px; }
  .hero-art { height: 100%; }
  .hero-visual { height: 100%; opacity: .46; }
  .hero-action-note { font-size: 11px; }
  .hero-proof { display: none; }
  .issue-card { padding: 26px 0; grid-template-columns: 44px 1fr; }
  .issue-card .issue-number { font-size: 26px; }
  .issue-card h3 { font-size: 19px; }
  .service-choice-head { min-height: 0; padding: 24px 22px; display: grid; gap: 18px; }
  .service-choice-head strong { font-size: 20px; }
  .service-choice-body { padding: 28px 22px 32px; }
  .service-choice-body h3 { font-size: 21px; }
  .service-scope { padding: 26px 0; }
  .work-card h3 { min-height: 0; }
  .metric-panel, .work-card:first-child .metric-panel { min-height: 130px; }
  .approach-simple article { padding: 28px 22px; }
  .approach-graphic { width: 176px; transform: scale(.88); transform-origin: right top; }
  .approach-simple article:hover .approach-graphic { transform: scale(.88) translateY(-4px); }
  .step { padding-left: 88px; }
  .step-dot { left: 0; }
  .process-graphic { width: min(100%, 176px); }
  .approach-bg::before { width: 260px; height: 260px; right: -150px; top: -130px; box-shadow: 0 0 0 42px rgba(70,135,189,.035), 18px 22px 48px rgba(0,0,0,.1); }
  .approach-bg::after { width: 290px; height: 290px; left: -190px; bottom: -210px; box-shadow: 0 0 0 42px rgba(252,166,112,.025), 18px 14px 48px rgba(0,0,0,.1); }
  #process::before { width: 250px; height: 250px; right: -150px; top: -120px; box-shadow: 0 0 0 38px rgba(28,110,179,.035), 18px 20px 46px rgba(1,52,89,.07); }
  #process::after { width: 320px; height: 120px; left: -220px; bottom: -70px; box-shadow: 0 0 0 34px rgba(252,166,112,.035), 18px 14px 48px rgba(1,52,89,.06); }
  .article-category, .resource-label { font-size: 10.5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
