@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/noto-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/noto-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --blue:        #002233;
  --blue-900:    #001824;
  --orange:      #e55c17;
  --orange-600:  #cd4d0f;
  --orange-50:   #fdf1ea;
  --yellow:      #ffd400;
  --yellow-50:   #fff8db;
  --yellow-ink:  #877000;
  --green:       #5ba611;
  --green-700:   #3f7a0c;
  --green-50:    #f3f7ed;
  --orange-light: #f2920c;
  --green-light:  #8fbf00;
  --muted:       #5f6f78;
  --line:        #dde4e8;
  --line-strong: #c3ced5;
  --surface:     #f5f7f8;
  --white:       #ffffff;
  --r:     8px;
  --r-sm:  6px;
  --r-btn: 4px;
  --header-h: 76px;
  --font: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --section-y: 4.5rem;
}

@media (max-width: 1199.98px) { :root { --section-y: 3.75rem; } }
@media (max-width: 767.98px)  { :root { --section-y: 2.75rem; } }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--muted);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--blue);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.022em;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }
img { max-width: 100%; height: auto; display: block; }

a { color: var(--orange); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange-600); }

::selection { background: var(--orange); color: #fff; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--r-btn);
}
.on-dark :focus-visible { outline-color: #fff; }

.container { max-width: 1240px; padding-inline: 24px; }

.skip-link {
  position: absolute;
  left: 24px;
  top: -100px;
  z-index: 1040;
  padding: .7rem 1.1rem;
  background: var(--blue);
  color: #fff;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--r-btn);
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

section[id], header[id] {
  scroll-margin-top: calc(var(--header-h) - var(--section-y) + 1.75rem);
}

.display-1x { font-size: clamp(2rem, 6.6vw, 3.5rem); line-height: 1.1; letter-spacing: -.032em; }
.h-section  { font-size: clamp(1.7rem, 4.2vw, 2.75rem); line-height: 1.14; }
.h-card     { font-size: clamp(1.125rem, 2vw, 1.3125rem); line-height: 1.32; }
.lead-lg    { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); line-height: 1.62; }

.hero-content { max-width: 790px; }
.hero-copy    { max-width: 66ch; }

.eyebrow {
  margin-bottom: .85rem;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow-light { color: #ffb98c; }
.eyebrow-green { color: var(--green-700); }

@media (max-width: 575.98px) {
  body { font-size: 1rem; }

  h1, h2, h3, .h-section, .h-card, .display-1x { hyphens: auto; }
}

.on-dark { color: rgba(255, 255, 255, .82); }
.on-dark :is(h1,h2,h3,h4,h5,h6) { color: #fff; }
.on-dark p { color: rgba(255, 255, 255, .84); }

.btn {
  --bs-btn-focus-box-shadow: none;
  font-weight: 600;
  border-radius: var(--r-btn);
  padding: .85rem 1.6rem;
  box-shadow: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: none; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }

.btn-brand {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #fff;
}
.btn-brand:hover, .btn-brand:focus-visible {
  background: var(--orange-600);
  border-color: var(--orange-600);
  color: #fff;
}

@media (max-width: 575.98px) {
  .hero .btn-lg,
  .cta-panel .btn-lg { display: block; width: 100%; text-align: center; }
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: border-color .25s ease;
}
.site-nav.is-stuck { border-bottom-color: var(--line-strong); }
.site-nav .navbar {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .75rem 0;
}
.site-nav .navbar-brand img { height: 30px; width: auto; }

.nav-links { margin-left: auto; align-items: center; gap: 1.35rem; }
.nav-links a {
  position: relative;
  padding-block: .35rem;
  color: var(--blue);
  font-size: .9375rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.is-active { color: var(--orange); }
.nav-links a.is-active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.nav-actions { display: flex; align-items: center; gap: .8rem; margin-left: auto; }
.nav-links + .nav-actions { margin-left: 0; }
.nav-cta { white-space: nowrap; }

@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-nav .navbar { gap: 1rem; }
  .nav-links { gap: .9rem; }
  .nav-links a { font-size: .875rem; }
  .nav-actions { gap: .6rem; }
  .nav-cta { padding: .75rem 1.15rem; font-size: .9375rem; }
}

.lang-switch { display: flex; align-items: center; gap: .3rem; }
.lang-btn {
  position: relative;
  background: none;
  border: 0;
  padding: .25rem .3rem;
  font: inherit;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--muted);
  cursor: pointer;
  border-radius: var(--r-btn);
  transition: color .2s ease;
}

.lang-btn::after {
  content: "";
  position: absolute;
  inset: -9px -7px;
}
.lang-btn:hover { color: var(--orange); }
.lang-btn.is-active {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.lang-sep { color: var(--line-strong); font-size: .8125rem; }

@media (max-width: 575.98px) {
  .site-nav .navbar { flex-wrap: nowrap; gap: .55rem; }
  .site-nav .navbar-brand { min-width: 0; }
  .site-nav .navbar-brand img { height: 26px; }
  .nav-actions { gap: .45rem; flex: none; }
  .nav-cta { padding: .68rem 1.05rem; font-size: .9375rem; }
}
@media (max-width: 400px) {
  .site-nav .navbar-brand img { height: 24px; }
  .lang-sep { display: none; }
  .lang-btn { font-size: .75rem; padding: .2rem .15rem; }
  .nav-cta { padding: .6rem .9rem; font-size: .875rem; }
}

[hidden] { display: none !important; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5vw, 68px) 0 var(--section-y);
  background: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -165px;
  width: 48vw;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 34, 51, .04);
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.portrait {
  max-width: 390px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--r);
  background: #eaf1f6;
  border: 1px solid var(--line);
}

@media (min-width: 1200px) {
  .hero .row { --bs-gutter-x: 3rem; align-items: flex-start !important; }
  .hero-title { font-size: clamp(2.7rem, 3.6vw, 3.05rem); line-height: 1.1; }
  .hero-title span { display: block; white-space: nowrap; }
  .hero-portrait-col { display: flex; justify-content: flex-end; padding-top: 52px; }
  .hero .portrait { margin-inline: 0; }
}
@media (max-width: 1199.98px) {
  .hero-title span { display: inline; }
}

.section { padding: var(--section-y) 0; }
.section-surface { background: var(--surface); }
.section-blue    { background: var(--blue); }
.section-green   { background: var(--green-50); }

.section-heading { max-width: 820px; margin-bottom: 2.5rem; }
.section-heading .h-section { margin-bottom: 1rem; }
.section-intro { margin-top: 1.35rem; max-width: 40ch; }

@media (min-width: 992px) {
  .aside-sticky { position: sticky; top: calc(var(--header-h) + 34px); }
}
@media (max-width: 991.98px) {
  .aside-sticky { margin-bottom: .5rem; }
  .section-intro { max-width: 62ch; }
}

.scenario-list { display: grid; gap: 1.15rem; }
.scenario {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.65rem 1.8rem;
}
.scenario-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--orange-50);
  color: var(--orange);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.scenario-body .h-card { margin-bottom: .6rem; }
.scenario-body p + p { margin-top: .75rem; }

@media (max-width: 575.98px) {
  .scenario { grid-template-columns: 1fr; gap: .35rem; padding: 1.4rem; }
}

.perspective-layout { --bs-gutter-y: 2.5rem; }
.perspective-copy { max-width: 590px; }

.perspective-visual { display: flex; align-items: center; }
@media (min-width: 992px) {
  .perspective-visual { align-self: stretch; }
}

@media (min-width: 1200px) {
  .perspective-copy   { flex: 0 0 45.5%; max-width: 45.5%; }
  .perspective-visual { flex: 0 0 54.5%; max-width: 54.5%; }
  .perspective-copy .h-section { font-size: 2.6rem; line-height: 1.12; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .perspective-copy .h-section { font-size: 2.05rem; }
}

.perspective-map {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.perspective-map span {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
}
.perspective-map span:nth-child(2),
.perspective-map span:nth-child(4),
.perspective-map span:nth-child(9) { border-color: var(--orange-light); }
.perspective-map span:nth-child(5),
.perspective-map span:nth-child(6) { border-color: var(--green-light); }

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3.25rem;
}

.principle {
  padding: 1.15rem 0 0;
  border: 0;
  border-top: 3px solid var(--orange);
  border-radius: 0;
  background: none;
}
.principle:nth-child(2) { border-top-color: var(--yellow); }
.principle:nth-child(3) { border-top-color: var(--green); }
.principle h3 { font-size: 1.1875rem; margin-bottom: .65rem; }
.principle p { font-size: .9875rem; max-width: 34ch; }

.start-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.start-card {
  padding: 1.75rem 1.85rem 1.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.start-label {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.start-step {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--orange-50);
  color: var(--orange);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.start-card + .start-card .start-step {
  background: var(--yellow-50);
  color: var(--yellow-ink);
}

.start-card h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); margin-bottom: 1rem; }
.start-card p + p { margin-top: .9rem; }
.start-note {
  margin-top: 1.2rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: .9875rem;
  font-weight: 600;
}

.decision-box {
  margin-top: 1.5rem;
  padding: 1.7rem 1.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.decision-title { color: var(--blue); font-weight: 700; margin-bottom: .8rem; }
.decision-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem 0;
  margin-bottom: .95rem;
  color: var(--blue);
  font-size: .9375rem;
  font-weight: 600;
}
.decision-options span { display: inline-flex; align-items: center; }
.decision-options span:not(:last-child)::after {
  content: "—";
  margin: 0 .65rem;
  color: var(--line-strong);
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .start-grid { grid-template-columns: 1fr; }
}

.workfield-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.workfield-card {
  padding: 1.75rem 1.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.workfield-card h3 { font-size: clamp(1.1875rem, 2.2vw, 1.4375rem); margin-bottom: .9rem; }

.workfield-close {
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(91, 166, 17, .3);
  text-align: center;
  color: var(--blue);
  font-size: 1.0625rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .workfield-grid { grid-template-columns: 1fr; }
}

.experience-shell {
  padding: clamp(1.75rem, 4vw, 3.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.experience-note {
  padding: 1.9rem;
  border-radius: var(--r);
  background: var(--blue);
  color: rgba(255, 255, 255, .82);
}
.experience-note p { color: rgba(255, 255, 255, .82); }
.experience-quote {
  color: #fff;
  font-size: 1.3125rem;
  line-height: 1.45;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-panel {
  background: var(--blue);
  border-radius: var(--r);
  padding: clamp(1.75rem, 5vw, 4rem);
}

.site-footer { background: var(--blue-900); color: rgba(255, 255, 255, .72); }
.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 1.1rem;
}
.site-footer p, .site-footer a { color: rgba(255, 255, 255, .72); }
.site-footer a:hover { color: #fff; }

.site-footer a { overflow-wrap: anywhere; }

.site-footer .footer-top { padding-block: clamp(44px, 5.5vw, 68px) 2.5rem; }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1.5rem 0;
  font-size: .9375rem;
}
.footer-main { max-width: 980px; margin-inline: auto; }
.footer-logo { width: 184px; height: auto; }
.footer-link-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }

.footer-link-list a { display: inline-block; padding-block: .3rem; }

.social-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-sm);
  color: #fff !important;
  transition: background-color .2s ease, border-color .2s ease;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); }
.social-btn .icon { font-size: 1.125rem; }
.footer-bottom .heart { display: inline-block; color: var(--orange); font-size: .8125rem; vertical-align: -.1em; }

@media (max-width: 575.98px) {
  .footer-logo { width: 168px; }
}

.page-header {
  padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 4vw, 48px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.legal { padding: clamp(48px, 6vw, 72px) 0 var(--section-y); }
.legal h2 { font-size: 1.5rem; margin: 2.75rem 0 .9rem; }
.legal h3 { font-size: 1.1875rem; margin: 2rem 0 .75rem; }
.legal h4 { font-size: 1.0625rem; margin: 1.5rem 0 .5rem; }
.legal p, .legal li { max-width: 74ch; }
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.legal li { margin-bottom: .5rem; }
.legal a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(229, 92, 23, .4);
  overflow-wrap: anywhere;
  transition: text-decoration-color .2s ease, color .2s ease;
}
.legal a:hover { text-decoration-color: currentColor; }
.legal > *:first-child { margin-top: 0; }

html[data-reveal] .reveal {
  opacity: 0;
  transition: opacity .6s cubic-bezier(.22, .61, .36, 1);
}
html[data-reveal] .reveal.is-visible { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html[data-reveal] .reveal { opacity: 1; transition: none; }
}

@media print {
  html[data-reveal] .reveal { opacity: 1 !important; }
  .site-nav { position: static; }
}

@media (max-width: 991.98px) {
  .principle-grid { grid-template-columns: 1fr; }
  .perspective-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portrait { max-width: 460px; }
}

@media (max-width: 575.98px) {
  .container { padding-inline: 18px; }
  .row.g-5 { --bs-gutter-x: 2.25rem; }

  .display-1x { font-size: clamp(1.95rem, 9vw, 2.6rem); }
  .hero { padding-top: 32px; }
  .perspective-map { grid-template-columns: 1fr; }
  .perspective-map span { min-height: 62px; padding: .85rem .95rem; font-size: .9375rem; }
  .start-card, .workfield-card, .decision-box { padding: 1.4rem; }
  .experience-note { padding: 1.4rem; }
}
