@font-face {
  font-family: Barlow;
  src: url("assets/fonts/barlow-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
:root {
  --teal: #0f6f8f;
  --teal-hover: #105a74;
  --deep: #092733;
  --indigo: #4f46c7;
  --ink: #152034;
  --muted: #505867;
  --mist: #eef3f8;
  --wash: #f0f8fa;
  --line: #d6dde8;
  --gold: #e7d49c;
  --warm: #fbf7eb;
  --coral: #e57d64;
  --display: Barlow, "Arial Narrow", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  font-family: var(--body);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-width: 320px;
}
h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
select {
  font: inherit;
}
button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
button[hidden] {
  display: none !important;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1.6;
}
.section-index {
  font-size: 10px;
  letter-spacing: 0;
  opacity: 1;
  padding-right: 14px;
  border-right: 1px solid currentColor;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
}
h2 {
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h3 {
  font-size: 27px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.045em;
}
.light {
  color: #c4e1e8;
}
.signal-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px #87c6d818;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 18px 25px;
  min-height: 56px;
  background: var(--teal);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--teal-hover);
  transform: translateY(-2px);
}
.button svg {
  width: 20px;
  height: 20px;
}
.button-small {
  min-height: 44px;
  padding: 12px 18px;
  gap: 20px;
  font-size: 12px;
}
.button-white {
  background: #fff;
  color: var(--deep);
}
.button-white:hover {
  background: #ddeff4;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  padding-block: 10px;
}
.text-link:hover {
  color: var(--indigo);
}
.text-link svg {
  width: 20px;
}
.light-link {
  color: #fff;
}
.light-link:hover {
  color: var(--gold);
}
:focus-visible {
  outline: 3px solid #4f46c7;
  outline-offset: 5px;
}
.hero :focus-visible,
.languages :focus-visible {
  outline-color: var(--gold);
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 100;
  background: #fff;
  padding: 16px;
}
.skip-link:focus {
  top: 10px;
}
/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fffffff5;
  border-bottom: 1px solid #1520340c;
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90px;
  gap: 36px;
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 9px;
}
.brand > span {
  font-family: var(--display);
  font-size: 22px;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.brand > span > span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.01em;
  margin-top: 5px;
}
.site-header nav {
  display: flex;
  gap: 31px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}
.site-header nav > a:not(.button) {
  padding-block: 15px;
}
.site-header nav > a:not(.button):hover {
  color: var(--teal);
}
.portal-link {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--ink);
}
.menu-lines {
  width: 20px;
  height: 10px;
  border-block: 1.5px solid;
  display: inline-block;
}
/* A human voice, framed by quiet connection arcs. */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 754px;
  background: var(--deep);
  color: white;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0 0 0 27%;
  z-index: -3;
}
.hero-media {
  mask-image: linear-gradient(90deg, transparent, #000 30%);
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      #092733 0%,
      #092733fa 21%,
      #092733d6 37%,
      #09273347 67%,
      #09273325 100%
    ),
    linear-gradient(0deg, #092733e6 0%, #09273300 48%);
}
.hero-orbits {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  stroke: #ddecf01a;
  stroke-width: 1;
}
.hero-content {
  padding-top: 83px;
  padding-bottom: 99px;
}
.hero h1 {
  font-size: clamp(66px, 6.7vw, 100px);
  letter-spacing: -0.045em;
  line-height: 1.01;
  margin-top: 26px;
  max-width: 700px;
}
.hero h1 > span {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.94em;
  color: #b8dfe9;
  letter-spacing: -0.058em;
}
.hero-description {
  font-size: 16px;
  line-height: 1.75;
  color: #e1e9ec;
  margin-top: 26px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
}
.hero-actions .text-link {
  font-size: 12px;
  font-weight: 400;
  gap: 15px;
}
.hero-bottom {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: #d1e0e5;
}
.hero-note svg {
  width: 17px;
  height: 17px;
}
.video-toggle {
  display: flex;
  gap: 9px;
  align-items: center;
  border: 1px solid #ffffff55;
  border-radius: 30px;
  background: #09273380;
  color: white;
  padding: 10px 15px;
  min-height: 44px;
  font-size: 11px;
}
.play-symbol {
  width: 12px;
  text-align: center;
}
.video-toggle:hover {
  background: var(--deep);
}
.language-strip {
  background: var(--wash);
  border-bottom: 1px solid #dce8ec;
}
.language-strip-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-block: 30px;
}
.language-strip p {
  font-size: 12px;
  line-height: 1.6;
  min-width: 190px;
  color: var(--muted);
}
.language-strip p strong {
  font-weight: 600;
  color: var(--ink);
}
.language-inline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex: 1;
}
.language-inline span {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.language-inline .languages-coming {
  color: var(--muted);
  font-weight: 400;
}
.circle-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #b8cdd2;
  border-radius: 50%;
  color: var(--teal);
  flex-shrink: 0;
}
.circle-link:hover {
  background: white;
}
.circle-link svg {
  width: 19px;
}
/* Editorial content */
.section-heading > .eyebrow {
  margin-bottom: 27px;
}
.heading-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 110px;
  align-items: end;
}
.heading-columns > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
  padding-bottom: 5px;
}
.approach-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-photo {
  position: relative;
  overflow: hidden;
  border-radius: 6px 80px 6px 6px;
}
.approach-photo > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: 57% center;
  border-radius: inherit;
  transition: transform 0.6s;
}
.photo-caption {
  position: absolute;
  bottom: 23px;
  left: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 17px;
  background: #fffffff2;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}
.small-spark {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  color: var(--teal);
}
.approach-copy {
  padding-block: 16px;
}
.approach-copy h2 {
  font-size: 45px;
  line-height: 1.1;
  margin: 18px 0 22px;
}
.approach-copy > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 440px;
}
.connection-path {
  display: flex;
  align-items: center;
  margin: 32px 0 18px;
  max-width: 440px;
}
.connection-path > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  white-space: nowrap;
}
.connection-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid #cddfe5;
  background: var(--wash);
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--teal);
}
.connection-icon.hub {
  isolation: isolate;
  background: linear-gradient(145deg, #fff, #fcfaf5);
  width: 56px;
  height: 56px;
  margin-top: -8px;
  border: 1px solid #c9b68166;
  border-radius: 50%;
}
/* Keep the diffuse halo behind an opaque circular face. */
.connection-icon.hub::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: inherit;
  pointer-events: none;
}
.hub img {
  position: relative;
  z-index: 1;
  color-scheme: light;
  background: transparent;
  border-radius: 50%;
  padding: 1px;
}
.connection-path > i {
  height: 1px;
  flex: 1;
  background: #b8dfe9;
  position: relative;
  min-width: 18px;
  margin: 0 12px 23px;
}
.connection-path > i::after {
  content: "";
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translateY(-50%);
  width: 4.2px;
  height: 4.2px;
  border-radius: 50%;
  /* Match the globe signal: a 2.1px-radius gold core and 8px soft glow. */
  background: #e7d49c;
  box-shadow: 0 0 8px #e7d49c;
}
/* One unhurried 8.4s passage on scroll: caller → hub → interpreter.
   Gold signals and teal halos echo the rotating globe below. */
.connection-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid #c9a649;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
}
.connection-path.is-tracing > i::after {
  animation: connection-signal-in 8.4s ease-in-out 1;
}
.connection-path.is-tracing > i:nth-of-type(2)::after {
  animation-name: connection-signal-out;
}
.connection-path.is-tracing .hub {
  animation: connection-hub-glow 8.4s ease-in-out 1;
}
.connection-icon.hub::after {
  inset: -32px;
  z-index: -1;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    #e7d49c40 0%,
    #2387a630 30%,
    #2387a612 52%,
    #2387a600 74%
  );
  filter: blur(10px);
}
.connection-path.is-tracing .hub::after {
  animation: connection-hub-halo 8.4s ease-in-out 1;
}
.connection-path.is-tracing > div:last-of-type .connection-icon::after {
  animation: connection-arrival-ring 8.4s ease-out 1;
}
@keyframes connection-signal-in {
  0% {
    left: 0;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  35% {
    left: calc(100% - 4.2px);
    opacity: 1;
  }
  42%,
  85% {
    left: calc(100% - 4.2px);
    opacity: 0;
  }
  86% {
    left: 55%;
    opacity: 0;
  }
  100% {
    left: 55%;
    opacity: 1;
  }
}
@keyframes connection-signal-out {
  0%,
  40% {
    left: 0;
    opacity: 0;
  }
  48% {
    opacity: 1;
  }
  76% {
    left: calc(100% - 4.2px);
    opacity: 1;
  }
  83%,
  85% {
    left: calc(100% - 4.2px);
    opacity: 0;
  }
  86% {
    left: 55%;
    opacity: 0;
  }
  100% {
    left: 55%;
    opacity: 1;
  }
}
@keyframes connection-hub-glow {
  0%,
  25%,
  67%,
  100% {
    box-shadow: 0 0 0 #2387a600;
  }
  39%,
  46% {
    box-shadow:
      0 0 38px 12px #2387a61c,
      0 0 22px 5px #e7d49c26;
  }
}
@keyframes connection-hub-halo {
  0%,
  23% {
    opacity: 0;
    transform: scale(0.85);
  }
  38%,
  47% {
    opacity: 1;
    transform: scale(1.05);
  }
  73%,
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}
@keyframes connection-arrival-ring {
  0%,
  70% {
    opacity: 0;
    transform: scale(0.96);
  }
  78% {
    opacity: 0.45;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
.values-row {
  margin-top: 65px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}
.values-row > div {
  position: relative;
  padding-left: 32px;
}
.values-row > div > span {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 11px;
  color: var(--teal);
}
.values-row h3 {
  font-size: 23px;
}
.values-row p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 11px;
  max-width: 290px;
}
.situations {
  background: #f7f9fc;
}
.compact {
  margin-bottom: 46px;
}
.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.image-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s;
}
.approach-photo:hover > img,
.situation-card:hover img {
  transform: scale(1.035);
}
.image-number {
  position: absolute;
  top: 15px;
  left: 15px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  font-size: 11px;
}
.card-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-top: 23px;
}
.card-heading h3 {
  font-size: 26px;
}
.card-heading svg {
  color: var(--teal);
  width: 21px;
}
.situation-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 360px;
}
.category-note {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin-top: 21px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.story {
  background: var(--warm);
  position: relative;
  overflow: hidden;
}
.story-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.story-watermark {
  position: absolute;
  left: -15px;
  top: 28px;
  font:
    600px/0.85 Georgia,
    serif;
  color: #b8860b09;
  pointer-events: none;
}
.story h2 {
  font-size: clamp(44px, 4.5vw, 66px);
  margin-top: 29px;
  line-height: 1.07;
}
.story h2 .serif {
  color: #71530e;
}
.story-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 37px;
}
.signature-line {
  width: 44px;
  height: 1px;
  background: #b8860b;
}
.story-signature strong {
  font-size: 15px;
  font-weight: 600;
}
.story-signature div > span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}
.story-thread {
  stroke: none;
  width: 95%;
  height: auto;
  margin-top: 28px;
  overflow: visible;
}
.story-thread-orbs {
  opacity: 0.9;
}
.story-thread.has-motion circle {
  opacity: 0;
}
.story-motion-toggle,
.portal-motion-toggle,
.world-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 64px;
  min-height: 32px;
  gap: 5px;
  padding: 8px;
  font-size: 11px;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 180ms ease;
}
.story-motion-toggle {
  margin: 4px 5% 0 auto;
  color: #71530e;
}
.story-motion-toggle:hover,
.portal-motion-toggle:hover,
.story-motion-toggle:focus-visible,
.portal-motion-toggle:focus-visible,
.world-toggle:hover,
.world-toggle:focus-visible {
  opacity: 1;
}
.story-motion-icon {
  display: flex;
}
.story-motion-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.6;
}
.story-copy {
  padding-top: 13px;
}
.story-copy p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
}
.story-copy .story-lead {
  font-size: 21px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 23px;
}
.story-copy blockquote {
  font:
    italic 30px/1.45 Georgia,
    serif;
  color: #71530e;
  padding: 25px 0 26px;
  margin: 25px 0;
  border-block: 1px solid #d7c59b;
}
.story-copy cite {
  display: block;
  font-family: var(--body);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 17px;
}
.story-more {
  margin-top: 21px;
}
.story-more summary {
  color: #71530e;
  font-size: 13px;
}
.story-more > div {
  padding-top: 18px;
}
.story-more > div p + p {
  margin-top: 15px;
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  min-height: 44px;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s;
}
details[open] > summary > span {
  transform: rotate(45deg);
}
/* An illustrative globe: connection, not geographic coverage claims. */
.languages {
  background: var(--deep);
  color: white;
  overflow: hidden;
  padding-block: 102px;
}
.languages-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}
.languages h2 {
  margin-top: 29px;
  font-size: clamp(40px, 4.3vw, 62px);
}
.languages h2 .serif {
  color: #b8dfe9;
}
.languages-copy > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.9;
  color: #c0d3d9;
  margin-top: 26px;
  max-width: 430px;
}
.language-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 425px;
  column-gap: 36px;
  margin-block: 30px 19px;
}
.languages-copy > .language-availability:not(.eyebrow) {
  margin: 0 0 22px;
  font-size: 14px;
}
.language-list span {
  padding: 11px 0;
  border-bottom: 1px solid #ffffff21;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-list span:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #87c6d8;
}
.world-art {
  position: relative;
  margin-bottom: 46px;
  isolation: isolate;
}
.world-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.world-art.is-3d .world-fallback {
  visibility: hidden;
}
.world-toggle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #c4e1e8;
  white-space: nowrap;
}
.world-art > svg {
  width: 100%;
  height: auto;
  stroke: none;
}
.world-lines {
  stroke: #87c6d838;
  stroke-width: 1;
}
.world-routes {
  stroke: url(#route);
  stroke-width: 1.2;
}
.world-dots {
  fill: var(--gold);
}
.world-dots circle:nth-child(n + 4) {
  fill: none;
  stroke: #e7d49c55;
  stroke-width: 1;
}
.world-label {
  position: absolute;
  border: 1px solid #badfe52b;
  background: #143943bd;
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 4px;
  color: #dceff3;
  font-size: 11px;
  letter-spacing: 0.03em;
}
.label-one {
  top: 31%;
  left: 3%;
}
.label-two {
  top: 42%;
  right: -1%;
}
.label-three {
  bottom: 22%;
  right: 10%;
}
.steps {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
  list-style: none;
}
.steps > li {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.step-number {
  width: 34px;
  height: 34px;
  border: 1px solid #b8dfe9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--teal);
  margin-bottom: 24px;
  background: var(--wash);
}
.steps h3 {
  font-size: 27px;
  margin-bottom: 15px;
}
.steps p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 330px;
}
.contact {
  background: linear-gradient(115deg, #ddeff4, #eef3f8 58%, #e9e7fa);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 85px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 95px;
  align-items: center;
}
.contact h2 {
  margin-top: 25px;
  font-size: clamp(43px, 4.5vw, 66px);
}
.contact-grid > div > p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 25px;
}
.contact-phone {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  font-family: var(--display);
  font-size: 31px;
  margin-top: 29px;
  color: var(--teal);
}
.contact-phone svg {
  width: 28px;
  height: 28px;
  transform: rotate(-40deg);
}
.contact-panel {
  background: #ffffffed;
  border: 1px solid #fff;
  border-radius: 9px;
  padding: 37px;
  box-shadow: 0 18px 45px #15203407;
}
.contact-panel label {
  font-size: 17px;
  font-weight: 600;
  display: block;
  margin-bottom: 17px;
}
.select-wrap {
  position: relative;
}
.select-wrap select {
  appearance: none;
  width: 100%;
  min-height: 52px;
  border: 1px solid #9fafba;
  background: white;
  border-radius: 4px;
  padding: 13px 42px 13px 14px;
  font-size: 14px;
  color: var(--ink);
}
.select-wrap > span {
  position: absolute;
  right: 16px;
  top: 11px;
  pointer-events: none;
}
.contact-panel #request-guidance {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  margin: 19px 0;
  min-height: 47px;
}
.contact-panel .button {
  width: 100%;
  justify-content: space-between;
}
.contact-panel .contact-note {
  font-size: 11px;
  line-height: 1.9;
  text-align: center;
  color: var(--muted);
  margin-top: 19px;
}
.contact-note > span {
  display: block;
  text-wrap: balance;
}
.contact-note a {
  white-space: nowrap;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-orbit {
  position: absolute;
  right: 35%;
  bottom: -200px;
  z-index: -1;
  width: 660px;
  height: 500px;
  stroke: #0f6f8f17;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 110px;
}
.faq h2 {
  font-size: 43px;
  margin-top: 23px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}
.faq-list summary {
  font-size: 15px;
  line-height: 1.5;
  padding-block: 5px;
}
.faq-list summary > span {
  color: var(--teal);
}
.faq-answer {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  padding: 12px 30px 12px 0;
}
.faq-answer > * + * {
  margin-top: 12px;
}
.faq-answer ul {
  padding-left: 20px;
}
.faq-answer li + li {
  margin-top: 8px;
}
.faq-answer a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 45px;
  background: #f7f9fc;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  gap: 30px;
}
.footer-top > p {
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.3;
}
.footer-top > p .serif {
  color: var(--teal);
}
.footer-top > .text-link {
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-block: 23px;
  font-size: 10px;
  color: var(--muted);
  gap: 20px;
}
.footer-bottom > a:hover {
  color: var(--teal);
}
/* Responsive composition */
@media (min-width: 1600px) {
  .hero {
    min-height: 820px;
  }
  .hero-content {
    padding-top: 105px;
  }
  .hero h1 {
    font-size: 110px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 72px);
  }
  .site-header nav {
    gap: 20px;
  }
  .header-inner {
    gap: 20px;
  }
  .portal-link {
    padding-left: 20px;
  }
  .heading-columns {
    gap: 65px;
  }
  .approach-grid {
    gap: 45px;
  }
  .story-grid {
    gap: 65px;
  }
  .contact-grid {
    gap: 55px;
  }
  .language-strip-inner {
    gap: 20px;
  }
  .language-inline {
    gap: 14px;
  }
  .language-strip p {
    min-width: 160px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero h1 {
    font-size: 82px;
  }
  .hero-media {
    left: 20%;
  }
  .situation-grid {
    gap: 22px;
  }
  .image-wrap img {
    height: 230px;
  }
  .card-heading h3 {
    font-size: 24px;
  }
  .faq-grid {
    gap: 65px;
  }
  .world-label {
    font-size: 10px;
  }
}
@media (max-width: 900px) {
  .section {
    padding-block: 80px;
  }
  .header-inner {
    min-height: 78px;
  }
  .brand > span {
    font-size: 20px;
  }
  .site-header nav {
    gap: 17px;
  }
  .site-header nav > a {
    font-size: 11px;
  }
  .site-header nav > a.button {
    padding: 12px;
    gap: 12px;
  }
  .portal-link {
    padding-left: 16px;
  }
  .hero {
    min-height: 740px;
  }
  .hero-content {
    padding-top: 85px;
  }
  .hero h1 {
    font-size: 77px;
  }
  .hero-shade {
    background:
      linear-gradient(
        90deg,
        #092733 0%,
        #092733ef 24%,
        #092733b8 48%,
        #09273340 100%
      ),
      linear-gradient(0deg, #092733ef, transparent 60%);
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-media {
    left: 10%;
  }
  .language-strip-inner {
    align-items: flex-start;
  }
  .language-inline {
    gap: 12px 20px;
  }
  .heading-columns {
    gap: 40px;
  }
  .heading-columns > p {
    font-size: 14px;
  }
  .approach-grid {
    gap: 35px;
  }
  .approach-photo {
    border-top-right-radius: 60px;
  }
  .approach-photo > img {
    height: 410px;
  }
  .approach-copy h2 {
    font-size: 37px;
  }
  .approach-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .approach-copy .eyebrow {
    font-size: 9px;
  }
  .connection-path {
    margin-top: 23px;
  }
  .connection-path > i {
    margin-inline: 7px;
  }
  .connection-path > div {
    font-size: 8px;
  }
  .photo-caption {
    left: 14px;
    bottom: 14px;
    font-size: 9px;
    padding: 10px;
  }
  .values-row {
    gap: 25px;
  }
  .values-row h3 {
    font-size: 21px;
  }
  .values-row > div {
    padding-left: 26px;
  }
  .values-row p {
    font-size: 12px;
  }
  .situation-grid {
    gap: 18px;
  }
  .image-wrap img {
    height: 190px;
  }
  .card-heading h3 {
    font-size: 22px;
  }
  .card-heading svg {
    display: none;
  }
  .situation-card > p {
    font-size: 13px;
  }
  .category-note {
    font-size: 9px;
  }
  .story-grid {
    gap: 50px;
  }
  .story h2 {
    font-size: 49px;
  }
  .story-copy .story-lead {
    font-size: 18px;
  }
  .story-copy p {
    font-size: 14px;
  }
  .story-copy blockquote {
    font-size: 25px;
  }
  .languages-grid {
    gap: 15px;
    grid-template-columns: 1.2fr 1fr;
  }
  .languages .eyebrow {
    font-size: 9px;
  }
  .languages h2 {
    font-size: 43px;
  }
  .world-label {
    padding: 7px 10px;
  }
  .languages-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .language-list span {
    font-size: 13px;
  }
  .languages .text-link {
    font-size: 12px;
  }
  .steps {
    gap: 35px;
  }
  .steps h3 {
    font-size: 24px;
  }
  .steps p {
    font-size: 13px;
  }
  .contact-grid {
    gap: 35px;
  }
  .contact h2 {
    font-size: 47px;
  }
  .contact-panel {
    padding: 27px;
  }
  .contact-panel .button {
    gap: 10px;
    font-size: 12px;
  }
  .faq-grid {
    gap: 55px;
  }
  .faq h2 {
    font-size: 38px;
  }
  .faq-list summary {
    font-size: 14px;
  }
}
@media (max-width: 720px) {
  :root {
    scroll-padding-top: 90px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 64px;
  }
  .header-inner {
    min-height: 73px;
    flex-wrap: wrap;
    gap: 0;
  }
  .brand img {
    width: 44px;
    height: 44px;
  }
  .brand > span {
    font-size: 20px;
  }
  .brand > span > span {
    font-size: 14px;
  }
  .menu-toggle {
    display: flex;
  }
  .site-header nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    padding: 10px 0 20px;
  }
  .js .site-header nav {
    display: none;
  }
  .js .site-header nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .js .site-header nav > a {
    font-size: 14px;
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
  }
  .js .site-header nav > a.button {
    margin-top: 12px;
    font-size: 13px;
  }
  .portal-link {
    padding-left: 0;
    border-left: 0;
  }
  .hero {
    min-height: 770px;
  }
  .hero-content {
    padding-top: 51px;
    padding-bottom: 132px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.1em;
    gap: 10px;
    max-width: 300px;
  }
  .hero h1 {
    font-size: clamp(58px, 10.5vw, 75px);
    margin-top: 25px;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }
  .hero-description {
    font-size: 14px;
    max-width: 320px;
    margin-top: 23px;
    line-height: 1.8;
  }
  .hero-actions {
    margin-top: 27px;
    gap: 12px;
  }
  .hero-actions .button {
    font-size: 13px;
    min-height: 54px;
    padding-inline: 21px;
    gap: 26px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-media {
    inset: 0;
    mask-image: none;
  }
  .hero-media video {
    object-position: 62% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #092733ed 0%, #092733bc 48%, #0927335c 100%),
      linear-gradient(0deg, #092733 0%, #09273322 75%);
  }
  .hero-orbits {
    opacity: 0.6;
  }
  .hero-bottom {
    bottom: 23px;
    gap: 12px;
    align-items: flex-end;
  }
  .hero-note {
    font-size: 9px;
    line-height: 1.6;
    gap: 8px;
    max-width: 205px;
  }
  .hero-note svg {
    width: 16px;
  }
  .video-toggle {
    padding: 9px 11px;
    font-size: 9px;
    gap: 6px;
    flex-shrink: 0;
  }
  .language-strip-inner {
    display: grid;
    grid-template-columns: 1fr 40px;
    gap: 18px;
    padding-block: 26px;
  }
  .language-strip p {
    font-size: 12px;
    grid-column: 1;
  }
  .language-strip p br {
    display: none;
  }
  .language-strip p strong {
    margin-left: 4px;
  }
  .language-inline {
    grid-column: 1/-1;
    grid-row: 2;
    gap: 13px 22px;
  }
  .language-inline span {
    font-size: 11px;
  }
  .circle-link {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  .heading-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .heading-columns > p {
    max-width: 490px;
    font-size: 15px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.13em;
  }
  .section-heading > .eyebrow {
    margin-bottom: 21px;
  }
  h2 {
    font-size: 43px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 31px;
    margin-top: 34px;
  }
  .approach-photo > img {
    height: auto;
    aspect-ratio: 1.22;
    object-position: center;
  }
  .photo-caption {
    font-size: 11px;
    left: 18px;
    bottom: 18px;
  }
  .approach-copy h2 {
    font-size: 38px;
    margin-block: 16px;
  }
  .approach-copy > p:not(.eyebrow) {
    font-size: 15px;
    max-width: none;
  }
  .approach-copy .eyebrow {
    font-size: 10px;
  }
  .connection-path {
    max-width: none;
    margin-block: 28px 16px;
  }
  .connection-path > div {
    font-size: 10px;
  }
  .connection-path > i {
    margin-inline: 12px;
  }
  .values-row {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-top: 26px;
    padding-top: 28px;
  }
  .values-row > div {
    padding-left: 36px;
  }
  .values-row h3 {
    font-size: 24px;
  }
  .values-row p {
    max-width: none;
    margin-top: 6px;
    font-size: 13px;
  }
  .values-row > div > span {
    top: 7px;
  }
  .compact {
    margin-bottom: 31px;
  }
  .situation-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .image-wrap img {
    height: auto;
    aspect-ratio: 1.55;
  }
  .card-heading {
    margin-top: 18px;
  }
  .card-heading h3 {
    font-size: 27px;
  }
  .card-heading svg {
    display: block;
  }
  .situation-card > p {
    font-size: 14px;
    max-width: none;
    margin-top: 10px;
  }
  .category-note {
    font-size: 10px;
    margin-top: 14px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .story h2 {
    font-size: 49px;
  }
  .story-signature {
    margin-top: 25px;
  }
  .story-thread,
  .story-motion-toggle {
    display: none;
  }
  .story-copy {
    padding-top: 0;
  }
  .story-copy .story-lead {
    font-size: 19px;
  }
  .story-copy p {
    font-size: 14px;
  }
  .story-copy blockquote {
    font-size: 27px;
  }
  .story-watermark {
    font-size: 450px;
    top: 5px;
    left: -30px;
  }
  .languages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .languages .eyebrow {
    font-size: 9px;
  }
  .languages h2 {
    font-size: 44px;
    margin-top: 23px;
  }
  .languages-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .language-list {
    max-width: none;
    column-gap: 26px;
    margin-top: 23px;
  }
  .language-list span {
    font-size: 14px;
  }
  .languages .text-link {
    font-size: 13px;
  }
  .world-art {
    max-width: 440px;
    width: 100%;
    margin: 0 auto 46px;
  }
  .world-label {
    font-size: 10px;
    padding: 9px 13px;
  }
  .label-two {
    right: 0;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .steps > li {
    padding: 23px 0 0 56px;
  }
  .step-number {
    position: absolute;
    top: 24px;
    left: 0;
  }
  .steps h3 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .steps p {
    font-size: 14px;
    max-width: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact h2 {
    font-size: 47px;
  }
  .contact-grid > div > p:not(.eyebrow) {
    font-size: 15px;
    margin-top: 20px;
  }
  .contact-phone {
    font-size: 30px;
    margin-top: 22px;
  }
  .contact-panel {
    padding: 25px;
  }
  .contact-panel .button {
    font-size: 13px;
  }
  .contact-panel #request-guidance {
    min-height: 0;
  }
  .contact-orbit {
    right: -80%;
    bottom: -150px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq h2 {
    font-size: 41px;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 27px;
    padding-bottom: 30px;
  }
  .footer-top > p {
    grid-row: 2;
    font-size: 25px;
    grid-column: 1;
  }
  .footer-top > .text-link {
    grid-column: 2;
    grid-row: 1;
    font-size: 10px;
    gap: 10px;
  }
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding-block: 24px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
}
@media (max-width: 370px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero {
    min-height: 745px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-note {
    max-width: 178px;
  }
  .contact-panel {
    padding: 20px;
  }
  .connection-path > div {
    font-size: 9px;
  }
  .connection-path > i {
    margin-inline: 8px;
  }
  .story h2 {
    font-size: 44px;
  }
  .languages h2 {
    font-size: 39px;
  }
  .language-inline {
    gap: 12px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* The client workspace: a clear product view, with a little human warmth. */
.portal-showcase {
  position: relative;
  background: linear-gradient(155deg, #f3f8fa 0%, #edf5f7 55%, #faf8f1 100%);
  overflow: hidden;
}
.portal-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.4fr;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
}
.portal-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}
.portal-copy > .eyebrow {
  margin: 0 0 22px;
}
.portal-copy h2 {
  font-size: clamp(36px, 3.4vw, 49px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.portal-copy h2 .serif {
  color: var(--teal);
}
.portal-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-top: 25px;
  max-width: 365px;
}
.portal-tour {
  margin: 29px 0;
}
.portal-tour-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 18px 12px 18px 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-top: 1px solid #b8cdd277;
  cursor: pointer;
  transition:
    color 0.25s,
    background 0.25s;
}
.portal-tour-tab:last-child {
  border-bottom: 1px solid #b8cdd277;
}
.portal-tour-tab[aria-selected="true"] {
  color: var(--ink);
  background: linear-gradient(90deg, #ffffff00, #ffffff80);
}
.portal-tour-tab:hover {
  color: var(--teal);
}
.portal-tour-number {
  color: var(--teal);
  font-size: 10px;
  align-self: flex-start;
  padding-top: 4px;
}
.portal-tour-tab strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  display: block;
}
.portal-tour-tab small {
  display: block;
  font-size: 11px;
  line-height: 1.7;
  margin-top: 4px;
  color: var(--muted);
}
.portal-tour-arrow {
  margin-left: auto;
  color: var(--teal);
  opacity: 0;
}
.portal-tour-tab[aria-selected="true"] .portal-tour-arrow {
  opacity: 1;
}
.portal-copy > .text-link {
  font-size: 13px;
}
.portal-stage {
  position: relative;
  min-width: 0;
  height: 560px;
  isolation: isolate;
}
.portal-stage::before {
  content: "";
  position: absolute;
  inset: 12% -10%;
  background: radial-gradient(
    ellipse,
    #87c6d82b,
    #e7d49c0a 60%,
    transparent 75%
  );
  z-index: -2;
}
.portal-orbits {
  position: absolute;
  width: 116%;
  height: 112%;
  left: -8%;
  top: -6%;
  overflow: visible;
  stroke: url(#portal-route-color);
  stroke-width: 0.9;
}
.portal-orbits ellipse {
  stroke-dasharray: 1 9;
  stroke: #0f6f8f26;
}
.portal-orbits.has-motion circle {
  opacity: 0;
}
.portal-window {
  position: absolute;
  left: 3%;
  right: 1%;
  top: 105px;
  min-height: 340px;
  border: 1px solid #cfdee4;
  border-radius: 13px;
  background: #fff;
  box-shadow:
    0 35px 65px -30px #143c4c35,
    0 5px 12px #0f6f8f08;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}
.portal-window-bar {
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid #e5edf1;
}
.portal-window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 600 12px var(--display);
}
.portal-window-brand img {
  color-scheme: light;
}
.portal-preview-label {
  font-size: 9px;
  color: #5c6c7a;
  border: 1px solid #dbe5eb;
  padding: 4px 7px;
  border-radius: 4px;
}
.portal-window-body {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  min-height: 300px;
}
.portal-sidebar {
  position: relative;
  border-right: 1px solid #e5edf1;
  background: #f8fafc;
  padding: 20px 8px;
}
.portal-sidebar > span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  color: #566376;
  padding: 9px 6px;
  border-radius: 5px;
  white-space: nowrap;
}
.portal-sidebar svg {
  width: 13px;
  height: 13px;
}
.portal-sidebar > .portal-sidebar-label {
  font-size: 7px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  padding-top: 0;
}
.portal-sidebar > .is-active {
  background: #e5f0f5;
  color: #0f6f8f;
  font-weight: 600;
}
.portal-sidebar-foot {
  position: absolute;
  bottom: 20px;
  left: 15px;
  font:
    italic 15px/1.5 Georgia,
    serif;
  color: #687f8a;
}
.portal-panel {
  padding: 24px 22px 18px;
  min-width: 0;
}
.portal-mini-eyebrow {
  font-size: 7px;
  letter-spacing: 0.16em;
  color: #637889;
}
.portal-panel h3 {
  font: 600 25px/1.2 var(--display);
  margin: 8px 0 6px;
  letter-spacing: -0.025em;
}
.portal-panel-subtitle {
  color: #596b7a;
  font-size: 10px;
  line-height: 1.5;
}
.portal-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 19px 0 12px;
}
.portal-metrics > div {
  padding: 13px 10px;
  border: 1px solid #d9e2e7;
  border-radius: 8px;
}
.portal-metrics > div > span {
  font-size: 8px;
  color: #526577;
  display: block;
}
.portal-metrics strong {
  display: block;
  font: 600 27px var(--display);
  margin-top: 6px;
}
.portal-metrics strong span {
  font-size: 12px;
  color: #60788a;
}
.portal-account {
  border: 1px solid #d9e2e7;
  border-radius: 8px;
  padding: 13px 11px;
  font-size: 9px;
}
.portal-account > strong {
  font-size: 10px;
}
.portal-account > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  color: #526577;
}
.portal-account b {
  font-size: 8px;
  color: var(--ink);
  font-weight: 500;
}
.portal-status {
  color: #286247;
  background: #eaf5ee;
  font-size: 8px;
  border-radius: 10px;
  padding: 3px 7px;
}
.portal-screen-note {
  display: block;
  margin-top: 15px;
  font-size: 8px;
  color: #617583;
}
.portal-mini-table {
  margin: 24px 0 20px;
}
.portal-mini-table > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dce7ec;
  padding: 15px 0;
  font-size: 11px;
  gap: 10px;
}
.portal-mini-table .portal-table-heading {
  font-size: 8px;
  color: #637889;
  padding: 0 0 10px;
}
.portal-mini-table strong {
  font-weight: 500;
  font-size: 10px;
}
.portal-mini-table i {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9a649;
  margin: 0 8px 2px 0;
}
.portal-statement {
  border: 1px solid #d9e2e7;
  border-radius: 8px;
  margin-top: 20px;
  padding: 18px;
  background: linear-gradient(145deg, #fff, #f8fbfc);
}
.portal-statement > svg {
  color: var(--teal);
  width: 24px;
  margin-bottom: 10px;
}
.portal-statement strong {
  display: block;
  font: 600 16px/1.3 var(--display);
}
.portal-statement > span {
  display: block;
  font-size: 9px;
  color: #526577;
  margin-top: 8px;
}
.portal-paper-lines {
  display: grid;
  gap: 7px;
  margin-top: 17px;
}
.portal-paper-lines i {
  width: 100%;
  height: 2px;
  background: #dbe6eb;
}
.portal-paper-lines i:nth-child(2) {
  width: 70%;
}
.portal-paper-lines i:nth-child(3) {
  width: 86%;
}
.portal-popout {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  padding: 18px;
  background: #fffffff5;
  border: 1px solid #d1e2e8;
  box-shadow: 0 18px 35px -18px #173b4e38;
  transition:
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.65s;
}
.portal-popout small {
  display: block;
  font-size: 7px;
  color: #607585;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}
.portal-popout strong {
  font: 600 18px var(--display);
  display: block;
}
.portal-popout strong > span {
  color: #857042;
}
.portal-popout-icon {
  display: grid;
  place-items: center;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  color: var(--teal);
  background: #eef6f9;
  flex-shrink: 0;
}
.portal-popout-icon svg {
  width: 19px;
  height: 19px;
}
.portal-popout-caption {
  display: block;
  font-size: 9px;
  color: #607585;
  margin-top: 6px;
}
.portal-language-popout {
  top: 25px;
  right: -10px;
  transform: rotate(2deg);
}
.portal-activity-popout {
  bottom: 12px;
  left: -25px;
  transform: rotate(-3deg);
}
.portal-popout .portal-popout-time {
  margin-left: 45px;
  color: var(--ink);
  font-size: 14px;
}
.portal-tiny-check {
  width: 20px;
  height: 20px;
  color: #376c53;
  border-radius: 50%;
  background: #eaf5ee;
  font-size: 11px;
  display: grid;
  place-items: center;
}
.portal-stage[data-view="activity"] .portal-activity-popout {
  transform: translateY(-7px) rotate(0);
  border-color: #90bbcc;
}
.portal-stage[data-view="overview"] .portal-language-popout {
  border-color: #90bbcc;
}
.portal-human-note {
  position: absolute;
  right: 0;
  bottom: -22px;
  font-size: 9px;
  color: #506b78;
  display: flex;
  align-items: center;
  gap: 7px;
}
.portal-human-dot {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #c7a355;
  box-shadow: 0 0 8px #e7d49c;
}
.portal-section-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #b8cdd277;
  padding-top: 28px;
  margin-top: 65px;
  font-size: 12px;
  color: #526577;
  line-height: 1.8;
}
.portal-section-footer a {
  color: var(--teal);
  font-weight: 600;
}
.portal-section-footer > a {
  font-size: 11px;
  white-space: nowrap;
}
.portal-motion-toggle {
  color: #476676;
  flex-shrink: 0;
}
.portal-mobile-break {
  display: none;
}
@media (max-width: 1199px) {
  .portal-layout {
    gap: 25px;
    grid-template-columns: 0.8fr 1.25fr;
  }
  .portal-window {
    left: 0;
    right: 0;
  }
  .portal-sidebar {
    display: none;
  }
  .portal-window-body {
    grid-template-columns: 1fr;
  }
  .portal-panel {
    padding: 22px;
  }
  .portal-stage {
    height: 580px;
  }
  .portal-activity-popout {
    left: -10px;
  }
  .portal-popout-caption {
    font-size: 9px;
  }
}
@media (max-width: 900px) {
  .portal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .portal-copy h2 {
    font-size: 46px;
  }
  .portal-copy > p:not(.eyebrow) {
    max-width: 560px;
  }
  .portal-tour {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .portal-tour-tab {
    padding: 14px 0;
    border-bottom: 1px solid #b8cdd277;
    align-items: flex-start;
  }
  .portal-tour-tab strong {
    font-size: 16px;
  }
  .portal-tour-tab small {
    font-size: 10px;
  }
  .portal-tour-arrow {
    display: none;
  }
  .portal-stage {
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }
  .portal-sidebar {
    display: block;
  }
  .portal-window-body {
    grid-template-columns: 130px minmax(0, 1fr);
  }
  .portal-section-footer {
    flex-wrap: wrap;
  }
}
@media (max-width: 599px) {
  .portal-copy h2 {
    font-size: 38px;
  }
  .portal-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .portal-tour {
    display: block;
    margin-bottom: 24px;
  }
  .portal-tour-tab {
    padding: 15px 0;
    border-bottom: none;
  }
  .portal-tour-tab strong {
    font-size: 19px;
  }
  .portal-tour-tab small {
    font-size: 11px;
  }
  .portal-tour-arrow {
    display: block;
  }
  .portal-stage {
    height: 580px;
  }
  .portal-window {
    top: 100px;
    transform: none;
    border-radius: 9px;
  }
  .portal-sidebar {
    display: none;
  }
  .portal-window-body {
    grid-template-columns: 1fr;
    min-height: 300px;
  }
  .portal-panel {
    padding: 20px 17px;
  }
  .portal-language-popout {
    top: 12px;
    right: 0;
    padding: 13px;
    transform: rotate(1deg);
  }
  .portal-activity-popout {
    bottom: 5px;
    left: 0;
    padding: 13px;
    transform: rotate(-2deg);
  }
  .portal-popout-caption {
    font-size: 8px;
  }
  .portal-popout .portal-popout-time {
    margin-left: 25px;
  }
  .portal-window-brand {
    font-size: 11px;
  }
  .portal-preview-label {
    font-size: 8px;
  }
  .portal-human-note {
    font-size: 8px;
    bottom: -25px;
  }
  .portal-section-footer {
    margin-top: 62px;
    gap: 20px;
    font-size: 12px;
  }
  .portal-section-footer > p {
    width: 100%;
  }
  .portal-section-footer > a {
    font-size: 10px;
  }
  .portal-mobile-break {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  .portal-popout,
  .portal-tour-tab {
    transition: none;
  }
}

/* Keep the expanded navigation readable on tablet widths. */
@media (min-width: 721px) and (max-width: 1000px) {
  .header-inner {
    min-height: 73px;
    flex-wrap: wrap;
    gap: 0;
  }
  .brand img {
    width: 44px;
    height: 44px;
  }
  .brand > span {
    font-size: 20px;
  }
  .brand > span > span {
    font-size: 14px;
  }
  .menu-toggle {
    display: flex;
  }
  .site-header nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    padding: 10px 0 20px;
  }
  .js .site-header nav {
    display: none;
  }
  .js .site-header nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .js .site-header nav > a {
    font-size: 14px;
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
  }
  .js .site-header nav > a.button {
    margin-top: 12px;
    font-size: 13px;
  }
  .portal-link {
    padding-left: 0;
    border-left: 0;
  }
}
/* Admin-dashboard visual vocabulary: metric cards, rings, and quiet charts. */
.portal-stage {
  height: 820px;
}
.portal-window {
  top: 135px;
}
.portal-window-body {
  min-height: 400px;
}
.portal-panel {
  padding: 21px 22px 18px;
}
.portal-view-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.portal-view-heading h3 {
  font-size: 25px;
}
.portal-period {
  padding: 5px 8px;
  background: #f7f9fc;
  border: 1px solid #dce5eb;
  border-radius: 5px;
  color: #526577;
  font-size: 8px;
  white-space: nowrap;
}
.portal-period > span {
  margin-left: 12px;
}
.portal-rich-metrics {
  margin: 16px 0 12px;
}
.portal-rich-metrics > div {
  position: relative;
  overflow: hidden;
  background: #f7f9fc;
  padding: 12px;
}
.portal-rich-metrics > div > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.portal-rich-metrics svg:not(.portal-sparkline) {
  width: 12px;
  height: 12px;
  color: #637b91;
}
.portal-rich-metrics strong {
  font-size: 33px;
  letter-spacing: -0.04em;
  background: linear-gradient(110deg, #0f6f8f, #152034);
  background-clip: text;
  color: transparent;
}
.portal-rich-metrics small {
  font-size: 7px;
  color: #526577;
  display: block;
  margin-top: 7px;
}
.portal-rich-metrics .portal-sparkline {
  position: absolute;
  width: 43%;
  height: 30px;
  bottom: 28px;
  right: 8px;
}
.portal-sparkline {
  stroke: none;
  overflow: visible;
}
.spark-fill {
  fill: #3269b212;
}
.spark-line {
  stroke: #3269b2;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.metric-minute-bar {
  display: flex;
  width: 44%;
  gap: 3px;
  position: absolute;
  right: 12px;
  bottom: 38px;
}
.metric-minute-bar i {
  height: 6px;
  background: #3269b2;
  border-radius: 8px;
  width: 73%;
}
.metric-minute-bar i + i {
  width: 25%;
  background: #237963;
}
.portal-chart-card {
  border: 1px solid #d9e2e7;
  border-radius: 9px;
  padding: 13px 13px 10px;
  background: #fff;
}
.portal-chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.portal-chart-heading > strong {
  font-size: 10px;
}
.portal-chart-heading > span {
  font-size: 6px;
  letter-spacing: 0.06em;
  color: #617583;
}
.portal-week-chart {
  width: 100%;
  height: 120px;
  display: block;
  margin-top: 8px;
  stroke: none;
}
.chart-grid path {
  stroke: #d9e2e7;
  stroke-dasharray: 2 4;
  stroke-width: 0.7;
  fill: none;
}
.chart-axis,
.chart-axis text {
  font: 9px var(--body);
  fill: #526577;
  stroke: none;
}
.chart-bar-primary {
  fill: #3269b2;
}
.chart-bar-secondary {
  fill: #237963;
}
.portal-chart-legend {
  display: flex;
  gap: 14px;
  font-size: 7px;
  color: #526577;
  margin: 1px 0 2px;
}
.portal-chart-legend > span {
  display: flex;
  gap: 5px;
  align-items: center;
}
.portal-chart-legend i,
.mix-legend i {
  width: 5px;
  height: 5px;
  background: #3269b2;
  border-radius: 2px;
  display: inline-block;
}
.portal-chart-legend > span + span i,
.mix-legend > span + span i {
  background: #237963;
}
.portal-popout[hidden] {
  display: none;
}
.portal-popout-top {
  top: 5px;
  right: -12px;
  transform: rotate(2deg);
}
.portal-popout-bottom {
  bottom: 8px;
  left: -22px;
  transform: rotate(-3deg);
}
.portal-popout {
  background: #fff;
}
.portal-popout-top small {
  font-size: 7px;
}
.portal-popout-top strong {
  font-size: 17px;
}
.portal-mix-popout {
  gap: 14px;
  padding: 17px 20px;
}
.mix-ring {
  position: relative;
  width: 81px;
  height: 81px;
  flex-shrink: 0;
}
.mix-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  fill: none;
  stroke-width: 7;
}
.mix-ring-base {
  stroke: #edf1f5;
}
.mix-ring-primary {
  stroke: #3269b2;
  stroke-linecap: round;
}
.mix-ring-secondary {
  stroke: #237963;
  stroke-linecap: round;
}
.mix-ring > strong {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: #152034;
}
.mix-ring > strong > small {
  font: 8px var(--body);
  color: #526577;
  letter-spacing: 0;
  margin: 1px 0 0;
}
.mix-legend {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  font-size: 8px;
  color: #526577;
}
.mix-legend > span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mix-legend b {
  margin-left: auto;
  padding-left: 14px;
  color: #152034;
  font-weight: 600;
}
.portal-usage-popout {
  padding: 16px 19px;
  min-width: 280px;
  gap: 18px;
}
.portal-usage-popout .portal-sparkline {
  width: 92px;
  height: 44px;
}
.portal-popout .popout-large-value {
  font-size: 37px;
  line-height: 1;
  color: #0f6f8f;
  letter-spacing: -0.04em;
}
.portal-popout .popout-large-value > span {
  font-size: 14px;
  color: #607585;
  letter-spacing: 0;
}
.activity-summary {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 12px;
  border: 1px solid #d9e2e7;
  border-radius: 9px;
  background: #f7f9fc;
  margin: 16px 0 12px;
}
.activity-summary-icon {
  color: #3269b2;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  background: #3269b20c;
  border-radius: 50%;
}
.activity-summary-icon svg {
  width: 20px;
  height: 20px;
}
.activity-summary > strong {
  font: 600 27px/1 var(--display);
}
.activity-summary small {
  display: block;
  font: 7px var(--body);
  color: #526577;
  margin-top: 6px;
}
.activity-summary-divider {
  width: 1px;
  height: 28px;
  background: #d9e2e7;
  margin-inline: auto;
}
.duration-row {
  display: grid;
  grid-template-columns: 73px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #edf1f5;
}
.duration-row:first-of-type {
  margin-top: 6px;
}
.duration-row b {
  font-size: 9px;
  font-weight: 500;
}
.duration-row small {
  display: block;
  font-size: 6px;
  color: #617583;
  margin-top: 4px;
}
.duration-row > strong {
  font-size: 9px;
  font-weight: 600;
  text-align: right;
}
.duration-track {
  background: #f0f4f7;
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
}
.duration-track i {
  background: #3269b2;
  display: block;
  height: 100%;
  border-radius: inherit;
}
.duration-track .duration-secondary {
  background: #237963;
}
.duration-key {
  display: flex;
  justify-content: space-between;
  color: #617583;
  font-size: 6px;
  gap: 8px;
  margin-top: 10px;
}
.portal-call-popout {
  display: block;
  width: 282px;
  padding: 16px 18px;
  top: -16px;
}
.call-detail-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.call-detail-top .portal-popout-icon {
  width: 28px;
  height: 28px;
}
.call-detail-top .portal-popout-icon svg {
  width: 14px;
}
.call-detail-top strong {
  font-size: 13px;
}
.call-detail-top small {
  margin-bottom: 4px;
  font-size: 6px;
}
.call-detail-top .portal-tiny-check {
  margin-left: auto;
}
.call-detail-time {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 14px 0 12px;
}
.call-detail-time > strong {
  font-size: 30px;
  color: #183c55;
  letter-spacing: -0.04em;
}
.call-detail-time small {
  display: inline;
  font-size: 13px;
  color: #617583;
  letter-spacing: 0;
  margin-right: 3px;
}
.call-detail-time > span {
  font-size: 8px;
  color: #526577;
}
.call-detail-timeline {
  position: relative;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, #3269b230, #3269b2, #237963);
}
.call-detail-timeline::before,
.call-detail-timeline::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: -1px;
  background: #3269b2;
  border-radius: 50%;
}
.call-detail-timeline::after {
  right: 0;
  background: #237963;
}
.call-timeline-orb {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e7d49c;
  box-shadow: 0 0 8px #e7d49c;
  position: absolute;
  top: -0.5px;
  left: 58%;
}
.call-detail-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 7px;
  color: #526577;
}
.portal-calendar-popout {
  display: block;
  min-width: 290px;
  padding: 16px 18px;
}
.portal-calendar-popout strong {
  font-size: 17px;
}
.mini-calendar {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
}
.mini-calendar > span {
  font-size: 6px;
  text-align: center;
  color: #617583;
}
.mini-calendar b {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  background: #eef3f9;
  color: #3269b2;
  font: 600 12px var(--display);
  border-radius: 6px;
  margin-top: 5px;
}
.mini-calendar .calendar-peak {
  color: white;
  background: #3269b2;
}
.billing-balance {
  position: relative;
  border: 1px solid #d9e2e7;
  padding: 13px 15px;
  border-radius: 9px;
  background: linear-gradient(115deg, #eff5fb, #f8fafc);
  margin: 16px 0 12px;
  overflow: hidden;
}
.billing-balance > span {
  font-size: 8px;
  color: #526577;
}
.billing-balance > strong {
  display: block;
  font: 600 39px/1 var(--display);
  color: #183c55;
  margin: 8px 0;
  letter-spacing: -0.04em;
}
.billing-balance > strong > span {
  font-size: 22px;
  margin-right: 2px;
}
.billing-balance > strong > small {
  font-size: 24px;
}
.billing-balance > small {
  color: #526577;
  font-size: 7px;
}
.billing-balance-mark {
  position: absolute;
  top: 22px;
  right: 25px;
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  background: #fff9;
  border: 1px solid #3269b217;
  border-radius: 50%;
}
.billing-balance-mark svg {
  width: 30px;
  height: 30px;
  color: #3269b2;
  stroke-width: 1;
}
.billing-comparison > div:not(.billing-track) {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: #526577;
  font-size: 8px;
}
.billing-comparison strong {
  font-size: 9px;
  color: #152034;
}
.billing-track {
  height: 7px;
  background: #eef2f7;
  border-radius: 6px;
  margin-top: 7px;
}
.billing-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #3269b2;
}
.billing-track .payment-bar {
  background: #237963;
}
.billing-equation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3px;
  font-size: 6px;
  color: #526577;
  border-top: 1px solid #e1e8ee;
  margin-top: 14px;
  padding-top: 10px;
}
.billing-equation strong {
  color: #183c55;
}
.portal-receipt-popout {
  display: block;
  width: 269px;
  padding: 16px 19px;
  top: -20px;
  border-radius: 10px 10px 3px 3px;
}
.portal-receipt-popout::after {
  content: "";
  position: absolute;
  height: 8px;
  left: -1px;
  right: -1px;
  bottom: -7px;
  background:
    linear-gradient(135deg, #fff 5px, transparent 0) 0 0/10px 10px,
    linear-gradient(225deg, #fff 5px, transparent 0) 0 0/10px 10px;
}
.statement-popout-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.statement-popout-heading strong {
  font-size: 14px;
}
.statement-popout-heading .portal-popout-icon {
  width: 31px;
  height: 31px;
  border-radius: 7px;
}
.statement-popout-heading small {
  margin-bottom: 4px;
  font-size: 6px;
}
.statement-paper-line {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #526577;
  margin-top: 17px;
  padding-bottom: 11px;
  border-bottom: 1px dashed #d9e2e7;
}
.statement-paper-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.statement-paper-total > span {
  font-size: 8px;
  color: #526577;
}
.statement-paper-total > strong {
  font-size: 27px;
  color: #183c55;
}
.statement-paper-total small {
  font-size: 16px;
  display: inline;
  color: #617583;
}
.statement-paper-footer {
  font-size: 7px;
  color: #617583;
  margin-top: 10px;
}
.portal-payment-popout {
  gap: 14px;
  padding: 19px 21px;
}
.payment-check {
  background: #edf6f1;
  border: 1px solid #23796325;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #237963;
}
.payment-check svg {
  width: 20px;
  height: 20px;
}
.portal-payment-popout strong {
  font-size: 25px;
  letter-spacing: -0.025em;
}
.portal-payment-popout strong > span {
  font: 11px var(--body);
  color: #526577;
  margin-left: 3px;
}
@media (max-width: 1199px) {
  .portal-stage {
    height: 820px;
  }
  .portal-popout-top {
    right: -5px;
  }
  .portal-popout-bottom {
    left: -8px;
  }
}
@media (max-width: 900px) {
  .portal-stage {
    height: 820px;
    margin-top: 15px;
  }
}
@media (max-width: 599px) {
  .portal-stage {
    height: 860px;
    margin-top: 15px;
  }
  .portal-window {
    top: 172px;
  }
  .portal-window-body {
    min-height: 410px;
  }
  .portal-popout-top {
    top: 0;
    right: 0;
  }
  .portal-popout-bottom {
    bottom: 0;
    left: 0;
  }
  .portal-panel {
    padding: 18px 14px 14px;
  }
  .portal-view-heading h3 {
    font-size: 23px;
  }
  .portal-period {
    font-size: 7px;
    padding: 4px 6px;
  }
  .portal-rich-metrics > div {
    padding: 11px 9px;
  }
  .portal-rich-metrics .portal-sparkline {
    width: 38%;
    right: 7px;
  }
  .portal-rich-metrics small {
    font-size: 6px;
  }
  .portal-chart-card {
    padding: 12px 10px 9px;
  }
  .portal-week-chart {
    height: 117px;
  }
  .portal-popout-bottom {
    max-width: 100%;
    min-width: 0;
  }
  .portal-usage-popout {
    gap: 9px;
    padding: 16px;
  }
  .portal-usage-popout .portal-sparkline {
    width: 75px;
  }
  .portal-usage-popout .portal-popout-caption {
    max-width: 165px;
    font-size: 8px;
  }
  .portal-calendar-popout {
    width: 275px;
  }
  .portal-payment-popout {
    padding: 17px;
    gap: 12px;
  }
  .portal-human-note {
    bottom: -26px;
  }
}

/* Anchor each floating card to the screen, rather than the surrounding stage. */
.portal-screen-frame {
  position: absolute;
  top: 135px;
  left: 3%;
  right: 1%;
}
.portal-screen-frame .portal-window {
  position: relative;
  inset: auto;
}
.portal-screen-frame .portal-popout-top {
  top: auto;
  bottom: calc(100% - 24px);
}
.portal-screen-frame .portal-popout-bottom {
  top: calc(100% - 22px);
  bottom: auto;
}
@media (max-width: 1199px) {
  .portal-screen-frame {
    left: 0;
    right: 0;
  }
}
@media (max-width: 599px) {
  .portal-screen-frame {
    top: 172px;
  }
  .portal-screen-frame .portal-popout-top {
    bottom: calc(100% - 20px);
  }
  .portal-screen-frame .portal-popout-bottom {
    top: calc(100% - 18px);
  }
}
/* Reserve a quiet edge for the overlap without covering preview labels. */
.portal-screen-frame .portal-window-bar {
  height: 58px;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 14px;
  padding-bottom: 11px;
}
.portal-screen-frame .portal-screen-note {
  padding-bottom: 16px;
}
/* A single circular cut passes through the entire desktop tab stack. */
@media (min-width: 901px) {
  .portal-tour {
    --portal-cut-radius: 340px;
    --portal-cut-depth: 28px;
    --portal-cut-center-x: calc(
      100% + var(--portal-cut-radius) - var(--portal-cut-depth)
    );
    --portal-cut-center-y: 50%;
    position: relative;
    isolation: isolate;
    -webkit-mask-image: radial-gradient(
      circle var(--portal-cut-radius) at var(--portal-cut-center-x)
        var(--portal-cut-center-y),
      transparent calc(100% - 1px),
      #000 100%
    );
    mask-image: radial-gradient(
      circle var(--portal-cut-radius) at var(--portal-cut-center-x)
        var(--portal-cut-center-y),
      transparent calc(100% - 1px),
      #000 100%
    );
  }
  .portal-tour::after {
    content: "";
    position: absolute;
    pointer-events: none;
    width: calc(2 * var(--portal-cut-radius));
    height: calc(2 * var(--portal-cut-radius));
    left: calc(var(--portal-cut-center-x) - var(--portal-cut-radius));
    top: calc(var(--portal-cut-center-y) - var(--portal-cut-radius));
    border: 1px solid #b8cdd277;
    border-radius: 50%;
  }
  .portal-tour-tab {
    padding-right: calc(var(--portal-cut-depth) + 18px);
    background: linear-gradient(90deg, #ffffff00, #ffffff38);
  }
  .portal-tour-tab[aria-selected="true"] {
    background: linear-gradient(90deg, #ffffff00, #ffffffb8);
  }
  .portal-tour-tab:focus-visible {
    outline-offset: -4px;
  }
}

/* Discreet controls live beside the illustration they operate. */
.story-animation {
  position: relative;
}
.portal-screen-frame > .portal-motion-toggle {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 3;
}
@media (hover: hover) and (pointer: fine) {
  .story-motion-toggle,
  .portal-motion-toggle,
  .world-toggle {
    opacity: 0;
    pointer-events: none;
  }
  .story-animation:hover .story-motion-toggle,
  .story-animation:focus-within .story-motion-toggle,
  .portal-stage:hover .portal-motion-toggle,
  .portal-stage:focus-within .portal-motion-toggle,
  .world-art:hover .world-toggle,
  .world-art:focus-within .world-toggle {
    opacity: 0.65;
    pointer-events: auto;
  }
  .story-animation .story-motion-toggle:hover,
  .story-animation .story-motion-toggle:focus-visible,
  .portal-stage .portal-motion-toggle:hover,
  .portal-stage .portal-motion-toggle:focus-visible,
  .world-art .world-toggle:hover,
  .world-art .world-toggle:focus-visible {
    opacity: 1;
  }
}

/* The illustrative portal is a small, explorable workspace. */
.portal-sidebar > button,
.portal-sidebar > a {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  border: 0;
  border-radius: 5px;
  padding: 9px 6px;
  background: transparent;
  color: #566376;
  font: 9px var(--body);
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}
.portal-sidebar > button:hover,
.portal-sidebar > a:hover {
  background: #eaf1f6;
}
.portal-sidebar > button.is-active {
  background: #e5f0f5;
  color: #0f6f8f;
  font-weight: 600;
}
select.portal-period {
  font-family: var(--body);
  cursor: pointer;
  min-height: 28px;
  max-width: 100%;
  color-scheme: light;
}
.portal-period:focus-visible {
  outline: 2px solid #3269b2;
  outline-offset: 3px;
}
.portal-period:hover {
  border-color: #9eb8cc;
}
.portal-popout {
  transition:
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.65s,
    box-shadow 0.65s;
}
@media (hover: hover) and (pointer: fine) {
  .portal-popout-top:hover {
    transform: translateY(-5px) rotate(3.25deg);
  }
  .portal-popout-bottom:hover {
    transform: translateY(-5px) rotate(-4.25deg);
  }
  .portal-popout:hover {
    border-color: #a9c5d1;
    box-shadow: 0 24px 42px -20px #173b4e50;
  }
}
.portal-popout-top:focus-within {
  transform: translateY(-5px) rotate(3.25deg);
}
.portal-popout-bottom:focus-within {
  transform: translateY(-5px) rotate(-4.25deg);
}
.portal-stage .duration-row {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #edf1f5;
  border-radius: 4px;
  font: inherit;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.portal-stage .duration-row:hover,
.portal-stage .duration-row:focus-visible {
  background: #f0f5fa;
}
.portal-stage .duration-row.is-selected b {
  color: #0f6f8f;
  font-weight: 600;
}
.duration-track i,
.billing-track i,
.metric-minute-bar i {
  transform-origin: left center;
}
.portal-rich-metrics > div {
  overflow: visible;
}
.chart-hit {
  fill: #3269b2;
  fill-opacity: 0;
  stroke: none;
}
.portal-week-chart [data-tooltip] {
  cursor: help;
  outline: none;
}
.portal-week-chart [data-tooltip]:hover .chart-hit,
.portal-week-chart [data-tooltip]:focus-visible .chart-hit,
.portal-week-chart .is-inspected .chart-hit {
  fill-opacity: 0.065;
}
.portal-week-chart [data-tooltip]:focus-visible .chart-hit {
  stroke: #3269b2;
  stroke-width: 1;
}
.spark-target {
  fill: transparent;
  stroke: none;
  cursor: help;
}
.spark-point {
  fill: #3269b2;
  stroke: white;
  stroke-width: 1.3;
  opacity: 0;
  pointer-events: none;
}
.portal-sparkline [data-tooltip] {
  outline: none;
}
.portal-sparkline [data-tooltip]:hover .spark-point,
.portal-sparkline [data-tooltip]:focus-visible .spark-point,
.portal-sparkline .is-inspected .spark-point {
  opacity: 1;
}
.mix-ring > strong {
  pointer-events: none;
}
.mix-ring [data-tooltip] {
  cursor: help;
  pointer-events: stroke;
  outline: none;
  transition: stroke-width 0.2s;
}
.mix-ring [data-tooltip]:hover,
.mix-ring [data-tooltip]:focus-visible,
.mix-ring .is-inspected {
  stroke-width: 10;
}
.mix-ring svg {
  overflow: visible;
}
.mix-legend > span,
.mini-calendar > span,
.billing-track,
.metric-minute-bar i {
  cursor: help;
}
.mix-legend > span:focus-visible,
.mini-calendar > span:focus-visible,
.billing-track:focus-visible,
.metric-minute-bar i:focus-visible {
  outline: 1px solid #3269b2;
  outline-offset: 3px;
}
.portal-chart-tooltip {
  position: fixed;
  z-index: 100;
  max-width: min(260px, calc(100vw - 20px));
  padding: 10px 13px;
  border: 1px solid #d4e1e9;
  border-radius: 8px;
  background: #fffffff5;
  color: #183c55;
  box-shadow: 0 8px 24px #173b4e16;
  font: 11px/1.65 var(--body);
  white-space: pre-line;
}
.portal-chart-tooltip[hidden] {
  display: none;
}
.portal-demo-status {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .portal-popout {
    transition: none;
  }
  .portal-popout:hover,
  .portal-popout:focus-within {
    transform: none;
  }
}

/* At the narrowest widths, leave room for the overlapping summary card. */
@media (max-width: 389px) {
  .portal-stage[data-view="overview"] .portal-motion-toggle,
  .portal-stage[data-view="activity"] .portal-motion-toggle {
    top: calc(100% + 115px);
  }
}

/* Shared motion controls also freeze CSS-based connection signals. */
.motion-paused *,
.motion-paused *::before,
.motion-paused *::after {
  animation-play-state: paused !important;
  transition: none !important;
}

/* Keep interactive preview controls readable and metrics clear at small sizes. */
.portal-panel {
  container-type: inline-size;
}
.portal-view-heading {
  flex-wrap: wrap;
}
select.portal-period {
  font-size: 12px;
  min-height: 36px;
}
@container (max-width: 340px) {
  .portal-rich-metrics > div > span {
    min-height: 24px;
  }
  .portal-rich-metrics .portal-sparkline,
  .portal-rich-metrics .metric-minute-bar {
    position: static;
    display: flex;
    width: 100%;
    height: 24px;
    margin: 4px 0;
    align-items: center;
  }
}
@media (max-width: 599px) {
  select.portal-period,
  #request-language {
    font-size: 16px;
  }
  select.portal-period {
    min-height: 44px;
  }
}

/* Reserve control space before the deferred enhancement script runs. */
.hero-bottom {
  min-height: 44px;
}

/* Consistent legal links across the homepage and companion pages. */
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
}
.legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-links a:hover {
  color: var(--teal);
}
.footer-bottom {
  flex-wrap: wrap;
}

/* Balance the section around the screen and its floating cards. */
.portal-showcase {
  padding-block: 72px;
}
.portal-layout {
  margin-top: 0;
}
.portal-stage {
  height: auto;
  min-height: 720px;
}
@media (max-width: 900px) {
  .portal-showcase {
    padding-block: 64px;
  }
  .portal-stage {
    min-height: 760px;
  }
}

/* Keep the original outlined wordmark intact at every logo size. */
.brand .brand-logo {
  width: 258px;
  height: auto;
  background: transparent;
  border-radius: 0;
}
.site-footer .brand .brand-logo {
  width: 160px;
}
@media (max-width: 1000px) {
  .brand .brand-logo {
    width: 216px;
  }
}
@media (max-width: 599px) {
  .brand .brand-logo {
    width: 200px;
  }
}
@media (max-width: 370px) {
  .brand .brand-logo {
    width: 184px;
  }
}

@media (max-width: 720px) {
  .footer-top > p {
    grid-column: 1 / -1;
  }
}
