:root {
  --brand-primary: #16a2b5;
  --brand-primary-dark: #0a6f80;
  --brand-pink: #ff66cc;
  --brand-mist: #f3f8f9;
  --brand-ink: #0a303a;
  --brand-muted: #567079;
}

.brand-refresh {
  color: var(--brand-ink);
}

.brand-refresh main {
  overflow: hidden;
}

.brand-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--brand-mist);
}

.brand-hero__visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.brand-hero__image {
  position: absolute;
  top: -3%;
  right: -2%;
  width: 104%;
  height: 106%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform-origin: 72% 54%;
  animation: brand-kv-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.brand-hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 29%, rgba(255, 255, 255, .56) 48%, rgba(255, 255, 255, 0) 70%);
}

.brand-hero__sweep {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(22, 162, 181, .13), transparent);
  animation: brand-light-sweep 7s ease-in-out 1.2s infinite;
  will-change: transform, opacity;
}

.brand-hero__bloom {
  position: absolute;
  left: 45%;
  top: 56%;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 102, 204, .48), transparent 64%);
  filter: blur(6px);
  animation: brand-bloom-pulse 5s ease-in-out 1.4s infinite;
  will-change: transform, opacity;
}

.brand-hero__particle {
  position: absolute;
  left: var(--start-x);
  top: var(--start-y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: var(--particle-color);
  box-shadow: 0 0 10px color-mix(in srgb, var(--particle-color) 45%, transparent);
  filter: blur(.25px);
  opacity: 0;
  animation: brand-stream-right var(--duration) linear var(--delay) infinite;
  will-change: transform, opacity;
}

@keyframes brand-kv-drift {
  from { transform: translateX(0) scale(1.055); }
  to { transform: translateX(-1.8%) scale(1.015); }
}

@keyframes brand-light-sweep {
  0% { transform: translateX(-45%); opacity: 0; }
  28% { opacity: .58; }
  100% { transform: translateX(320%); opacity: 0; }
}

@keyframes brand-bloom-pulse {
  0%, 100% { opacity: .28; transform: translate(-50%, -50%) scale(.86); }
  50% { opacity: .72; transform: translate(-50%, -50%) scale(1.28); }
}

@keyframes brand-stream-right {
  0% { transform: translate(0, 0); opacity: 0; }
  9% { opacity: .9; }
  84% { opacity: .8; }
  100% { transform: translate(var(--travel-x), var(--travel-y)); opacity: 0; }
}

@keyframes brand-rise-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand-hero .brand-signal,
.brand-hero h1,
.brand-hero__lead,
.brand-hero__support,
.brand-hero .actions {
  opacity: 0;
  animation: brand-rise-in .85s cubic-bezier(.2, .7, .2, 1) forwards;
}

.brand-hero .brand-signal { animation-delay: .1s; }
.brand-hero h1 { animation-delay: .24s; }
.brand-hero__lead { animation-delay: .42s; }
.brand-hero__support { animation-delay: .58s; }
.brand-hero .actions { animation-delay: .72s; }

.brand-hero__copy {
  width: min(630px, 58vw);
  padding: 84px 0 92px;
}

.brand-signal {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(22, 162, 181, .08);
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
}

.brand-signal::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-pink);
  box-shadow: 0 0 0 5px rgba(255, 102, 204, .12);
}

.brand-hero h1 {
  max-width: 620px;
  margin: 0 0 25px;
  font-size: clamp(64px, 7.5vw, 110px);
  line-height: .94;
  letter-spacing: -.075em;
  word-break: keep-all;
}

.brand-hero h1 span {
  display: block;
  color: var(--brand-primary);
}

.brand-hero__lead {
  max-width: 600px;
  margin: 0;
  color: #244b56;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 650;
  line-height: 1.55;
  word-break: keep-all;
}

.brand-hero__support {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}

.brand-hero .actions {
  margin-top: 30px;
}

.brand-hero .btn.light {
  border-color: rgba(22, 162, 181, .35);
  color: var(--brand-primary-dark);
}

.brand-section {
  padding: 112px 0;
}

.brand-section.soft {
  background: var(--brand-mist);
}

.brand-section.dark {
  background: #0a303a;
  color: #fff;
}

.brand-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .72fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 54px;
}

.brand-heading h2 {
  max-width: 820px;
  margin: 12px 0 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  word-break: keep-all;
}

.brand-heading > p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 18px;
  line-height: 1.75;
  word-break: keep-all;
}

.brand-section.dark .brand-heading > p {
  color: #c6d7dc;
}

.brand-label {
  display: block;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.brand-essence-card {
  position: relative;
  padding: clamp(36px, 6vw, 76px);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a303a, #0d6978);
  color: #fff;
}

.brand-essence-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 0 0 54px rgba(255, 255, 255, .04), 0 0 0 108px rgba(255, 255, 255, .025);
}

.brand-essence-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 900px;
  font-size: clamp(36px, 5.2vw, 74px);
  line-height: 1.12;
  letter-spacing: -.055em;
  word-break: keep-all;
}

.brand-essence-card p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 26px 0 0;
  color: #d4e5e9;
  font-size: 18px;
  line-height: 1.75;
  word-break: keep-all;
}

.choice-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.choice-flow article {
  position: relative;
  min-width: 0;
  padding: 32px 22px 34px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

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

.choice-flow article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -12px;
  top: 34px;
  z-index: 1;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #0a303a;
  color: var(--brand-pink);
  font-weight: 900;
}

.choice-flow span {
  display: block;
  color: #7fd5df;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.choice-flow strong {
  display: block;
  margin-top: 20px;
  font-size: clamp(20px, 2vw, 28px);
}

.choice-flow p {
  margin: 10px 0 0;
  color: #b9ccd1;
  font-size: 14px;
  line-height: 1.6;
  word-break: keep-all;
}

.brand-story-grid,
.brand-promise-grid,
.brand-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-story-card,
.brand-promise-card,
.brand-mission-card {
  min-width: 0;
  padding: 36px;
  border: 1px solid #dbe7e9;
  border-radius: 24px;
  background: #fff;
}

.brand-story-card h3,
.brand-promise-card h3,
.brand-mission-card h3 {
  margin-top: 36px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.2;
  word-break: keep-all;
}

.brand-story-card p,
.brand-promise-card p,
.brand-mission-card p {
  margin-bottom: 0;
  color: var(--brand-muted);
  line-height: 1.75;
  word-break: keep-all;
}

.brand-story-card.accent,
.brand-mission-card.accent {
  border-color: rgba(22, 162, 181, .3);
  background: linear-gradient(145deg, #ecfafb, #fff 72%);
}

.brand-story-card.patient {
  border-color: rgba(255, 102, 204, .25);
  background: linear-gradient(145deg, #fff1fa, #fff 72%);
}

.brand-story-card.patient .brand-label {
  color: #d84ca9;
}

.operation-grid,
.brand-value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.operation-card,
.brand-value-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 26px 22px;
  border: 1px solid #dbe7e9;
  border-radius: 20px;
  background: #fff;
}

.operation-card h3,
.brand-value-card h3 {
  margin-top: 40px;
  font-size: 21px;
  line-height: 1.35;
  word-break: keep-all;
}

.operation-card p,
.brand-value-card p {
  margin: auto 0 0;
  color: var(--brand-muted);
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
}

.ippeo-bridge {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 7vw;
  align-items: center;
}

.ippeo-bridge__logo {
  padding: 56px;
  border-radius: 32px;
  background: #fff0fa;
}

.ippeo-bridge__logo img {
  width: min(100%, 420px);
  margin: auto;
}

.ippeo-bridge h2 {
  margin-top: 14px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.1;
  word-break: keep-all;
}

.ippeo-bridge p {
  color: var(--brand-muted);
  font-size: 18px;
  line-height: 1.8;
  word-break: keep-all;
}

.brand-definition {
  padding: 50px;
  border: 1px solid rgba(22, 162, 181, .24);
  border-radius: 28px;
  background: linear-gradient(135deg, #fff, #edf9fa);
}

.brand-definition p {
  max-width: 980px;
  margin: 18px 0 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 750;
  line-height: 1.55;
  word-break: keep-all;
}

.brand-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a303a, #0b5b68);
  color: #fff;
}

.brand-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand-cta h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  word-break: keep-all;
}

.brand-cta p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #c8dade;
  line-height: 1.75;
  word-break: keep-all;
}

/* Brand story editorial narrative */
.story-intro,
.story-chapter {
  position: relative;
  padding: clamp(96px, 9vw, 152px) 0;
}

.story-reading-width {
  max-width: 1180px;
}

.story-eyebrow {
  display: block;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.story-display {
  max-width: 1080px;
  margin: 24px 0 54px;
  font-size: clamp(52px, 6.2vw, 94px);
  line-height: 1.04;
  letter-spacing: -.065em;
  word-break: keep-all;
}

.story-lead-copy,
.story-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 7vw, 110px);
}

.story-lead-copy p,
.story-two-column p,
.story-section-intro {
  margin: 0;
  color: var(--brand-muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.85;
  word-break: keep-all;
}

.story-lead-copy p:first-child,
.story-two-column .story-big-copy {
  color: var(--brand-ink);
  font-size: clamp(22px, 2.25vw, 34px);
  font-weight: 720;
  line-height: 1.58;
  letter-spacing: -.03em;
}

.story-manifesto {
  position: relative;
  margin: clamp(72px, 8vw, 128px) 0 0;
  padding: clamp(42px, 7vw, 90px);
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 102, 204, .22), transparent 30%),
    linear-gradient(135deg, #082b34, #0a6978);
  color: #fff;
}

.story-manifesto::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -210px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .035), 0 0 0 140px rgba(255, 255, 255, .02);
}

.story-manifesto span,
.story-manifesto strong {
  position: relative;
  z-index: 1;
  display: block;
}

.story-manifesto span {
  color: #95e4eb;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
}

.story-manifesto strong {
  max-width: 900px;
  margin-top: 22px;
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 1.14;
  letter-spacing: -.055em;
  word-break: keep-all;
}

.story-chapter {
  border-top: 1px solid #dfe9eb;
}

.story-chapter--soft {
  background: #f4f9fa;
}

.story-chapter--ink {
  border-top: 0;
  background: #082d37;
  color: #fff;
}

.story-chapter-head {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-bottom: clamp(50px, 6vw, 90px);
}

.story-index {
  color: var(--brand-pink);
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 900;
  line-height: .85;
  letter-spacing: -.075em;
}

.story-chapter-head h2,
.story-ippeo-copy h2 {
  max-width: 1080px;
  margin: 16px 0 0;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.08;
  letter-spacing: -.06em;
  word-break: keep-all;
}

.story-chapter--ink .story-two-column p:not(.story-big-copy) {
  color: #bdd0d4;
}

.story-chapter--ink .story-two-column .story-big-copy {
  color: #fff;
}

.story-connection,
.story-transform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: clamp(56px, 7vw, 94px) 0 0;
  padding: 30px 28px;
  border: 1px solid #dbe7e9;
  border-radius: 999px;
  background: #fff;
}

.story-connection span {
  color: var(--brand-ink);
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 800;
  white-space: nowrap;
}

.story-connection i {
  width: min(7vw, 92px);
  height: 1px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-pink));
}

.story-transform {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
}

.story-transform span,
.story-transform strong {
  font-size: clamp(22px, 3.1vw, 46px);
  font-weight: 850;
  letter-spacing: -.04em;
}

.story-transform strong {
  color: #88e0e7;
}

.story-transform i {
  color: var(--brand-pink);
  font-style: normal;
}

.story-more {
  margin-top: clamp(42px, 5vw, 72px);
  border-top: 1px solid #bfcfd3;
  border-bottom: 1px solid #bfcfd3;
}

.story-more summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  color: var(--brand-ink);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 800;
  user-select: none;
}

.story-more summary::-webkit-details-marker,
.story-accordion-group summary::-webkit-details-marker {
  display: none;
}

.story-more summary b,
.story-accordion-group summary b {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.story-more summary b::before,
.story-more summary b::after,
.story-accordion-group summary b::before,
.story-accordion-group summary b::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.story-more summary b::after,
.story-accordion-group summary b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.story-more[open] summary b::after,
.story-accordion-group details[open] summary b::after {
  transform: translate(-50%, -50%) rotate(0);
}

.story-more-body {
  max-width: 1080px;
  padding: 6px 0 42px;
}

.story-more-body p {
  margin: 0 0 18px;
  color: var(--brand-muted);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.story-more--dark {
  border-color: rgba(255, 255, 255, .24);
}

.story-more--dark summary {
  color: #fff;
}

.story-more--dark .story-more-body p {
  color: #bdd0d4;
}

.story-chapter--ippeo {
  overflow: hidden;
  border-top: 0;
  background: linear-gradient(135deg, #fff7fc, #f6ffff);
}

.story-ippeo-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.story-ippeo-copy .story-index,
.story-ippeo-copy .story-eyebrow {
  display: block;
}

.story-ippeo-copy .story-eyebrow {
  margin-top: 28px;
}

.story-ippeo-copy > p:not(.story-big-copy) {
  margin: 24px 0 0;
  color: var(--brand-muted);
  font-size: 17px;
  line-height: 1.82;
  word-break: keep-all;
}

.story-ippeo-copy .actions {
  margin-top: 30px;
}

.story-ippeo-visual {
  position: relative;
  min-height: 650px;
  border-radius: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, .95), transparent 28%),
    linear-gradient(155deg, #ffceef 0%, #fff2fb 42%, #e8fdff 100%);
}

.story-ippeo-visual img:first-child {
  position: absolute;
  top: 48px;
  left: 48px;
  z-index: 2;
  width: min(42%, 250px);
}

.story-ippeo-visual img:last-child {
  position: absolute;
  right: -40%;
  bottom: -2%;
  width: 180%;
  max-width: none;
}

.story-journey {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: clamp(60px, 7vw, 100px);
  border-top: 1px solid #abc3c8;
  border-bottom: 1px solid #abc3c8;
}

.story-journey article {
  position: relative;
  min-width: 0;
  padding: 30px 16px 34px;
  border-right: 1px solid #d6e2e4;
}

.story-journey article:last-child {
  border-right: 0;
  background: #e8fafb;
}

.story-journey article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 41px;
  right: -5px;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-pink);
}

.story-journey span {
  display: block;
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 900;
}

.story-journey strong {
  display: block;
  margin-top: 20px;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.25;
  word-break: keep-all;
}

.story-operation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 50px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  counter-reset: operation;
}

.story-operation-list li {
  position: relative;
  padding: 15px 0 15px 38px;
  border-bottom: 1px solid #dce7e9;
  color: var(--brand-ink);
  counter-increment: operation;
}

.story-operation-list li::before {
  content: counter(operation, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: var(--brand-pink);
  font-size: 12px;
  font-weight: 900;
}

.story-dual-purpose {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}

.story-dual-purpose > article {
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid #dbe7e9;
  border-radius: 30px;
  background: #fff;
}

.story-dual-purpose article:first-child {
  border-color: rgba(255, 102, 204, .28);
}

.story-dual-purpose article:last-child {
  border-color: rgba(22, 162, 181, .3);
}

.story-dual-purpose article span,
.story-mission-vision article span,
.story-promises article span {
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.story-dual-purpose article:first-child span {
  color: #d84ca9;
}

.story-dual-purpose h3 {
  margin: 46px 0 16px;
  font-size: clamp(30px, 3vw, 44px);
}

.story-dual-purpose p {
  margin: 0;
  color: var(--brand-muted);
  line-height: 1.75;
  word-break: keep-all;
}

.story-dual-purpose > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--brand-primary-dark);
  font-size: 12px;
  letter-spacing: .1em;
}

.story-dual-purpose > div i {
  width: 30px;
  height: 1px;
  background: var(--brand-primary);
}

.story-section-intro {
  max-width: 850px;
  margin: -32px 0 58px;
}

.story-accordion-group {
  border-top: 1px solid #aebfc3;
}

.story-accordion-group details {
  border-bottom: 1px solid #c8d6d9;
}

.story-accordion-group summary {
  display: grid;
  grid-template-columns: 72px minmax(220px, 1fr) minmax(220px, .8fr) 32px;
  gap: 26px;
  align-items: center;
  min-height: 104px;
  cursor: pointer;
  list-style: none;
  color: var(--brand-ink);
}

.story-accordion-group summary > span {
  color: var(--brand-pink);
  font-size: 13px;
  font-weight: 900;
}

.story-accordion-group summary > strong {
  font-size: clamp(20px, 2vw, 28px);
  word-break: keep-all;
}

.story-accordion-group summary > em {
  color: var(--brand-muted);
  font-style: normal;
  word-break: keep-all;
}

.story-accordion-group details > p {
  max-width: 900px;
  margin: 0 0 36px 98px;
  color: var(--brand-muted);
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}

.story-chapter--identity {
  background: #fff;
}

.story-definition {
  padding: clamp(40px, 6vw, 82px);
  border-radius: 34px;
  background: linear-gradient(135deg, #082d37, #0c6f7e);
  color: #fff;
}

.story-definition p {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(31px, 4vw, 58px);
  font-weight: 560;
  line-height: 1.4;
  letter-spacing: -.04em;
  word-break: keep-all;
}

.story-definition strong {
  color: #9ceaf0;
}

.story-definition small {
  display: block;
  max-width: 850px;
  margin-top: 28px;
  color: #c5dade;
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
}

.story-mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.story-mission-vision article {
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid #dbe7e9;
  border-radius: 28px;
}

.story-mission-vision h3 {
  margin: 38px 0 20px;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.28;
  letter-spacing: -.04em;
  word-break: keep-all;
}

.story-mission-vision p {
  margin: 0;
  color: var(--brand-muted);
  line-height: 1.78;
  word-break: keep-all;
}

.story-promises {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.story-promises article {
  padding: 26px;
  border-radius: 20px;
  background: #f1f8f9;
}

.story-promises strong {
  display: block;
  margin-top: 20px;
  line-height: 1.65;
  word-break: keep-all;
}

.story-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.story-values span {
  padding: 11px 18px;
  border: 1px solid rgba(22, 162, 181, .32);
  border-radius: 999px;
  color: var(--brand-primary-dark);
  font-weight: 800;
}

.story-essence {
  padding: clamp(110px, 12vw, 190px) 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .86) 48%, rgba(255, 255, 255, .1) 82%),
    url("medihim-brand-flow-20260718.png") right center / cover no-repeat,
    #f5faf9;
}

.story-essence h2 {
  margin: 20px 0 32px;
  font-size: clamp(58px, 8vw, 116px);
  line-height: 1;
  letter-spacing: -.075em;
}

.story-essence p {
  max-width: 820px;
  margin: 0;
  color: var(--brand-muted);
  font-size: clamp(17px, 1.65vw, 23px);
  line-height: 1.85;
  word-break: keep-all;
}

.story-essence > .wrap > strong {
  display: block;
  margin-top: 50px;
  color: var(--brand-ink);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.35;
  letter-spacing: -.045em;
}

.story-essence .actions {
  margin-top: 38px;
}

@media (max-width: 980px) {
  .brand-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .choice-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .choice-flow article:nth-child(3) {
    border-right: 0;
  }

  .choice-flow article:nth-child(3)::after {
    display: none;
  }

  .choice-flow article:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .operation-grid,
  .brand-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ippeo-bridge {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .brand-hero {
    min-height: 760px;
    align-items: flex-start;
  }

  .brand-hero__image {
    top: auto;
    right: -30%;
    bottom: -2%;
    width: 150%;
    height: 59%;
    object-fit: cover;
    object-position: 55% bottom;
    animation-duration: 24s;
  }

  .brand-hero__wash {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .98) 48%, rgba(255, 255, 255, .6) 68%, rgba(255, 255, 255, .08) 100%);
  }

  .brand-hero__sweep {
    top: 48%;
  }

  .brand-hero__bloom {
    left: 40%;
    top: 82%;
    width: 94px;
    height: 94px;
  }

  .brand-hero__particle:nth-child(n+9) {
    display: none;
  }

  .brand-hero__copy {
    width: 100%;
    padding: 62px 0 320px;
  }

  .brand-hero h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .brand-hero__lead {
    font-size: 20px;
  }

  .brand-hero__support {
    font-size: 14px;
  }

  .brand-section {
    padding: 78px 0;
  }

  .brand-story-grid,
  .brand-promise-grid,
  .brand-mission-grid,
  .operation-grid,
  .brand-value-grid {
    grid-template-columns: 1fr;
  }

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

  .choice-flow article {
    padding: 24px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .choice-flow article:nth-child(n) {
    border-top: 0;
  }

  .choice-flow article:last-child {
    border-bottom: 0;
  }

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

  .operation-card,
  .brand-value-card {
    min-height: 0;
  }

  .operation-card p,
  .brand-value-card p {
    margin-top: 16px;
  }

  .ippeo-bridge__logo {
    padding: 34px;
  }

  .brand-definition {
    padding: 32px 24px;
  }

  .brand-cta__inner {
    display: block;
  }

  .brand-cta .actions {
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-hero__image,
  .brand-hero__sweep,
  .brand-hero__bloom,
  .brand-hero__particle,
  .brand-hero .brand-signal,
  .brand-hero h1,
  .brand-hero__lead,
  .brand-hero__support,
  .brand-hero .actions {
    animation: none !important;
  }

  .brand-hero .brand-signal,
  .brand-hero h1,
  .brand-hero__lead,
  .brand-hero__support,
  .brand-hero .actions {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .story-ippeo-grid {
    grid-template-columns: 1fr;
  }

  .story-ippeo-visual {
    min-height: 560px;
  }

  .story-journey {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .story-journey article:nth-child(4) {
    border-right: 0;
  }

  .story-journey article:nth-child(n+5) {
    border-top: 1px solid #d6e2e4;
  }

  .story-dual-purpose {
    grid-template-columns: 1fr;
  }

  .story-dual-purpose > div {
    min-height: 44px;
  }

  .story-dual-purpose > div i {
    width: 70px;
  }
}

@media (max-width: 700px) {
  .story-intro,
  .story-chapter {
    padding: 82px 0;
  }

  .story-display {
    margin-bottom: 38px;
    font-size: clamp(42px, 13vw, 60px);
  }

  .story-lead-copy,
  .story-two-column,
  .story-mission-vision,
  .story-promises {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-lead-copy p:first-child,
  .story-two-column .story-big-copy {
    font-size: 23px;
  }

  .story-manifesto {
    margin-top: 56px;
    padding: 36px 26px 110px;
    border-radius: 26px;
  }

  .story-manifesto strong {
    font-size: 35px;
  }

  .story-chapter-head {
    display: block;
    margin-bottom: 42px;
  }

  .story-index {
    display: block;
    margin-bottom: 30px;
    font-size: 64px;
  }

  .story-chapter-head h2,
  .story-ippeo-copy h2 {
    font-size: clamp(40px, 12.5vw, 56px);
  }

  .story-connection {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 24px;
    border-radius: 24px;
  }

  .story-connection span {
    padding: 16px 0;
    text-align: center;
  }

  .story-connection i {
    width: 100%;
    background: #dbe7e9;
  }

  .story-transform {
    flex-wrap: wrap;
    gap: 10px;
    padding: 26px 18px;
    border-radius: 24px;
  }

  .story-transform span,
  .story-transform strong {
    font-size: 24px;
  }

  .story-more summary {
    min-height: 74px;
  }

  .story-more-body {
    padding-bottom: 30px;
  }

  .story-ippeo-copy .story-eyebrow {
    margin-top: 0;
  }

  .story-ippeo-visual {
    min-height: 430px;
    border-radius: 28px;
  }

  .story-ippeo-visual img:first-child {
    top: 30px;
    left: 28px;
    width: 46%;
  }

  .story-ippeo-visual img:last-child {
    right: -72%;
    width: 250%;
  }

  .story-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-journey article,
  .story-journey article:nth-child(4) {
    border-right: 1px solid #d6e2e4;
    border-top: 1px solid #d6e2e4;
  }

  .story-journey article:nth-child(-n+2) {
    border-top: 0;
  }

  .story-journey article:nth-child(even) {
    border-right: 0;
  }

  .story-journey article:not(:last-child)::after {
    display: none;
  }

  .story-operation-list {
    grid-template-columns: 1fr;
  }

  .story-dual-purpose > article {
    padding: 34px 26px;
  }

  .story-section-intro {
    margin: -10px 0 38px;
  }

  .story-accordion-group summary {
    grid-template-columns: 46px minmax(0, 1fr) 28px;
    gap: 12px;
    min-height: 96px;
  }

  .story-accordion-group summary > em {
    display: none;
  }

  .story-accordion-group details > p {
    margin: 0 0 30px 58px;
    padding-right: 10px;
    font-size: 15px;
  }

  .story-definition {
    padding: 38px 26px;
    border-radius: 26px;
  }

  .story-definition p {
    font-size: 30px;
  }

  .story-mission-vision article {
    padding: 32px 25px;
  }

  .story-essence {
    padding: 100px 0 280px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, .96) 58%, rgba(255, 255, 255, .15) 82%),
      url("medihim-brand-flow-20260718.png") 52% bottom / auto 48% no-repeat,
      #f5faf9;
  }

  .story-essence h2 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .story-essence p br {
    display: none;
  }
}
