:root {
  --navy: #0a2342;
  --navy-mid: #123056;
  --blue: #1c6fb8;
  --cyan: #3eb6e8;
  --ink: #182433;
  --muted: #5c6b7d;
  --paper: #f3f6fa;
  --white: #ffffff;
  --line: rgba(10, 35, 66, 0.1);
  --shadow: 0 18px 50px rgba(10, 35, 66, 0.08);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --max: 900px;
  --header-h: 76px;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/outfit-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;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/outfit-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: "Fraunces";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("../fonts/fraunces-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;
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("../fonts/fraunces-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 Serif TC";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("../fonts/noto-serif-tc.woff2") format("woff2");
}

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

html {
  scroll-behavior: smooth;
  -webkit-user-select: none;
  user-select: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--navy);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--navy);
}

.brand:hover {
  color: var(--navy);
}

.brand img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}

.brand-tagline {
  margin: 0;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--blue);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
}

.nav a:hover,
.nav a.is-active {
  background: rgba(28, 111, 184, 0.1);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 8px;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: min(82vh, 780px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0 0 96px;
  color: var(--white);
  overflow: hidden;
  background-color: var(--navy);
  background-position: center 58%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(62, 182, 232, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(6, 22, 40, 0.25) 0%, rgba(6, 22, 40, 0.82) 100%);
}

.hero-credit {
  position: absolute;
  right: 24px;
  bottom: 16px;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(6, 22, 40, 0.55);
}

.page-hero .hero-credit {
  color: var(--muted);
}

.hero-credit [lang="zh-Hant"] {
  font-family: "Noto Serif TC", "Songti TC", "STSong", serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding-right: 0.18em;
}

.hero-copy {
  position: relative;
  padding: 48px 0 0;
}

.kicker {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-hero .kicker,
.section-head .kicker {
  color: var(--blue);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy);
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(40px, 7vw, 78px);
}

.lede {
  margin: 0 0 40px;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.page-hero {
  padding: 72px 0 36px;
  background:
    radial-gradient(circle at 90% 0%, rgba(62, 182, 232, 0.16), transparent 36%),
    linear-gradient(180deg, #eaf1f8 0%, var(--paper) 100%);
}

.page-hero--harbour {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  min-height: min(82vh, 780px);
  padding: 96px 0 96px;
  color: var(--white);
  background-color: var(--navy);
  background-image: url("../img/about-harbour.jpg");
  background-size: cover;
  background-position: 36% 33%;
  background-repeat: no-repeat;
}

.page-hero--harbour::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(62, 182, 232, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(6, 22, 40, 0.38) 0%, rgba(6, 22, 40, 0.62) 100%);
}

.page-hero--harbour .wrap {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.page-hero.page-hero--harbour .kicker {
  color: var(--cyan);
}

.page-hero.page-hero--harbour h1,
.page-hero.page-hero--harbour .about-hero-copy p,
.page-hero.page-hero--harbour .about-hero-aside p {
  color: var(--white);
}

.page-hero--harbour .test-sign {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.page-hero-compact {
  padding-bottom: 12px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 60px);
}

.about-hero-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.about-hero-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.about-hero-copy h1 {
  margin: 0 0 12px;
}

.about-hero-copy p + p {
  margin-top: 12px;
}

.about-hero-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 220px;
  gap: 0;
  padding-top: 8px;
}

.about-hero-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.test-sign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.about-hero-aside p {
  margin: 0;
  max-width: none;
  font-size: 15px;
  line-height: 1.5;
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
}

.page-hero .hero-line {
  max-width: none;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
}

.btn-primary:hover {
  background: #67c8ef;
  color: var(--navy);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.section {
  padding: 80px 0;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
}

.section-head p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.card p,
.card li {
  color: var(--muted);
}

.stat {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--blue);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
  gap: 12px;
}

.logo-grid a {
  display: block;
  color: inherit;
}

.logo-grid a:hover img {
  border-color: var(--blue);
}

.logo-grid img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}

.logo-grid img.logo-on-dark {
  background: #111;
  border-color: #111;
}

.logo-grid img.logo-millscope {
  background: #5c5c5c;
  border-color: #5c5c5c;
  padding: 18px;
}

.logo-grid img.logo-shld {
  padding: 20px 16px;
}

.year-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 8px;
}

.year-tabs a {
  min-width: 88px;
  padding: 10px 16px;
  border-radius: 999px;
  text-align: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 600;
}

.year-tabs a.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.essay {
  max-width: none;
}

.essay h2 {
  margin: 40px 0 16px;
  font-size: 32px;
}

.essay h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.essay p,
.essay li {
  color: #314155;
}

.essay ol {
  margin: 0 0 8px;
  padding-left: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}

.essay ul {
  margin: 0 0 22px;
  padding-left: 1.2rem;
}

.essay ul ul {
  margin: 8px 0 12px;
}

.essay li + li {
  margin-top: 6px;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 28px;
}

.site-footer a {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.footer-brand .kicker {
  margin-bottom: 0;
}

.footer-names {
  margin-top: auto;
}

.footer-brand h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-zh {
  margin: 8px 0 0;
  color: var(--white);
  font-family: "Noto Serif TC", "Songti TC", "STSong", serif;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.copyable,
.copyable * {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

.footer-meta {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-meta a {
  color: var(--cyan);
}

.footer-meta a[href^="http"] {
  color: inherit;
}

.footer-meta a[href^="http"]:hover {
  color: var(--cyan);
}

.footer-address {
  font-size: 17px;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px 24px;
  padding-top: 20px;
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-updated {
  margin: 0 0 0 auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  text-align: right;
}

.desk-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.desk-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.desk-jump a,
.desk-filter {
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.desk-jump a:hover,
.desk-filter:hover,
.desk-filter.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.desk-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.desk-filter {
  cursor: pointer;
  font-family: inherit;
}

.desk-note {
  margin: 0 0 40px;
  max-width: 46rem;
  color: var(--muted);
  font-size: 15px;
}

.desk-group {
  margin-bottom: 56px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

#ai-portfolio {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.desk-group-head {
  margin-bottom: 20px;
}

.desk-group-head h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 36px);
}

.desk-group-head p:last-child {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
}

.desk-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.monitor-window {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.monitor-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 20px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.monitor-title {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.monitor-meta {
  font-size: 12px;
  letter-spacing: 0.04em;
}

.monitor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.monitor-tile {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.monitor-tile[hidden] {
  display: none;
}

.tile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.cadence {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cadence-daily {
  background: rgba(62, 182, 232, 0.18);
  color: #0f6f96;
}

.cadence-weekly {
  background: rgba(28, 111, 184, 0.14);
  color: var(--blue);
}

.cadence-monthly {
  background: rgba(10, 35, 66, 0.1);
  color: var(--navy);
}

.cadence-yearly {
  background: rgba(92, 107, 125, 0.14);
  color: var(--muted);
}

.tile-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.monitor-tile h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.tile-why {
  margin: 0 0 10px;
  min-height: 3.2em;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.tile-value {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.spark {
  display: block;
  width: 100%;
  height: 36px;
  margin-top: 8px;
  color: var(--cyan);
}

.spark polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mmap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.mmap-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mmap-hub {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
}

.mmap-hub span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mmap-hub strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.mmap-arms {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: none;
  border-left: 2px solid var(--line);
}

.mmap-arms li {
  position: relative;
  padding: 0 0 16px 16px;
}

.mmap-arms li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: -16px;
  width: 16px;
  height: 2px;
  background: var(--line);
}

.mmap-arms li[hidden] {
  display: none;
}

.mmap-arm {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.mmap-leaves {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mmap-leaves span {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.portfolio-column {
  max-width: var(--max);
  margin-inline: auto;
}

.page-hero .portfolio-column p {
  max-width: none;
}

.portfolio-list {
  display: grid;
  gap: 28px;
}

.portfolio-list .section-head {
  margin-bottom: 0;
}

.portfolio-item {
  min-width: 0;
  padding: 32px;
}

.portfolio-item .kicker {
  color: var(--blue);
  max-width: 100%;
  line-height: 1.5;
}

.portfolio-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0 0 16px;
}

.portfolio-item-head .kicker {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  overflow-wrap: anywhere;
}

.portfolio-item-head .actions {
  margin: 0 0 0 auto;
  flex: 0 0 auto;
}

.portfolio-item-head .btn {
  white-space: nowrap;
}

.portfolio-logo {
  height: 56px;
  width: auto;
  margin: 0 0 18px;
  background: transparent;
}

.portfolio-zh {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: "Noto Serif TC", "Songti TC", "STSong", serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.35;
}

.portfolio-item h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 34px);
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.portfolio-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.portfolio-item p {
  margin: 0 0 14px;
}

.portfolio-item p:last-of-type {
  margin-bottom: 0;
}

.portfolio-item > .actions {
  margin-top: 22px;
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 12px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }
}

@media (max-width: 860px) {
  .grid-3,
  .grid-2,
  .footer-grid,
  .desk-split {
    grid-template-columns: 1fr;
  }

  .brand-tagline {
    letter-spacing: 0.08em;
  }

  .footer-brand h2 {
    font-size: clamp(11px, 3.2vw, 18px);
  }

  .about-hero-row {
    flex-direction: column;
    gap: 36px;
  }

  .about-hero-aside {
    flex: 1 1 auto;
    padding-top: 0;
  }
}

.popup-page {
  background: var(--paper);
}

.popup-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.popup-bar .kicker {
  margin: 0 0 8px;
}

.popup-bar h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
}

.popup-bar-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.workflow-steps li[aria-hidden="true"] {
  border: 0;
  background: transparent;
  padding: 0 2px;
  min-height: 0;
  color: var(--muted);
}

.framework-lead {
  margin: 0 0 16px;
  max-width: 46rem;
  color: var(--muted);
}

.framework-map {
  margin: 0 0 36px;
  background: var(--white);
  border: 1px solid var(--line);
}

.framework-map img {
  display: block;
  width: 100%;
  height: auto;
}

.impulse-note {
  margin: 20px 0 0;
  padding: 14px 16px;
  border: 1px dashed var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
}

@media (max-width: 560px) {
  .hero {
    min-height: min(72vh, 620px);
    padding-bottom: 72px;
  }

  .page-hero--harbour {
    min-height: min(72vh, 620px);
    padding: 72px 0 72px;
  }

  .hero-credit {
    right: 16px;
    bottom: 12px;
  }

  .brand-tagline {
    white-space: normal;
    max-width: 16em;
    letter-spacing: 0.08em;
  }

  .monitor-grid {
    grid-template-columns: 1fr;
  }
}
