@font-face {
  font-family: "F37 Bolton";
  src: url("../agent/visual/fonts/F37Bolton-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "F37 Bolton";
  src: url("../agent/visual/fonts/F37Bolton-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

:root {
  --paper: #f8f8f6;
  --ink: #000;
  --green: #00dc0b;
  --green-dark: #009f08;
  --blue: #cfe2f7;
  --muted: rgba(0, 0, 0, .52);
  --line: rgba(0, 0, 0, .1);
  --ease-out: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "F37 Bolton", Helvetica, Arial, sans-serif;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 14px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  transform: translateY(-180%);
  transition-property: transform;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.skip-link:focus { transform: translateY(0); }

.site-nav {
  --nav-control-height: 44px;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 0 clamp(20px, 3.2vw, 62px);
  background: rgba(248, 248, 246, .46);
  box-shadow: 0 1px 0 transparent;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transition-property: background-color, box-shadow, backdrop-filter;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(.2, 0, 0, 1);
}

.site-nav.is-scrolled {
  background: rgba(248, 248, 246, .86);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .07), 0 10px 36px rgba(0, 0, 0, .035);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.site-nav-inner {
  display: grid;
  width: min(100%, 1520px);
  min-height: 68px;
  margin: 0 auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(22px, 4vw, 72px);
}

.site-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
}

.site-brand img {
  display: block;
  width: clamp(132px, 10vw, 176px);
  height: auto;
}

.site-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.site-nav-link.uic-nav-item {
  display: inline-flex;
  min-height: var(--nav-control-height);
  height: var(--nav-control-height);
  align-items: center;
  padding: 0 clamp(12px, 1.05vw, 18px);
  background: rgba(248, 248, 246, .7);
  color: rgba(0, 0, 0, .62);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.012em;
  text-decoration: none;
  scale: 1;
  transition-property: scale, color, background-color;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.site-nav-link.uic-nav-item:hover,
.site-nav-link.uic-nav-item:focus-visible,
.site-nav-link.uic-nav-item[aria-current="page"] {
  background: #ececea;
  color: #000;
}

.site-nav-link.uic-nav-item:active { transform: none; scale: .96; }

.site-nav-cta.uic-glass-green,
.chapter-cta.uic-glass-green {
  display: inline-flex;
  min-height: var(--nav-control-height);
  height: var(--nav-control-height);
  align-items: center;
  gap: 10px;
  padding: 0 15px 0 17px;
  color: #001802;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.014em;
  text-decoration: none;
  scale: 1;
  transition-property: scale, background-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.site-nav-cta.uic-glass-green:active,
.chapter-cta.uic-glass-green:active { transform: none; scale: .96; }

.site-nav-cta svg,
.chapter-cta svg {
  width: 15px;
  height: 15px;
  transform: translateX(1px);
}

.site-nav a:focus-visible,
.site-footer a:focus-visible,
.chapter-actions a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.about-hero {
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: clamp(138px, 18vh, 218px) clamp(24px, 6vw, 110px) clamp(94px, 12vh, 154px);
  background: var(--paper);
}

.about-hero-inner {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.about-statement {
  max-width: 17.2ch;
  margin: 0;
  font-size: clamp(54px, 6.25vw, 102px);
  font-weight: 400;
  line-height: 1.055;
  letter-spacing: -.055em;
  text-wrap: pretty;
}

.story-segment {
  animation: story-enter 620ms var(--ease-out) both;
}

.story-segment:nth-of-type(2) { animation-delay: 80ms; }
.story-segment:nth-of-type(3) { animation-delay: 160ms; }

.story-muted { color: rgba(0, 0, 0, .43); }

.inline-art {
  display: inline-block;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  pointer-events: none;
  user-select: none;
}

.inline-art--mascot {
  height: 1.08em;
  margin: 0 .045em 0 .01em;
  vertical-align: -.22em;
}

.channel-word {
  display: inline-flex;
  align-items: center;
  gap: .12em;
  white-space: nowrap;
}

.channel-word img {
  display: block;
  width: .72em;
  height: .72em;
  flex: none;
  object-fit: contain;
}

.about-chapter {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: clamp(104px, 12vw, 190px) clamp(24px, 6vw, 110px);
}

.chapter-inner {
  display: grid;
  width: min(100%, 1500px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(54px, 9vw, 150px);
}

.chapter-copy {
  position: relative;
  z-index: 2;
}

.chapter-copy h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(68px, 8.3vw, 138px);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.066em;
  text-wrap: balance;
}

.chapter-copy p {
  max-width: 35ch;
  margin: clamp(30px, 4vw, 54px) 0 0;
  color: rgba(0, 0, 0, .52);
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.38;
  letter-spacing: -.025em;
  text-wrap: pretty;
}

.chapter-copy p strong {
  color: #000;
  font-weight: 500;
}

.chapter-art {
  position: relative;
  min-height: min(70svh, 760px);
  margin: 0;
}

.chapter-art img {
  position: absolute;
  inset: 50% auto auto 50%;
  display: block;
  width: min(100%, 660px);
  height: auto;
  transform: translate(-50%, -50%);
}

.chapter--dark {
  min-height: 118svh;
  padding-bottom: clamp(180px, 20vw, 300px);
  background: linear-gradient(180deg, #080809 0%, #050506 78%, var(--paper) 100%);
  color: #fff;
}

.chapter--dark .chapter-copy h2 { max-width: 8ch; }

.chapter--dark .chapter-copy p { color: rgba(255, 255, 255, .48); }
.chapter--dark .chapter-copy p strong { color: #fff; }

.chapter--dark .chapter-art img {
  width: min(84%, 570px);
  transform: translate(-48%, -50%) rotate(7deg);
}

.chapter--trust {
  background: var(--paper);
}

.chapter--trust .chapter-inner {
  grid-template-columns: minmax(340px, .72fr) minmax(0, 1fr);
}

.chapter--trust .chapter-art { order: -1; }

.chapter--trust .chapter-art img {
  width: min(91%, 650px);
}

.chapter--trust .chapter-copy h2 { max-width: 8.4ch; }

.trust-principles {
  display: grid;
  max-width: 620px;
  margin-top: clamp(42px, 5vw, 72px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.trust-principle {
  padding: 24px 28px 0 0;
}

.trust-principle + .trust-principle {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.trust-principle strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.025em;
}

.trust-principle span {
  display: block;
  margin-top: 8px;
  color: rgba(0, 0, 0, .45);
  font-size: 14px;
  line-height: 1.45;
  text-wrap: pretty;
}

.chapter--team {
  min-height: 104svh;
  background: linear-gradient(180deg, var(--paper) 0%, var(--blue) 20%, var(--blue) 100%);
}

.chapter--team .chapter-copy h2 { max-width: 8.2ch; }

.chapter--team .chapter-art img {
  width: min(87%, 600px);
  transform: translate(-47%, -48%) rotate(3deg);
}

.chapter-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: clamp(34px, 4vw, 54px);
}

.chapter-cta.uic-glass-green {
  --nav-control-height: 54px;
  height: 54px;
  padding: 0 22px 0 24px;
  font-size: 16px;
}

.chapter-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  color: rgba(0, 0, 0, .68);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition-property: color;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.chapter-link:hover { color: #000; }

.chapter-link svg {
  width: 16px;
  height: 16px;
  transition-property: transform;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.chapter-link:hover svg { transform: translateX(3px); }

.site-footer {
  padding: 0 clamp(24px, 6vw, 110px) clamp(36px, 4vw, 68px);
  background: var(--paper);
  color: #000;
}

.site-footer-inner {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding-top: clamp(54px, 6vw, 88px);
  border-top: 1px solid rgba(0, 0, 0, .12);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, .6fr));
  gap: clamp(34px, 6vw, 92px);
}

.site-footer-lockup {
  display: inline-flex;
  width: clamp(152px, 13vw, 210px);
}

.site-footer-lockup img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer-brand p {
  max-width: 30ch;
  margin: 22px 0 0;
  color: rgba(0, 0, 0, .48);
  font-size: 14px;
  line-height: 1.45;
  text-wrap: pretty;
}

.site-footer-brand > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: rgba(0, 0, 0, .72);
  text-decoration-color: rgba(0, 0, 0, .24);
  text-underline-offset: 3px;
}

.site-footer-column strong {
  display: block;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, .38);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.site-footer-column a {
  display: flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  color: rgba(0, 0, 0, .72);
  font-size: 14px;
  text-decoration: none;
  transition-property: color;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.site-footer-column a:hover,
.site-footer-brand > a:hover { color: #000; }

.site-footer-meta {
  display: grid;
  margin-top: clamp(58px, 7vw, 104px);
  padding-top: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.site-footer-legal {
  max-width: 78ch;
  margin: 0;
  color: rgba(0, 0, 0, .38);
  font-size: 11px;
  line-height: 1.5;
  text-wrap: pretty;
}

.site-footer-copyright {
  margin: 0;
  color: rgba(0, 0, 0, .38);
  font-size: 11px;
  white-space: nowrap;
}

.site-footer-vz-link {
  color: inherit;
  text-decoration: none;
  transition-property: color;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.site-footer-vz-link:hover { color: #000; }

@keyframes story-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (min-width: 801px) and (max-width: 1120px) {
  .site-nav { --nav-control-height: 42px; }
  .site-nav-inner { gap: 18px; }
  .site-nav-link.uic-nav-item { padding: 0 10px; font-size: 13px; }
  .site-nav-cta.uic-glass-green { padding: 0 13px 0 15px; font-size: 13px; }
  .chapter-inner { gap: 48px; }
  .site-footer-grid { grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(150px, .55fr)); }
  .site-footer-column:last-child { grid-column: 2; }
}

@media (max-width: 900px) {
  .chapter-inner,
  .chapter--trust .chapter-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .chapter-art,
  .chapter--trust .chapter-art {
    min-height: min(66svh, 620px);
    order: initial;
  }

  .chapter-copy h2 { max-width: 8.8ch; }
  .chapter--dark .chapter-art { order: -1; }
}

@media (max-width: 800px) {
  html { scroll-padding-top: 68px; }
  .site-nav { --nav-control-height: 42px; padding: 0 16px; }
  .site-nav-inner {
    min-height: 62px;
    grid-template-columns: auto 1fr;
    gap: 14px;
  }
  .site-nav-links { display: none; }
  .site-nav-cta.uic-glass-green {
    justify-self: end;
    padding: 0 13px 0 15px;
    font-size: 13px;
  }
  .site-nav-cta svg { width: 14px; height: 14px; }
  .site-brand img { width: 128px; }

  .about-hero {
    min-height: 100svh;
    padding: 116px 20px 78px;
  }

  .about-statement {
    max-width: 13.3ch;
    font-size: clamp(43px, 12.25vw, 68px);
    line-height: 1.075;
    letter-spacing: -.052em;
  }

  .channel-word { gap: .1em; }
  .channel-word img { width: .68em; height: .68em; }

  .about-chapter {
    min-height: auto;
    padding: 104px 20px;
  }

  .chapter--dark {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 188px;
  }

  .chapter-copy h2 {
    font-size: clamp(60px, 17vw, 92px);
    line-height: .93;
  }

  .chapter-copy p {
    margin-top: 28px;
    font-size: 18px;
  }

  .chapter-art,
  .chapter--trust .chapter-art { min-height: 58svh; }
  .chapter--dark .chapter-art img { width: min(78%, 440px); }
  .chapter--trust .chapter-art img { width: min(82%, 500px); }
  .chapter--team .chapter-art img { width: min(78%, 440px); }

  .trust-principles { grid-template-columns: 1fr; }
  .trust-principle { padding: 20px 0; }
  .trust-principle + .trust-principle {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .chapter--team { padding-top: 154px; }
  .chapter-actions { align-items: stretch; }
  .chapter-cta.uic-glass-green { justify-content: space-between; }
  .chapter-link { padding: 0 4px; }

  .site-footer { padding: 0 20px 34px; }
  .site-footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .site-footer-column:last-child { grid-column: auto; }
  .site-footer-meta { grid-template-columns: 1fr; gap: 18px; }
  .site-footer-copyright { white-space: normal; }
}

@media (max-width: 420px) {
  .about-statement { font-size: clamp(40px, 11.8vw, 52px); }
  .chapter-art,
  .chapter--trust .chapter-art { min-height: 50svh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .story-segment { animation: none; }
  .site-nav,
  .site-nav-link,
  .site-nav-cta,
  .chapter-link,
  .chapter-link svg { transition: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-nav,
  .site-nav.is-scrolled {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  .site-nav { background: #fff; box-shadow: 0 1px 0 #000; }
  .site-nav-link.uic-nav-item { color: #000; }
}
