:root {
  --blue: #0b2f6b;
  --blue-deep: #071d42;
  --blue-soft: #edf2fa;
  --yellow: #f6c72f;
  --yellow-soft: #fff6d9;
  --yellow-ink: #6b4b00;
  --ink: #101828;
  --muted: #5d6b82;
  --white: #ffffff;
  --line: #e4e8ef;
  --header-height: 70px;
  --container: 1240px;
  --section-space: clamp(96px, 10vw, 156px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; letter-spacing: 0; }
button { color: inherit; }
h1, h2, h3, p, figure, blockquote { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h2 {
  margin-bottom: 28px;
  color: var(--blue);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.22;
}
h3 { color: var(--blue); font-size: clamp(20px, 2vw, 26px); line-height: 1.45; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 700;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.section-label {
  margin-bottom: 24px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--yellow);
}
.section-label-light { color: var(--white); }
.section-heading { max-width: 820px; margin-bottom: clamp(48px, 6vw, 76px); }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading-center .section-label::before { display: none; }
.heading-link { color: inherit; text-decoration: underline; text-decoration-color: transparent; text-decoration-thickness: 2px; text-underline-offset: 7px; transition: text-decoration-color .25s ease; }
.heading-link:hover,
.heading-link:focus-visible { text-decoration-color: currentColor; }
.section-text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; color: var(--blue); font-weight: 700; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 5px; transition: text-decoration-color .25s ease; }
.section-text-link span { transition: transform .25s ease; }
.section-text-link:hover,
.section-text-link:focus-visible { text-decoration-color: currentColor; }
.section-text-link:hover span,
.section-text-link:focus-visible span { transform: translateX(4px); }
.sp-only { display: none; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgb(7 29 66 / 18%); }
.button-blue { background: var(--blue); color: var(--white); }
.button-yellow { background: var(--yellow); color: var(--blue); }
.button-white { background: var(--white); color: var(--blue); }
.button-large { min-width: 190px; min-height: 58px; font-size: 17px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  transition: background-color .35s ease, box-shadow .35s ease, color .35s ease;
}
.site-header.is-scrolled,
body.hero-b .site-header,
body.hero-e .site-header {
  color: var(--blue);
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 1px 0 rgb(11 47 107 / 10%);
  backdrop-filter: blur(16px);
}
.site-header.is-past-hero,
body.hero-b .site-header.is-past-hero,
body.hero-e .site-header.is-past-hero {
  color: var(--blue);
  background: rgb(255 255 255 / 76%);
  box-shadow: 0 1px 0 rgb(11 47 107 / 8%);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
body.hero-c .site-header { color: var(--blue); }
.header-inner {
  width: min(calc(100% - 48px), 1440px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; }
.brand-mark {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--white);
}
.brand-mark img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  max-width: none;
  transform: translate(-50%, -50%);
}
.brand-name { font-family: "Manrope", sans-serif; font-size: 21px; font-weight: 700; letter-spacing: .06em; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .1em; }
.desktop-nav a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .button { min-height: 40px; padding-inline: 18px; font-size: 16px; }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button span { display: block; width: 100%; height: 2px; margin-block: 5px; background: currentColor; }
body.hero-c .desktop-nav,
body.hero-c .header-actions .button,
body.hero-d .desktop-nav,
body.hero-d .header-actions .button { display: none; }
body.hero-c .menu-button,
body.hero-d .menu-button { display: block; margin-left: auto; }
body.hero-c .header-actions,
body.hero-d .header-actions { margin-left: auto; }

.menu-backdrop { position: fixed; z-index: 109; inset: 0; background: rgb(7 29 66 / 55%); }
.mobile-menu {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  width: min(420px, 90vw);
  height: 100dvh;
  padding: 28px;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  color: var(--blue);
  transform: translateX(104%);
  transition: transform .35s ease;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.menu-label { font-family: "Manrope", sans-serif; font-weight: 700; letter-spacing: .1em; }
.menu-close { width: 46px; height: 46px; border: 0; background: transparent; color: var(--blue); font-size: 34px; cursor: pointer; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-family: "Manrope", sans-serif; font-size: 20px; font-weight: 700; letter-spacing: .08em; }
.mobile-menu-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 32px; }

.hero, .hero-mount { min-height: 100svh; }
.hero { position: relative; overflow: hidden; }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(7 29 66 / 65%), rgb(7 29 66 / 10%) 72%); }

.hero-a-media { animation: ken-burns 20s ease-in-out infinite alternate; }
.hero-a-copy {
  position: absolute;
  z-index: 2;
  left: max(32px, calc((100vw - 1240px) / 2));
  bottom: clamp(90px, 14vh, 160px);
  width: min(1000px, calc(100% - 64px));
  color: var(--white);
}
.hero-a-copy p { margin-bottom: 16px; font-size: 15px; font-weight: 500; }
.hero-a-copy h1 { max-width: 1000px; margin: 0; font-size: clamp(40px, 6vw, 84px); font-weight: 900; line-height: 1.2; }
.hero-a-copy.is-changing { animation: copy-crossfade .8s ease; }
.scroll-cue { position: absolute; z-index: 3; bottom: 28px; left: 50%; width: 44px; height: 44px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; top: 8px; left: 14px; width: 14px; height: 14px; border-right: 2px solid var(--white); border-bottom: 2px solid var(--white); transform: rotate(45deg); animation: cue-down 2s ease-in-out infinite; }

.hero-b { touch-action: pan-y; }
.hero-b-slides, .hero-b-slide, .hero-b-slide img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-b-slide { opacity: 0; transition: opacity .9s ease; }
.hero-b-slide.is-active { opacity: 1; }
.hero-b-slide img { object-fit: cover; }
.hero-b .hero-shade { background: linear-gradient(rgb(7 29 66 / 22%), rgb(7 29 66 / 62%)); }
.story-selector { position: absolute; z-index: 3; top: calc(var(--header-height) + 18px); left: 50%; display: flex; gap: 16px; transform: translateX(-50%); }
.story-dot { width: 54px; height: 54px; padding: 2px; border: 1px solid rgb(255 255 255 / 65%); border-radius: 50%; background: var(--white); cursor: pointer; transition: border-color .25s ease, transform .25s ease; }
.story-dot:hover { transform: translateY(-3px); }
.story-dot.is-active { border-color: var(--yellow); }
.story-dot img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
body.thumb-test-a .story-dot,
body.thumb-test-c .story-dot { position: relative; }
body.thumb-test-a .story-dot.is-active { border-width: 3px; transform: scale(1.08); }
body.thumb-test-a .story-dot.is-active:hover { transform: translateY(-2px) scale(1.08); }
body.thumb-test-a .story-dot::after { --thumb-progress: 0deg; content: ""; position: absolute; inset: -7px; padding: 2px; border-radius: 50%; background: conic-gradient(var(--yellow) var(--thumb-progress), rgb(255 255 255 / 24%) var(--thumb-progress)); opacity: 0; pointer-events: none; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
body.thumb-test-a .story-dot.is-active::after { opacity: 1; animation: thumb-progress 2.2s linear forwards; }
body.thumb-test-b .story-dot.is-active { border-width: 2px; box-shadow: 0 0 0 3px rgb(246 199 47 / 22%), 0 0 18px 6px rgb(246 199 47 / 34%); transform: scale(1.05); }
body.thumb-test-b .story-dot.is-active:hover { transform: translateY(-2px) scale(1.05); }
body.thumb-test-c .story-dot.is-active { border-color: rgb(255 255 255 / 52%); border-width: 2px; transform: scale(1.05); }
body.thumb-test-c .story-dot.is-active:hover { transform: translateY(-2px) scale(1.05); }
body.thumb-test-c .story-dot::before,
body.thumb-test-c .story-dot::after { --thumb-progress: 0deg; content: ""; position: absolute; border-radius: 50%; background: conic-gradient(#ffda55 var(--thumb-progress), transparent var(--thumb-progress)); opacity: 0; pointer-events: none; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
body.thumb-test-c .story-dot::before { inset: -7px; padding: 6px; background: conic-gradient(#ffe27a var(--thumb-progress), transparent var(--thumb-progress)); filter: blur(5px) brightness(1.2); }
body.thumb-test-c .story-dot::after { inset: -2px; padding: 3px; filter: drop-shadow(0 0 3px rgb(255 218 85 / 82%)); }
body.thumb-test-c .story-dot.is-active::before,
body.thumb-test-c .story-dot.is-active::after { opacity: 1; animation: thumb-progress 2.2s linear forwards; }
body.thumb-test-c .story-dot.is-active::before { opacity: .5; }
.hero-b-controls { position: absolute; z-index: 4; top: 50%; right: clamp(14px, 2.2vw, 34px); left: clamp(14px, 2.2vw, 34px); display: flex; justify-content: space-between; pointer-events: none; transform: translateY(-50%); }
.hero-b-controls button { display: grid; width: 40px; height: 40px; padding: 0; place-items: center; border: 1px solid rgb(255 255 255 / 32%); border-radius: 50%; background: rgb(7 29 66 / 18%); color: rgb(255 255 255 / 76%); font: inherit; cursor: pointer; pointer-events: auto; backdrop-filter: blur(5px); transition: background-color .2s ease, border-color .2s ease, color .2s ease; }
.hero-b-controls button:hover { border-color: rgb(255 255 255 / 58%); background: rgb(7 29 66 / 34%); color: var(--white); }
.hero-b-controls button:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.hero-b-controls span { display: block; font-size: 18px; line-height: 1; transform: translateY(-1px); }
.hero-b-copy { position: absolute; z-index: 2; top: 70%; left: 50%; width: min(900px, calc(100% - 48px)); color: var(--white); text-align: center; transform: translate(-50%, -50%); }
.hero-b-copy h1 { margin-bottom: 8px; font-family: "Anton", sans-serif; font-size: clamp(60px, 8.8vw, 126px); font-weight: 400; line-height: .9; }
.hero-b-copy p { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(16px, 1.7vw, 24px); font-weight: 700; letter-spacing: .1em; }
.hero-b-feature-control { position: relative; display: inline-block; }
.hero-b-feature-control::before {
  position: absolute;
  z-index: 2;
  inset: -10px -14px;
  border: 2px solid var(--yellow);
  border-radius: 4px;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity .2s ease, transform .32s ease;
}
.hero-b-feature-control h1,
.hero-b-feature-control p { position: relative; }
.hero-b-feature-control p {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}
.hero-b-feature-control h1::after,
.hero-b-feature-control p::after {
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: opacity .2s ease, transform .32s ease;
}
.hero-b-main-link { position: absolute; z-index: 1; inset: -10px -14px; border-radius: 4px; color: inherit; cursor: pointer; text-decoration: none; }
.hero-b-feature-control:hover h1::after,
.hero-b-feature-control:hover p::after { opacity: 1; transform: translateX(-50%) scaleX(1); }
.hero-b-feature-control:focus-within::before { opacity: 1; transform: scaleX(1); }
.hero-b-main-link:focus-visible { outline: 0; }
.hero-b-scene-link { display: inline-flex; min-height: 44px; margin: -8px -10px; padding: 8px 10px; align-items: center; justify-content: center; color: inherit; font-family: "Manrope", sans-serif; font-size: clamp(16px, 1.7vw, 24px); font-weight: 700; letter-spacing: .1em; text-decoration: none; }
.hero-b-scene-link:hover { text-decoration: underline; text-decoration-color: var(--yellow); text-underline-offset: 6px; }
.hero-b-scene-link:focus-visible { border-radius: 4px; outline: 3px solid var(--yellow); outline-offset: 4px; }
.hero-b-actions { position: absolute; z-index: 3; right: 0; bottom: clamp(22px, 3.5vh, 40px); left: 0; display: flex; justify-content: center; gap: 14px; }
.hero-b-actions .button { min-width: 176px; min-height: 46px; padding: 10px 20px; font-size: 14px; }

.hero.hero-c { display: grid; place-items: center; background: var(--yellow-soft); color: var(--blue); }
.hero.hero-c::before { content: ""; position: absolute; right: -10%; bottom: -26%; width: 58vw; height: 58vw; border-radius: 50%; background: rgb(246 199 47 / 17%); filter: blur(80px); }
.hero-c-content { position: relative; z-index: 1; width: min(900px, calc(100% - 48px)); padding-top: var(--header-height); text-align: center; }
.hero-statement { margin-bottom: 12px; font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .1em; }
.hero-c-logo { width: min(48vh, 500px); aspect-ratio: 1; margin-inline: auto; animation: logo-float 8s ease-in-out infinite alternate; }
.hero-c-logo img { width: 100%; height: 100%; object-fit: contain; }
#hero .hero-c h1 { margin-bottom: 24px; font-size: clamp(28px, 4vw, 50px); font-weight: 700; }
.hero-text-links { display: flex; justify-content: center; gap: 34px; }
.hero-text-links a, .hero-e-copy > a { padding-block: 6px; border-bottom: 1px solid currentColor; font-weight: 700; }

.hero-d-media { transition: transform .1s linear; }
.hero-d-shade { background: linear-gradient(90deg, rgb(7 29 66 / 48%), transparent 62%); }
#hero .hero-d h1 { position: absolute; z-index: 2; top: 50%; left: max(32px, calc((100vw - 1240px) / 2)); margin: 0; color: var(--white); font-size: clamp(36px, 4.5vw, 66px); font-weight: 400; line-height: 1.7; letter-spacing: .08em; transform: translateY(-50%); }
.light-particle { position: absolute; z-index: 1; border-radius: 50%; background: rgb(246 199 47 / 70%); filter: blur(2px); animation: particle-drift 10s ease-in-out infinite alternate; }
.particle-one { top: 24%; left: 22%; width: 9px; height: 9px; }
.particle-two { top: 64%; left: 46%; width: 6px; height: 6px; animation-delay: -3s; }
.particle-three { top: 33%; right: 16%; width: 7px; height: 7px; animation-delay: -6s; }

.hero.hero-e { display: grid; grid-template-columns: 52% 48%; background: var(--blue-soft); color: var(--blue); }
.hero-e-photo, .hero-e-photo img { width: 100%; height: 100%; min-height: 100svh; }
.hero-e-photo img { object-fit: cover; }
.hero-e-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: calc(var(--header-height) + 40px) clamp(40px, 6vw, 100px) 60px; }
.hero-e-copy h1 { margin-block: 30px 34px; font-family: "Shippori Mincho", serif; font-size: clamp(24px, 2.3vw, 38px); font-weight: 500; line-height: 2; }

.section-dark { position: relative; overflow: hidden; background: var(--blue-deep); color: var(--white); }
.story-answer-sequence {
  --story-progress: 0;
  --story-dark-progress: 0;
  --story-copy-progress: 0;
  --answer-copy-progress: 0;
  position: relative;
  overflow: clip;
  background: var(--blue-deep);
  color: var(--white);
}
.story-answer-stage {
  position: sticky;
  z-index: 0;
  top: var(--header-height);
  height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--blue-deep);
}
.story-answer-image,
.story-answer-shade {
  position: absolute;
  inset: 0;
}
.story-answer-image {
  background-image: image-set(url("../assets/img/empathy-bg.webp") type("image/webp"), url("../assets/img/empathy-bg.png") type("image/png"));
  background-position: center;
  background-size: cover;
  opacity: calc(1 - (var(--story-dark-progress) * .52));
  transform: translate3d(0, calc(var(--story-progress) * -1.5%), 0) scale(calc(1.02 + (var(--story-progress) * .025)));
  transform-origin: center;
  will-change: opacity, transform;
}
.story-answer-shade {
  background:
    linear-gradient(to bottom, rgb(7 29 66 / 70%), rgb(7 29 66 / 78%)),
    linear-gradient(90deg, rgb(7 29 66 / 12%), transparent 45%, rgb(7 29 66 / 10%));
  opacity: var(--story-dark-progress);
  will-change: opacity;
}
.story-answer-sequence > section {
  position: relative;
  z-index: 1;
}
.empathy {
  display: grid;
  min-height: 1160px;
  place-items: center;
  padding-block: var(--section-space);
  background: transparent;
}
.empathy::after { content: none; }
.empathy-content {
  position: relative;
  z-index: 1;
  opacity: var(--story-copy-progress);
  transform: translate3d(0, calc((1 - var(--story-copy-progress)) * 22px), 0);
  transition: opacity .12s linear, transform .12s linear;
  will-change: opacity, transform;
}
.empathy-content .section-label { text-align: center; }
.empathy-content .section-label::before { display: none; }
.empathy-copy { width: min(720px, 100%); margin-inline: auto; font-family: "Shippori Mincho", serif; font-size: clamp(20px, 2vw, 27px); font-weight: 400; line-height: 2.2; text-align: center; }
.empathy-line { margin-bottom: 22px; }
.empathy-line:last-child { margin-bottom: 0; }
.empathy-gap { margin-top: 72px; }

.solution {
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  background: transparent;
}
.solution::after { content: none; }
.solution-inner { position: relative; z-index: 1; max-width: 980px; padding-left: 0; text-align: center; }
.solution-copy {
  opacity: var(--answer-copy-progress);
  transform: translate3d(0, calc((1 - var(--answer-copy-progress)) * 22px), 0);
  transition: opacity .12s linear, transform .12s linear;
  will-change: opacity, transform;
}
.solution .section-label { color: var(--yellow); }
.solution .section-label::before { display: none; }
.solution h2 { max-width: 950px; margin-inline: auto; color: var(--white); }
.solution p:last-child { max-width: 760px; margin-inline: auto; color: rgb(255 255 255 / 78%); font-size: clamp(17px, 1.6vw, 21px); font-weight: 500; line-height: 2; }

.feature { background: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.feature-card { min-height: 360px; padding: 34px 28px; border: 1px solid var(--line); border-top: 5px solid var(--blue); border-radius: 8px; background: var(--white); }
.feature-number { display: grid; width: 54px; height: 54px; margin-bottom: 52px; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--blue); font-family: "Manrope", sans-serif; font-weight: 700; }
.feature-card h3 { min-height: 76px; margin-bottom: 18px; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.9; }

.flow { background: var(--blue-deep); color: var(--white); }
.flow h2, .flow .section-label { color: var(--white); }
.flow-tabs { display: inline-grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 56px; padding: 4px; border: 1px solid rgb(255 255 255 / 28%); border-radius: 999px; }
.flow-tab { min-width: 150px; min-height: 48px; padding: 10px 20px; border: 0; border-radius: 999px; background: transparent; color: var(--white); font-weight: 700; cursor: pointer; }
.flow-tab.is-active { background: var(--yellow); color: var(--blue); }
.flow-panel { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr); gap: clamp(40px, 7vw, 96px); align-items: center; }
.flow-panel-copy { display: grid; align-content: center; }
.flow .section-text-link { justify-self: start; color: var(--yellow); }
.flow-visual { display: block; position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 4 / 3; }
.flow-visual img { width: 100%; height: 100%; object-fit: cover; }
.flow-patient-video { display: block; width: 100%; height: 100%; object-fit: cover; }
.flow-patient-fallback { display: none; width: 100%; height: 100%; }
.flow-steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.flow-steps li { display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding-block: 25px; border-bottom: 1px solid rgb(255 255 255 / 20%); }
.flow-steps li > span { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--blue); font-family: "Manrope", sans-serif; font-weight: 700; }
.flow-steps h3 { margin-bottom: 7px; color: var(--white); font-size: 21px; }
.flow-steps p { margin-bottom: 0; color: rgb(255 255 255 / 72%); }
.pharmacy-visual picture, .pharmacy-visual picture img { width: 100%; height: 100%; }
.app-placeholder { position: absolute; right: 5%; bottom: 6%; width: min(54%, 330px); padding: 20px; border: 1px solid rgb(11 47 107 / 18%); border-radius: 8px; background: rgb(255 255 255 / 95%); color: var(--blue); box-shadow: 0 18px 50px rgb(7 29 66 / 30%); }
.app-placeholder-bar { display: flex; gap: 5px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.app-placeholder-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.app-placeholder strong, .app-placeholder span { display: block; }
.app-placeholder strong { margin-top: 18px; }
.app-placeholder span { color: var(--muted); font-size: 12px; }

.economics {
  --management-card-width: min(56vw, 720px);
  --management-edge: max(32px, calc((100vw - var(--management-card-width)) / 2));
  position: relative;
  overflow: hidden;
  padding-block: clamp(96px, 11vw, 150px);
  background: var(--blue-deep);
  color: var(--white);
}
.economics-sticky {
  display: grid;
  gap: 0;
}
.economics-heading { position: relative; z-index: 2; margin-bottom: clamp(38px, 5vw, 68px); }
.economics-heading .section-label { margin-bottom: 10px; color: var(--yellow); }
.economics-heading .section-label::before { background: var(--yellow); }
.economics-heading-row { display: flex; justify-content: space-between; gap: 48px; align-items: end; }
.economics-heading h2 { max-width: 680px; margin-bottom: 0; color: var(--white); font-size: clamp(38px, 4.4vw, 64px); line-height: 1.25; }
.economics-heading .heading-link { color: inherit; }
.economics-intro { width: min(390px, 34vw); padding-bottom: 6px; }
.economics-intro p { margin-bottom: 12px; color: rgb(255 255 255 / 62%); font-size: 14px; line-height: 1.8; }
.economics .section-text-link { color: var(--yellow); font-size: 16px; }
.economics-progress-wrap { margin-bottom: clamp(22px, 3vw, 36px); }
.economics-stage { position: relative; width: 100%; min-width: 0; }
.economics-viewport {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-block: 5px;
  cursor: grab;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--management-edge);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.economics-viewport::-webkit-scrollbar { display: none; }
.economics-viewport:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }
.economics-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}
.economics-track {
  display: flex;
  width: max-content;
  gap: clamp(34px, 5vw, 76px);
  padding-inline: var(--management-edge);
}
.economics-point {
  --management-opacity: .34;
  --management-scale: .96;
  display: grid;
  flex: 0 0 var(--management-card-width);
  grid-template-rows: auto minmax(270px, 1fr) auto;
  min-width: 0;
  min-height: clamp(490px, 62svh, 660px);
  padding-block: 18px 20px;
  opacity: var(--management-opacity);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transform: scale(var(--management-scale));
  transform-origin: center;
  transition: opacity .24s ease, transform .24s ease;
}
.economics-number { color: rgb(255 255 255 / 82%); font-family: "Manrope", sans-serif; font-size: 16px; font-weight: 700; }
.management-visual {
  position: relative;
  display: grid;
  width: min(29vh, 300px);
  aspect-ratio: 1;
  margin-inline: auto;
  place-items: center;
  align-self: center;
}
.management-visual-tasks {
  width: min(42vh, 430px);
  aspect-ratio: 1.55;
  grid-template-columns: minmax(90px, 1fr) minmax(52px, .62fr) minmax(76px, .7fr);
  gap: 10px;
}
.management-task-list { display: grid; gap: 8px; width: 100%; }
.management-task {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 4px;
  color: rgb(255 255 255 / 72%);
  font-size: 12px;
  font-weight: 700;
}
.management-task-rail { position: relative; width: 100%; height: 76%; }
.management-task-rail::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgb(246 199 47 / 72%);
}
.management-task-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgb(255 255 255 / 26%);
}
.management-task-center {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: 96px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  box-shadow: 0 0 0 8px rgb(246 199 47 / 8%);
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 3vw, 42px);
}
.management-visual-shift { width: min(36vh, 390px); aspect-ratio: 1.35; }
.management-shift-bars { display: flex; position: absolute; inset: 10% 4% 18%; gap: 7%; align-items: end; }
.management-shift-bars i { flex: 1; height: 32%; border-radius: 2px 2px 0 0; background: rgb(255 255 255 / 14%); }
.management-shift-bars i:nth-child(2) { height: 48%; }
.management-shift-bars i:nth-child(3) { height: 82%; background: rgb(246 199 47 / 58%); }
.management-shift-bars i:nth-child(4) { height: 100%; background: var(--yellow); }
.management-shift-bars i:nth-child(5) { height: 78%; background: rgb(246 199 47 / 48%); }
.management-shift-bars i:nth-child(6) { height: 44%; }
.management-shift-bars i:nth-child(7) { height: 28%; }
.management-shift-line { position: absolute; right: 3%; bottom: 17%; left: 3%; height: 1px; background: rgb(255 255 255 / 35%); }
.management-visual-start {
  width: min(43vh, 450px);
  aspect-ratio: 1.55;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
}
.management-start-unit { display: grid; gap: 14px; justify-items: center; color: var(--white); }
.management-start-unit i { position: relative; display: block; width: 88px; height: 88px; }
.management-start-store i {
  border: 2px solid rgb(255 255 255 / 58%);
  border-top: 9px solid var(--yellow);
  border-radius: 4px;
}
.management-start-store i::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 15px;
  width: 16px;
  height: 16px;
  background: rgb(255 255 255 / 68%);
  box-shadow: 40px 0 rgb(255 255 255 / 68%), 0 28px rgb(255 255 255 / 68%), 40px 28px var(--yellow);
}
.management-start-time i { border: 2px solid rgb(255 255 255 / 58%); border-radius: 50%; }
.management-start-time i::before, .management-start-time i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  background: var(--yellow);
  transform-origin: center bottom;
}
.management-start-time i::before { height: 25px; transform: translate(-50%, -100%) rotate(12deg); }
.management-start-time i::after { height: 19px; transform: translate(-50%, -100%) rotate(118deg); }
.management-start-unit strong { font-size: 16px; white-space: nowrap; }
.management-start-cross { color: var(--yellow); font-size: clamp(24px, 3vw, 38px); font-weight: 300; }
.management-visual-pictogram {
  width: min(43vh, 450px);
  aspect-ratio: 1.5;
}
.management-visual-pictogram picture,
.management-visual-pictogram img {
  display: block;
  width: 100%;
  height: 100%;
}
.management-visual-pictogram img { object-fit: contain; }
.management-visual-native {
  width: min(43vh, 450px);
  aspect-ratio: 1.5;
}
.management-system-grid {
  position: absolute;
  inset: 12% 4% 8%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(7px, 1.2vw, 14px);
}
.management-system-grid span {
  display: grid;
  place-items: center;
  border: 2px solid rgb(218 234 255 / 78%);
  border-radius: clamp(8px, 1vw, 14px);
  color: var(--white);
  font-size: clamp(17px, 3.2vh, 34px);
  font-weight: 700;
  text-shadow: 0 2px 12px rgb(0 0 0 / 18%);
}
.management-system-core {
  position: relative;
  z-index: 1;
  display: grid;
  width: 29%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  box-shadow: 0 0 24px rgb(246 199 47 / 20%);
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 6vh, 68px);
  font-weight: 400;
}
.management-visual-focus {
  width: min(30vh, 310px);
  height: min(30vh, 310px);
  overflow: visible;
  border-radius: 50%;
}
.management-visual-focus::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -8px;
  border: 1px solid rgb(246 199 47 / 72%);
  border-radius: 50%;
  pointer-events: none;
}
.management-visual-focus picture, .management-visual-focus img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.management-visual-focus img { object-fit: cover; object-position: center 42%; }
.management-visual-focus span {
  position: absolute;
  z-index: 2;
  top: 4%;
  right: 3%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 7px rgb(246 199 47 / 10%);
}
.economics-copy { max-width: 560px; margin-inline: auto; text-align: center; }
.economics-copy h3 { margin-bottom: 10px; color: var(--white); font-size: clamp(21px, 2.2vw, 32px); line-height: 1.55; }
.economics-copy p { margin-bottom: 0; color: rgb(255 255 255 / 58%); font-size: 14px; line-height: 1.8; }
.economics-controls {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  transform: translateY(-50%);
}
.economics-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 27%);
  border-radius: 50%;
  background: transparent;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
  cursor: pointer;
  pointer-events: auto;
  transition: border-color .2s ease, color .2s ease, opacity .2s ease;
}
.economics-arrow:hover, .economics-arrow:focus-visible { border-color: var(--yellow); color: var(--yellow); }
.economics-arrow:focus-visible { outline: 2px solid rgb(246 199 47 / 38%); outline-offset: 3px; }
.economics-arrow:disabled { opacity: .2; cursor: default; }
.economics-progress { position: relative; height: 2px; overflow: hidden; background: rgb(255 255 255 / 14%); }
.economics-progress span { display: block; width: 100%; height: 100%; background: var(--yellow); transform: scaleX(var(--management-progress, 0)); transform-origin: left center; }

.voice { background: var(--white); }
.dummy-note { padding-left: 12px; border-left: 3px solid var(--yellow); color: var(--muted); font-size: 13px; }
.voice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.voice-card { overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.voice-card picture { display: block; overflow: hidden; aspect-ratio: 4 / 3; }
.voice-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.voice-card:hover img { transform: scale(1.025); }
.voice-card figcaption { padding: 30px; }
.voice-card blockquote { margin-bottom: 22px; color: var(--blue); font-family: "Shippori Mincho", serif; font-size: clamp(19px, 1.7vw, 24px); font-weight: 500; line-height: 1.8; }
.voice-card figcaption p { margin: 0; color: var(--muted); font-size: 13px; }

.faq { background: var(--white); border-top: 1px solid var(--line); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 8vw, 120px); }
.faq-list { border-top: 1px solid var(--blue); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 28px 56px 28px 0; color: var(--blue); font-size: 18px; font-weight: 700; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 8px; font-family: "Manrope", sans-serif; font-size: 25px; font-weight: 500; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 56px 28px 0; color: var(--muted); }

.closing { position: relative; display: grid; min-height: 760px; place-items: center; overflow: hidden; color: var(--white); }
.closing-bg { position: absolute; inset: 0; background-image: linear-gradient(rgb(7 29 66 / 30%), rgb(7 29 66 / 30%)), image-set(url("../assets/img/closing-bg.webp") type("image/webp"), url("../assets/img/closing-bg.png") type("image/png")); background-position: center; background-size: cover; }
.closing-content { position: relative; z-index: 1; text-align: center; }
.closing-content > p:first-child { margin-bottom: 38px; font-family: "Shippori Mincho", serif; font-size: clamp(38px, 5.4vw, 72px); line-height: 1.55; }
.closing-title span { display: inline-block; white-space: nowrap; }
.closing-sub { margin-bottom: 38px; font-family: "Shippori Mincho", serif; font-size: clamp(18px, 2vw, 25px); line-height: 2; }
.closing-actions { display: flex; justify-content: center; gap: 12px; margin-bottom: 20px; }
.closing-content small { color: rgb(255 255 255 / 76%); }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-card { scroll-margin-top: calc(var(--header-height) + 20px); padding: clamp(32px, 4vw, 54px); border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.contact-card-trial { border-top: 7px solid var(--yellow); }
.contact-index { color: var(--blue); font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 700; }
.contact-card h3 { margin-bottom: 14px; font-size: 34px; }
.contact-card > p:nth-of-type(2) { min-height: 58px; color: var(--muted); }
.contact-form { display: grid; gap: 17px; margin-top: 32px; }
.contact-form label { color: var(--blue); font-size: 13px; font-weight: 700; }
.contact-form input { width: 100%; min-height: 50px; margin-top: 6px; padding: 10px 14px; border: 1px solid #cbd3df; border-radius: 5px; background: var(--white); color: var(--ink); }
.contact-form input:focus { border-color: var(--blue); outline: 3px solid rgb(246 199 47 / 42%); }
.contact-form .button { width: 100%; margin-top: 8px; border: 0; cursor: pointer; }

.site-footer { padding-block: 66px 44px; background: var(--blue-deep); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 54px; align-items: start; }
.footer-brand { align-self: start; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px 28px; font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.footer-meta { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 14px 28px; padding-top: 28px; border-top: 1px solid rgb(255 255 255 / 18%); color: rgb(255 255 255 / 64%); font-size: 12px; }
.footer-meta p { margin: 0; }

.sticky-cta { display: none; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes ken-burns { from { transform: scale(1); } to { transform: scale(1.05); } }
@keyframes copy-crossfade { 0% { opacity: 1; } 45% { opacity: 0; transform: translateY(10px); } 55% { opacity: 0; transform: translateY(-10px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes cue-down { 0%, 100% { opacity: .35; transform: translateY(-4px) rotate(45deg); } 50% { opacity: 1; transform: translateY(5px) rotate(45deg); } }
@keyframes logo-float { from { transform: translateY(-8px); } to { transform: translateY(8px); } }
@keyframes particle-drift { from { transform: translate3d(-10px, -8px, 0); opacity: .3; } to { transform: translate3d(14px, 18px, 0); opacity: .85; } }
@keyframes thumb-progress { from { --thumb-progress: 0deg; } to { --thumb-progress: 360deg; } }

@property --thumb-progress {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@media (min-width: 768px) {
  .flow {
    padding-top: calc(var(--header-height) + clamp(12px, 2svh, 24px));
    padding-bottom: clamp(16px, 2.5svh, 40px);
  }
  .flow .section-heading {
    margin-bottom: clamp(16px, 2.5svh, 40px);
  }
  .flow h2 {
    font-size: clamp(36px, min(5vw, 6svh), 68px);
  }
  .flow-tabs {
    margin-bottom: clamp(16px, 2.5svh, 40px);
  }
  .flow-visual {
    height: clamp(250px, 36svh, 520px);
    aspect-ratio: auto;
  }
  .flow-steps li {
    padding-block: clamp(12px, 1.8svh, 25px);
  }

  .economics {
    padding-top: calc(var(--header-height) + clamp(12px, 2svh, 24px));
    padding-bottom: clamp(16px, 2.5svh, 40px);
  }
  .economics-heading {
    margin-bottom: clamp(16px, 2.5svh, 40px);
  }
  .economics-heading h2 {
    font-size: clamp(36px, min(4.4vw, 6svh), 64px);
  }
  .economics-progress-wrap {
    margin-bottom: clamp(14px, 2svh, 28px);
  }
  .economics-point {
    grid-template-rows: auto minmax(190px, 1fr) auto;
    min-height: clamp(340px, 48svh, 560px);
    padding-block: 10px 14px;
  }
  .management-visual {
    width: min(24svh, 250px);
  }
  .management-visual-tasks,
  .management-visual-shift,
  .management-visual-start,
  .management-visual-pictogram,
  .management-visual-native {
    width: min(31svh, 340px);
  }
  .management-visual-focus {
    width: min(24svh, 250px);
    height: min(24svh, 250px);
  }
}

@media (min-width: 1024px) and (max-height: 840px) {
  .flow-steps li {
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding-block: 8px;
  }
  .flow-steps li > span {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .flow-steps h3 {
    margin-bottom: 3px;
    font-size: 19px;
  }
  .flow-steps p {
    font-size: 14px;
    line-height: 1.65;
  }
  .economics {
    padding-bottom: clamp(12px, 2svh, 32px);
  }
}

@media (max-width: 1180px) {
  .desktop-nav { gap: 18px; }
  .desktop-cta { display: none; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card { min-height: 300px; }
}

@media (max-width: 1023px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .header-actions { margin-left: auto; }
  .flow-panel, .faq-layout { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr 1fr; }
  .voice-card:last-child { grid-column: 1 / -1; width: calc(50% - 10px); }
}

@media (max-width: 767px) {
  :root { --header-height: 56px; --section-space: 92px; }
  body { padding-bottom: 0; }
  h2 { font-size: clamp(34px, 10.2vw, 48px); }
  .container, .header-inner { width: min(calc(100% - 32px), var(--container)); }
  .sp-only { display: block; }
  .section-label { margin-bottom: 18px; }
  .section-heading { margin-bottom: 42px; }
  .brand { gap: 8px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 17px; }
  .header-actions .button { min-height: 36px; padding-inline: 14px; font-size: 14px; }
  .header-actions .desktop-cta { display: none; }
  .menu-button { width: 38px; height: 38px; padding: 9px; }

  .hero-shade { background: linear-gradient(0deg, rgb(7 29 66 / 76%), rgb(7 29 66 / 8%) 72%); }
  .hero-a-copy { left: 20px; bottom: 110px; width: calc(100% - 40px); }
  .hero-a-copy h1 { font-size: clamp(34px, 10.8vw, 52px); line-height: 1.28; }
  .hero-a-copy p { font-size: 13px; }
  .story-selector { top: calc(var(--header-height) + 10px); gap: 11px; }
  .story-dot { width: 44px; height: 44px; }
  .hero-b-controls { right: 10px; left: 10px; }
  .hero-b-controls button { width: 36px; height: 36px; background: rgb(7 29 66 / 14%); }
  .hero-b-controls span { font-size: 16px; }
  .hero-b-copy { top: 72%; width: calc(100% - 36px); }
  .hero-b-copy h1 { font-size: clamp(50px, 16vw, 76px); }
  .hero-b-copy p { font-size: 14px; }
  .hero-b-scene-link { font-size: 14px; }
  .hero-b-actions { right: 24px; bottom: 18px; left: 24px; flex-direction: row; gap: 10px; }
  .hero-b-actions .button {
    flex: 1;
    min-width: 0;
    min-height: 44px;
    padding: 9px 10px;
    border-radius: 999px;
    font-size: 13px;
    box-shadow: 0 8px 24px rgb(7 29 66 / 16%);
  }
  .hero-b-actions .button-blue {
    order: 1;
    border-color: rgb(255 255 255 / 26%);
    background: rgb(7 29 66 / 38%);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 12%), 0 8px 24px rgb(7 29 66 / 18%);
    backdrop-filter: blur(10px) saturate(115%);
    -webkit-backdrop-filter: blur(10px) saturate(115%);
  }
  .hero-b-actions .button-yellow { order: 2; }
  .hero-c-content { padding-top: calc(var(--header-height) + 12px); }
  .hero-c-logo { width: min(48vh, 88vw); }
  #hero .hero-c h1 { font-size: clamp(27px, 8.2vw, 40px); }
  .hero-d-shade { background: linear-gradient(0deg, rgb(7 29 66 / 70%), transparent 66%); }
  #hero .hero-d h1 { top: auto; right: 24px; bottom: 110px; left: 24px; font-size: clamp(31px, 9vw, 45px); line-height: 1.65; transform: none; }
  .hero.hero-e { display: flex; flex-direction: column; min-height: 100svh; padding-top: var(--header-height); }
  .hero-e-photo { flex: 0 0 48svh; height: 48svh; min-height: 0; }
  .hero-e-photo img { height: 100%; min-height: 0; object-position: center 24%; }
  .hero-e-copy { flex: 1; align-items: center; padding: 26px 24px 46px; text-align: center; }
  .hero-e-copy h1 { margin-block: 18px 22px; font-size: clamp(19px, 5.4vw, 25px); line-height: 1.9; }

  .story-answer-image { background-position: 58% center; }
  .empathy-copy { font-size: clamp(16px, 4.3vw, 19px); line-height: 2.2; }
  .empathy-line { margin-bottom: 18px; }
  .empathy-gap { margin-top: 56px; }
  .solution { background: transparent; }
  .solution-inner { padding: 112px 0; }
  .solution h2 { font-size: min(6.85vw, 28px); line-height: 1.45; }
  .solution-title span, .flow-title span { white-space: nowrap; }
  .solution p:last-child { color: rgb(255 255 255 / 78%); font-size: 16px; }

  .feature-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { min-height: 0; padding: 28px 24px; }
  .feature-number { width: 48px; height: 48px; margin-bottom: 34px; }
  .feature-card h3 { min-height: 0; }
  .flow-title { font-size: min(8.7vw, 36px); line-height: 1.4; }
  .flow-tabs { display: grid; width: 100%; margin-bottom: 38px; }
  .flow-tab { min-width: 0; }
  .flow-panel { gap: 30px; }
  .flow-steps li { grid-template-columns: 46px 1fr; gap: 15px; }
  .flow-steps li > span { width: 42px; height: 42px; }
  .flow-steps h3 { font-size: 18px; }
  .flow-steps p { font-size: 14px; }
  .app-placeholder { right: 4%; bottom: 4%; width: 66%; padding: 13px; }
  .app-placeholder strong { margin-top: 10px; font-size: 12px; }
  .app-placeholder span { font-size: 10px; }

  .economics {
    --management-card-width: 80vw;
    --management-edge: calc((100vw - var(--management-card-width)) / 2);
    padding-block: 48px 62px;
  }
  .economics-sticky { gap: 0; }
  .economics-heading { margin-bottom: 18px; }
  .economics-heading .section-label { margin-bottom: 4px; font-size: 12px; }
  .economics-heading-row { display: block; }
  .economics-heading h2 { font-size: min(7.45vw, 29px); line-height: 1.3; }
  .economics-intro { width: 100%; padding-bottom: 0; }
  .economics-intro p { margin-block: 6px 4px; font-size: 11px; line-height: 1.6; }
  .economics .section-text-link { margin-top: 10px; font-size: 14px; }
  .economics-progress-wrap { margin-bottom: 14px; }
  .economics-track { gap: 6vw; }
  .economics-point {
    grid-template-rows: auto auto auto;
    min-height: 370px;
    align-content: center;
    row-gap: 8px;
    padding-block: 8px 10px;
  }
  .economics-number {
    width: min(58vw, 230px);
    margin-inline: auto;
    font-size: 18px;
    line-height: 1.25;
  }
  .management-visual { width: min(36vw, 150px); }
  .management-visual-tasks { width: min(58vw, 230px); grid-template-columns: minmax(68px, 1fr) 38px 60px; gap: 6px; }
  .management-task-list { gap: 5px; }
  .management-task { min-height: 27px; font-size: 9px; }
  .management-task-center { font-size: 23px; }
  .management-visual-shift { width: min(58vw, 230px); }
  .management-visual-start { width: min(58vw, 240px); gap: 10px; }
  .management-start-unit i { width: 62px; height: 62px; }
  .management-start-store i::before { top: 12px; left: 9px; width: 12px; height: 12px; box-shadow: 28px 0 rgb(255 255 255 / 68%), 0 20px rgb(255 255 255 / 68%), 28px 20px var(--yellow); }
  .management-start-time i::before { height: 18px; }
  .management-start-time i::after { height: 14px; }
  .management-start-unit strong { font-size: 12px; }
  .management-visual-pictogram,
  .management-visual-native { width: min(58vw, 240px); }
  .management-visual-focus { width: min(38vw, 160px); height: min(38vw, 160px); }
  .economics-copy h3 { margin-bottom: 6px; font-size: clamp(18px, 5vw, 21px); line-height: 1.5; }
  .economics-copy p { font-size: 12px; line-height: 1.6; }
  .economics-controls { right: 16px; left: 16px; }
  .economics-arrow { width: 34px; height: 34px; }
  .voice-grid { grid-template-columns: 1fr; }
  .voice-card:last-child { grid-column: auto; width: auto; }
  .voice-card figcaption { padding: 24px; }
  .faq-layout { gap: 12px; }
  .faq-list summary { padding-block: 24px; font-size: 16px; }

  .closing { min-height: 720px; }
  .closing-bg { background-position: 66% center; }
  .closing-content > p:first-child { font-size: min(8.8vw, 38px); }
  .closing-actions { flex-direction: column; width: min(310px, 100%); margin-inline: auto; }
  .closing-actions .button { width: 100%; }
  .closing-content small { display: block; width: min(290px, 100%); margin-inline: auto; line-height: 1.8; }

  .contact { padding-bottom: 126px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 28px 22px; }
  .contact-card > p:nth-of-type(2) { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
  .footer-meta { grid-column: auto; }

  .sticky-cta {
    position: fixed;
    z-index: 90;
    right: 18px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: 18px;
    display: flex;
    min-height: 0;
    justify-content: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 30px)) scale(.98);
    transition: opacity .35s ease, transform .48s cubic-bezier(.22, 1, .36, 1);
  }
  .sticky-cta.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .sticky-cta a:first-child { display: none; }
  .sticky-cta a:last-child {
    display: grid;
    width: calc((100vw - 58px) / 2);
    min-height: 44px;
    place-items: center;
    border: 1px solid rgb(246 199 47 / 76%);
    border-radius: 999px;
    background: var(--yellow);
    color: var(--blue);
    box-shadow: 0 12px 32px rgb(7 29 66 / 22%);
    font-weight: 700;
    pointer-events: auto;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .sticky-cta a:last-child:active { transform: scale(.98); }
}

@media (min-width: 1600px) {
  :root { --container: 1380px; }
  .feature-card { min-height: 390px; padding: 42px 34px; }
  .feature-card p { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .empathy-line { opacity: 1; transform: none; }
  .empathy-content, .solution-copy { transform: none; }
  .story-answer-image { transform: scale(1.02); }
  .flow-patient-video { display: none; }
  .flow-patient-fallback { display: block; }
  .hero-d-media { transform: none !important; }
  .economics-viewport { scroll-behavior: auto; }
  .economics-point { transition: none; }
  body.thumb-test-a .story-dot.is-active::after,
  body.thumb-test-c .story-dot.is-active::before,
  body.thumb-test-c .story-dot.is-active::after { --thumb-progress: 360deg; animation: none !important; }
}
