@charset "UTF-8" ;
:root {
  --blue: #1045da;
  --blue-dark: #0634b8;
  --ink: #17212c;
  --muted: #626b76;
  --line: #dfe3e9;
  --paper: #fff;
  --mist: #f5f7fa;
  --serif: "Iowan Old Style","Baskerville","Palatino Linotype",Georgia,serif;
  --sans: Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --wrap: 1328px
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}
body.modal-open {
  overflow: hidden
}
button,input,select,textarea {
  font: inherit
}
button,a,input,select,textarea {
  -webkit-tap-highlight-color: transparent
}
button,a {
  touch-action: manipulation
}
button {
  cursor: pointer
}
a {
  color: inherit;
  text-decoration: none
}
button {
  color: inherit
}
img {
  max-width: 100%;
  display: block
}
button {
  border: 0
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}
h1,h2,h3,h4,p {
  margin: 0
}
h1,h2,h3 {
  font-weight: 400
}
em {
  font-weight: 400
}
::selection {
  background: #dce7ff;
  color: #002f9e
}
:focus-visible {
  outline: 3px solid #5989ff;
  outline-offset: 5px
}
button:disabled {
  cursor: wait
}
[hidden] {
  display: none!important
}
.wrap {
  width: min(var(--wrap),calc(100% - 112px));
  margin-inline: auto
}
.eyebrow {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .19em;
  font-weight: 650
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px 22px
}
.skip-link:focus {
  transform: none
}
.section-space {
  padding-block: 116px
}
.site-header {
  height: 94px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s
}
.site-header.scrolled {
  border-color: var(--line)
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}
.brand {
  flex-shrink: 0;
  display: inline-flex
}
.brand img {
  width: 132px;
  height: auto
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 38px
}
.nav-link {
  background: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 18px 0;
  white-space: nowrap
}
.nav-link:hover {
  color: var(--blue)
}
.chevron {
  width: 14px;
  height: 14px;
  transition: transform .2s
}
.products-toggle[aria-expanded=true] .chevron {
  transform: rotate(180deg)
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: var(--blue);
  color: white;
  min-height: 54px;
  padding: 14px 23px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 550;
  transition: background .2s,transform .2s,box-shadow .2s
}
.button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px #1244cf18
}
.button span {
  font-size: 19px;
  line-height: 1
}
.button-small {
  min-height: 44px;
  padding: 10px 19px;
  gap: 24px
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  background: transparent;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid transparent
}
.text-link:hover {
  color: var(--blue);
  border-bottom-color: currentColor
}
.text-link span {
  font-size: 19px
}
.mobile-toggle {
  display: none
}
.products-menu {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(940px,calc(100vw - 64px));
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: #fff;
  padding: 32px;
  box-shadow: 0 18px 60px #15264d1c;
  border: 1px solid var(--line);
  border-radius: 8px
}
.menu-intro {
  padding: 10px 28px 10px 6px;
  border-right: 1px solid var(--line)
}
.menu-intro p {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.2;
  margin: 22px 0
}
.menu-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  padding-left: 22px
}
.menu-products a {
  padding: 13px;
  border-radius: 5px
}
.menu-products a:hover {
  background: var(--mist)
}
.menu-products strong {
  display: block;
  font-size: 15px;
  font-weight: 550
}
.menu-products span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px
}
.hero {
  display: grid;
  grid-template-columns: 49% 51%;
  min-height: 652px;
  position: relative;
  padding-block: 48px 62px
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 16px
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  letter-spacing: .2em
}
.eyebrow-line {
  display: block;
  width: 21px;
  height: 1px;
  background: var(--blue)
}
h1 {
  font-family: var(--serif);
  font-size: clamp(60px,6.05vw,91px);
  letter-spacing: -.057em;
  line-height: 1.035;
  margin-top: 27px
}
h1 em {
  color: var(--blue);
  letter-spacing: -.064em;
  white-space: nowrap
}
.hero-description {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 26px
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-top: 30px
}
.hero-footnote {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 49px;
  font-size: 12px;
  color: #78808a
}
.line-mark {
  width: 19px;
  height: 15px;
  border-top: 1px solid #b3bdce;
  border-bottom: 1px solid #b3bdce;
  position: relative
}
.line-mark:after {
  content: "";
  position: absolute;
  top: 6px;
  width: 14px;
  height: 1px;
  background: #b3bdce
}
.hero-visual {
  position: relative;
  margin: -35px -56px -28px -32px;
  overflow: hidden;
  background: #f4f6f9
}
.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  min-height: 610px
}
.lens-objects,.lens-glare {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  stroke: none
}
.lens-glare {
  opacity: 0;
  mix-blend-mode: screen
}
.lens-object-drift {
  transform-origin: 985px 500px;
  animation: lens-object-drift 8.5s ease-in-out infinite paused
}
.lens-object-scale {
  transform-origin: 985px 500px;
  transform: scale(1);
  transition: transform .9s cubic-bezier(.2,.65,.3,1)
}
.lens-zoomed .lens-object-scale {
  transform: scale(1.6)
}
.lens-object-shadow {
  fill: url(#lens-object-shadow-fill);
  transform-origin: 985px 743px;
  animation: lens-object-shadow 8.5s ease-in-out infinite paused
}
@keyframes lens-object-drift {
  0%,100% { transform: translate(-9px,8px) rotate(-2deg) }
  50% { transform: translate(10px,-13px) rotate(2deg) }
}
@keyframes lens-object-shadow {
  0%,100% { opacity: .65; transform: scaleX(1) }
  50% { opacity: .35; transform: scaleX(.88) }
}
.lens-ready .lens-glare {
  opacity: 1
}
.lens-reflection {
  fill: url(#lens-reflection-light);
  opacity: 0;
  animation: lens-reflection-drift 11s ease-in-out infinite paused
}
.lens-rim-light {
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 46 700;
  opacity: 0;
  animation: lens-rim-glint 11s ease-in-out infinite paused
}
.lens-playing .lens-reflection,.lens-playing .lens-rim-light,
.lens-playing .lens-object-drift,.lens-playing .lens-object-shadow {
  animation-play-state: running
}
@keyframes lens-reflection-drift {
  0%,8% { opacity: 0; transform: translate(-42px,-14px) }
  28% { opacity: .19 }
  51%,100% { opacity: 0; transform: translate(82px,24px) }
}
@keyframes lens-rim-glint {
  0%,20% { opacity: 0; stroke-dashoffset: 35 }
  32% { opacity: .8 }
  54%,100% { opacity: 0; stroke-dashoffset: -410 }
}
.caption-controls {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: -7px
}
.lens-zoom-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  min-width: 67px;
  padding: 4px 9px;
  border: 1px solid #66758235;
  border-radius: 18px;
  background: #ffffff70;
  color: #536171;
  font-size: 12px;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
  transition: background .2s,color .2s
}
.lens-zoom-toggle svg {
  width: 14px;
  height: 14px
}
.lens-motion-toggle {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 7px;
  color: #536171;
  background: #ffffff70;
  border: 1px solid #66758235;
  border-radius: 50%;
  transition: background .2s,color .2s
}
.lens-motion-toggle[hidden],.lens-zoom-toggle[hidden] {
  display: none
}
.lens-motion-toggle:hover,.lens-zoom-toggle:hover {
  color: var(--blue);
  background: #ffffffe0
}
.lens-motion-toggle:focus-visible,.lens-zoom-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px
}
.lens-motion-toggle svg {
  width: 16px;
  height: 16px
}
.lens-play-icon,.lens-motion-toggle[data-paused] .lens-pause-icon {
  display: none
}
.lens-motion-toggle[data-paused] .lens-play-icon {
  display: block
}
@media(prefers-reduced-motion:reduce) {
  .lens-glare,.lens-motion-toggle {
    display: none
  }
}
.visual-caption {
  position: absolute;
  top: 30px;
  left: 35px;
  right: 35px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: .18em;
  color: #68717b
}
.caption-index {
  letter-spacing: .12em;
  font-size: 12px
}
.discovery-note {
  position: absolute;
  bottom: 16px;
  left: 42px;
  right: 36px;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 23px;
  background: rgba(255,255,255,.91);
  backdrop-filter: blur(18px);
  border: 1px solid #fff;
  border-radius: 6px;
  box-shadow: 0 10px 30px #243c5712;
  transition: transform .3s
}
.discovery-note:hover {
  transform: translateY(-5px)
}
.note-symbol {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  background: #edf2ff;
  color: var(--blue);
  border-radius: 50%
}
.note-symbol svg {
  width: 27px;
  height: 27px
}
.discovery-note strong {
  font-size: 14px;
  font-weight: 550;
  display: block
}
.discovery-note small {
  font-size: 12px;
  color: var(--muted)
}
.note-arrow {
  margin-left: auto;
  color: var(--blue);
  font-size: 22px
}
.audience-strip {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-block: 31px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}
.audience-strip p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  min-width: 215px
}
.audience-strip strong {
  font-weight: 500;
  color: var(--ink)
}
.audience-strip>div {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 25px
}
.audience-strip a {
  font-size: 14px;
  color: #555f6b
}
.audience-strip a:hover {
  color: var(--blue)
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 54px
}
h2 {
  font-family: var(--serif);
  font-size: clamp(40px,4.4vw,62px);
  line-height: 1.08;
  letter-spacing: -.043em
}
h2 em {
  color: var(--muted)
}
.section-heading h2 {
  margin-top: 21px
}
.section-heading>p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 4px
}
.product-explorer {
  display: grid;
  grid-template-columns: 278px 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  min-height: 437px
}
.product-tabs {
  padding: 20px 0;
  background: #fafbfc;
  border-right: 1px solid var(--line)
}
.product-tab {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  background: transparent;
  text-align: left;
  padding: 18px 23px;
  color: #697380;
  font-size: 16px;
  position: relative
}
.product-tab:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: transparent
}
.tab-number {
  font-size: 12px;
  letter-spacing: .07em;
  color: #919aaa
}
.tab-arrow {
  margin-left: auto;
  font-size: 19px;
  opacity: 0
}
.product-tab:hover {
  color: var(--blue);
  background: #f0f4fb
}
.product-tab.active {
  color: var(--blue);
  background: #edf2fd
}
.product-tab.active:before {
  background: var(--blue)
}
.product-tab.active .tab-arrow {
  opacity: 1
}
.product-tab.active .tab-number {
  color: var(--blue)
}
.product-panel {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  align-items: center;
  padding: 38px 30px 38px 36px;
  gap: 28px;
  min-width: 0
}
.product-panel-copy>.eyebrow {
  color: var(--blue);
  font-size: 12px
}
.product-panel h3 {
  font-family: var(--serif);
  font-size: 39px;
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 22px 0 20px
}
.product-panel-copy>p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted)
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 25px
}
.feature-tags span {
  font-size: 12px;
  border: 1px solid #dfe5ee;
  background: #fff;
  padding: 4px 8px;
  border-radius: 3px;
  white-space: nowrap
}
.product-detail-trigger {
  margin-top: 21px;
  color: var(--blue)
}
.product-interface {
  background: #fafbfd;
  border: 1px solid #e2e7ef;
  border-radius: 6px;
  padding: 20px 17px;
  box-shadow: 0 12px 24px #17212c07;
  transform: rotate(-2deg);
  transition: transform .4s;
  min-width: 0
}
.product-panel:hover .product-interface {
  transform: rotate(0)
}
.interface-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 25px;
  gap: 10px
}
.interface-brand {
  font-weight: 600
}
.interface-dots {
  letter-spacing: 2px;
  color: #969fab
}
.search-example {
  display: flex;
  gap: 9px;
  align-items: center;
  background: #fff;
  border: 1px solid #d4def5;
  border-radius: 5px;
  padding: 12px 9px;
  font-size: 12px;
  box-shadow: 0 3px 8px #2358cd07
}
.search-example svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--blue)
}
.interface-meta {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin: 17px 0 8px;
  font-size: 12px;
  color: #7f8998
}
.example-result {
  background: white;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #e9edf3;
  padding: 14px 10px;
  margin-top: 7px;
  border-radius: 3px
}
.result-icon {
  font-family: var(--serif);
  display: grid;
  place-items: center;
  width: 32px;
  height: 39px;
  background: #edf2fe;
  color: var(--blue);
  flex-shrink: 0;
  font-size: 13px
}
.example-result>div {
  min-width: 0
}
.example-result strong {
  display: block;
  font-size: 12px;
  font-weight: 550;
  line-height: 1.45
}
.example-result div span {
  display: block;
  font-size: 12px;
  color: #8c95a2;
  margin-top: 4px
}
.example-result>span:last-child {
  color: #8c95a2;
  font-size: 12px;
  margin-left: auto
}
.interface-footer {
  margin-top: 18px;
  color: #7b8697;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px
}
.mini-spark {
  color: var(--blue);
  font-size: 14px
}
.generic-interface .example-result {
  padding-block: 17px
}
.generic-interface .result-icon {
  border-radius: 50%;
  width: 26px;
  height: 26px;
  font-family: var(--sans);
  font-size: 12px
}
.generic-interface .interface-top {
  margin-bottom: 20px
}
.generic-interface .example-result strong {
  font-size: 12px
}
.generic-interface .example-result div span {
  font-size: 12px
}
.library-section {
  background: #f4f6f9;
  padding-block: 90px
}
.library-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 82px;
  align-items: center
}
.library-art-frame {
  position: relative;
  min-height: 576px;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
  background: #edf1f6
}
.library-art-frame>img {
  width: 100%;
  height: 100%;
  min-height: 576px;
  object-fit: cover
}
.art-corner-label {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #404d5e;
  display: flex;
  flex-direction: column;
  gap: 9px
}
.art-corner-label .eyebrow {
  font-size: 12px
}
.art-corner-label>span:last-child {
  font-size: 12px
}
.library-copy h2 {
  font-size: 54px;
  margin: 20px 0 23px
}
.library-copy>p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted)
}
.library-features {
  margin-top: 32px
}
.library-features>div {
  display: flex;
  gap: 18px;
  border-top: 1px solid #dce1e8;
  padding-block: 19px
}
.library-features>div>span {
  font-size: 12px;
  color: var(--blue);
  padding-top: 4px
}
.library-features h3 {
  font-size: 16px;
  font-weight: 550;
  margin-bottom: 7px
}
.library-features p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65
}
.library-copy>p.supporting-features {
  font-size: 12px;
  border-top: 1px solid #dce1e8;
  padding-top: 17px;
  color: #7a828e
}
.library-copy>.text-link {
  color: var(--blue);
  margin-top: 18px
}
.audience-tabs {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--line);
  gap: 16px
}
.audience-tab {
  padding: 19px 4px;
  background: none;
  font-size: 14px;
  text-align: left;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: #7a8490
}
.audience-tab.active {
  border-bottom-color: var(--blue);
  color: var(--blue)
}
.audience-tab:hover {
  color: var(--blue)
}
.audience-panel {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 100px;
  padding-top: 54px;
  min-height: 362px
}
.audience-panel .eyebrow {
  color: #7a8490;
  font-size: 12px
}
.audience-panel h3 {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin: 18px 0
}
.audience-panel>div>p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 400px
}
.audience-panel .text-link {
  margin-top: 20px;
  color: var(--blue)
}
.audience-outcomes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px
}
.audience-outcomes article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 4px 16px
}
.audience-outcomes article>span {
  font-size: 12px;
  color: #8a94a0;
  letter-spacing: .1em;
  grid-row: 1/3;
  padding-top: 3px
}
.audience-outcomes h4 {
  font-size: 16px;
  font-weight: 550
}
.audience-outcomes p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7
}
.foundation-section {
  background: #102740;
  color: #fff;
  padding: 84px 0 0
}
.foundation-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: end
}
.foundation-top .eyebrow {
  color: #a4b7cf
}
.foundation-top h2 {
  margin-top: 22px
}
.foundation-top h2 em {
  color: #98b8ea
}
.foundation-top>p {
  font-size: 16px;
  color: #afc0d4;
  line-height: 1.8;
  padding-bottom: 5px;
  max-width: 400px
}
.foundation-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 38px;
  margin-block: 59px 56px
}
.foundation-grid article {
  border-top: 1px solid #ffffff26;
  padding-top: 28px
}
.foundation-grid svg {
  height: 30px;
  width: 30px;
  color: #87abf0;
  margin-bottom: 25px
}
.foundation-grid h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px
}
.foundation-grid p {
  color: #afc0d4;
  font-size: 13px;
  line-height: 1.8
}
.foundation-bottom {
  padding: 24px 0;
  border-top: 1px solid #ffffff26;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #91a5bf;
  font-size: 12px
}
.foundation-bottom i {
  font-style: normal;
  color: #6885a7;
  padding-inline: 9px
}
.closing-section {
  padding-block: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px
}
.closing-section h2 {
  margin-top: 24px
}
.closing-section h2 em {
  color: var(--blue)
}
.closing-section>div:last-child {
  padding-right: 30px
}
.closing-section p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 25px
}
.site-footer {
  background: #f6f7f9;
  padding-block: 38px 23px;
  border-top: 1px solid var(--line)
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 30px
}
.footer-top .brand img {
  width: 111px
}
.footer-top>p {
  font-size: 12px;
  color: #7a8490;
  flex: 1
}
.footer-top>a:not(.brand) {
  font-size: 12px
}
.footer-top>a:hover {
  color: var(--blue)
}
.back-top {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #d7dee8;
  border-radius: 50%
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 12px;
  color: #8b949e;
  margin-top: 31px;
  padding-top: 21px;
  border-top: 1px solid #e3e7ed
}
dialog {
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  padding: 48px;
  max-width: min(660px,calc(100vw - 32px));
  max-height: calc(100dvh - 48px);
  box-shadow: 0 30px 150px #0003;
  overflow: auto
}
dialog::backdrop {
  background: #0c1d3999;
  backdrop-filter: blur(5px)
}
dialog h2 {
  font-size: 43px;
  margin: 18px 0 24px
}
dialog>.eyebrow {
  color: var(--blue);
  padding-right: 25px
}
dialog>p {
  color: var(--muted);
  font-size: 15px
}
dialog .button {
  margin-top: 18px
}
.dialog-close {
  position: absolute;
  right: 18px;
  top: 15px;
  width: 36px;
  height: 36px;
  font-size: 27px;
  background: var(--mist);
  border-radius: 50%;
  line-height: 1
}
.detail-dialog ul {
  padding-left: 20px;
  margin-block: 25px
}
.detail-dialog li {
  margin-bottom: 13px;
  font-size: 15px;
  color: #435064
}
.dialog-note {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 13px!important
}
form {
  margin-top: 25px
}
form label {
  display: block;
  font-size: 12px;
  font-weight: 550;
  margin-bottom: 15px
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px
}
input,select,textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid #d1d9e4;
  background: #fbfcfe;
  padding: 11px 12px;
  border-radius: 4px;
  font-size: 14px;
  min-height: 45px;
  color: var(--ink)
}
textarea {
  resize: vertical
}
input::placeholder,textarea::placeholder {
  color: #87929f
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px
}
#inquiry-result {
  margin-top: 25px
}
#inquiry-result h3 {
  font-size: 22px
}
#inquiry-result>p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px
}
#inquiry-summary {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: var(--mist);
  padding: 20px;
  font: 13px/1.7 var(--sans);
  max-height: 240px;
  overflow: auto
}
.result-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap
}
.result-actions .button {
  margin: 0
}
#inquiry-status {
  min-height: 23px
}
.reveal {
  opacity: 1;
  transform: none
}
.js-motion .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease,transform .7s ease
}
.js-motion .reveal.visible {
  opacity: 1;
  transform: none
}
@media(min-width:1600px) {
  .hero {
    min-height: 720px;
    padding-top: 62px
  }
  .hero-visual {
    margin-right: -45px
  }
  .hero-art {
    min-height: 650px
  }
  .hero-copy {
    padding-top: 32px
  }
  h1 {
    font-size: 94px
  }
  .hero-description {
    font-size: 17px
  }
}
@media(max-width:1200px) {
  .wrap {
    width: calc(100% - 72px)
  }
  .main-nav {
    gap: 25px
  }
  .hero {
    grid-template-columns: 51% 49%;
    min-height: 610px
  }
  .hero-visual {
    margin-right: -36px;
    margin-left: -22px
  }
  .hero-art {
    min-height: 585px
  }
  .hero-actions {
    gap: 20px
  }
  .hero-actions .button {
    gap: 20px
  }
  .hero-actions .text-link {
    gap: 12px
  }
  h1 {
    font-size: clamp(58px,6.3vw,78px)
  }
  .product-explorer {
    grid-template-columns: 238px 1fr
  }
  .product-panel {
    gap: 20px;
    padding: 30px 23px
  }
  .product-panel h3 {
    font-size: 34px
  }
  .product-tab {
    font-size: 14px;
    padding-inline: 20px
  }
  .library-grid {
    gap: 55px
  }
  .library-copy h2 {
    font-size: 47px
  }
  .audience-panel {
    gap: 50px
  }
  .audience-outcomes article {
    grid-template-columns: 91px 1fr
  }
  .foundation-top {
    gap: 60px
  }
  .foundation-grid {
    gap: 28px
  }
}
@media(max-width:1000px) {
  .hero-actions {
    flex-wrap: wrap;
    gap: 12px 24px
  }
  .hero-visual {
    margin-left: 0
  }
  .hero-visual .visual-caption {
    left: 20px;
    right: 20px
  }
  .hero-visual .caption-index {
    display: none
  }
  .discovery-note {
    left: 20px;
    right: 20px;
    bottom: 16px;
    padding: 16px;
    gap: 10px
  }
  .note-symbol {
    width: 34px;
    height: 34px
  }
  .discovery-note strong {
    font-size: 12px
  }
  .discovery-note small {
    font-size: 12px
  }
  .hero-description {
    font-size: 15px
  }
  .desktop-break {
    display: none
  }
  .hero-footnote {
    margin-top: 28px
  }
  .audience-strip {
    gap: 20px
  }
  .audience-strip p {
    min-width: 180px
  }
  .audience-strip>div {
    gap: 15px
  }
  .audience-strip a {
    font-size: 12px
  }
  .section-space {
    padding-block: 85px
  }
  .section-heading>p {
    max-width: 290px
  }
  .product-explorer {
    grid-template-columns: 215px 1fr
  }
  .product-panel {
    grid-template-columns: 1fr
  }
  .product-interface {
    transform: none;
    margin-top: 4px
  }
  .product-panel-copy>p {
    max-width: 470px
  }
  .product-panel h3 {
    font-size: 38px
  }
  .product-panel-copy .feature-tags {
    margin-top: 16px
  }
  .interface-top {
    margin-bottom: 16px
  }
  .example-result {
    padding: 11px
  }
  .example-result strong {
    font-size: 12px
  }
  .example-result div span,.interface-meta,.interface-footer {
    font-size: 12px
  }
  .search-example {
    font-size: 12px
  }
  .product-tabs {
    display: flex;
    flex-direction: column;
    justify-content: center
  }
  .product-tab {
    min-height: 85px
  }
  .library-grid {
    gap: 35px
  }
  .library-copy h2 {
    font-size: 42px
  }
  .library-art-frame,.library-art-frame>img {
    min-height: 600px
  }
  .audience-tabs {
    gap: 10px
  }
  .audience-tab {
    font-size: 12px
  }
  .audience-panel {
    gap: 36px;
    grid-template-columns: 1fr 1.15fr
  }
  .audience-outcomes article {
    display: block
  }
  .audience-outcomes article>span {
    display: block;
    margin-bottom: 8px
  }
  .audience-outcomes p {
    margin-top: 7px
  }
  .foundation-bottom {
    flex-direction: column;
    gap: 8px
  }
  .foundation-top h2 {
    font-size: 46px
  }
  .footer-top {
    gap: 20px
  }
  .footer-top>p {
    max-width: 180px
  }
}
@media(max-width:1000px) {
  .site-header {
    height: 77px
  }
  .brand img {
    width: 118px
  }
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 9px;
    background: transparent
  }
  .mobile-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s
  }
  .mobile-toggle[aria-expanded=true] span:first-child {
    transform: translateY(3.5px) rotate(45deg)
  }
  .mobile-toggle[aria-expanded=true] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg)
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: white;
    padding: 22px 24px 30px;
    border-bottom: 1px solid var(--line);
    max-height: calc(100dvh - 76px);
    overflow: auto;
    box-shadow: 0 20px 30px #1027400a
  }
  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0
  }
  .nav-link {
    padding: 15px 0;
    font-size: 16px;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f5
  }
  .header-contact {
    margin-top: 22px;
    align-self: flex-start
  }
  .products-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    display: block;
    border: 0;
    border-radius: 0;
    padding: 15px 0
  }
  .menu-intro {
    display: none
  }
  .menu-products {
    display: grid;
    padding: 0;
    gap: 0
  }
  .menu-products a {
    padding: 12px 6px
  }
  .menu-products span {
    font-size: 12px
  }
  .menu-products strong {
    font-size: 14px
  }
}
@media(max-width:760px) {
  html {
    scroll-padding-top: 90px
  }
  .wrap {
    width: calc(100% - 40px)
  }
  .hero {
    display: block;
    padding-top: 32px;
    padding-bottom: 0;
    min-height: 0
  }
  .hero-copy {
    padding: 0
  }
  .hero-eyebrow {
    font-size: 12px;
    gap: 9px;
    letter-spacing: .17em
  }
  h1 {
    font-size: clamp(51px,10.8vw,76px);
    line-height: 1.015;
    margin-top: 24px;
    letter-spacing: -.047em
  }
  h1 em {
    white-space: normal;
    letter-spacing: -.055em
  }
  .hero-description {
    font-size: 15px;
    max-width: 460px;
    margin-top: 24px
  }
  .hero-actions {
    margin-top: 25px;
    gap: 22px
  }
  .button {
    padding: 13px 19px;
    min-height: 50px
  }
  .hero-actions .text-link {
    font-size: 13px
  }
  .hero-footnote {
    margin-top: 25px;
    font-size: 12px
  }
  .hero-visual {
    margin: 30px -20px 0;
    height: 410px
  }
  .hero-art {
    min-height: 0;
    height: 100%;
    object-position: 78% 47%
  }
  .visual-caption {
    top: 23px;
    font-size: 12px
  }
  .hero-visual .discovery-note {
    left: auto;
    right: 22px;
    bottom: 6px;
    width: 286px;
    padding: 6px 20px
  }
  .discovery-note strong {
    font-size: 13px
  }
  .discovery-note small {
    font-size: 12px
  }
  .audience-strip {
    padding-block: 25px;
    display: block
  }
  .audience-strip p {
    font-size: 12px;
    margin-bottom: 17px
  }
  .audience-strip p br {
    display: none
  }
  .audience-strip p strong {
    margin-left: 4px
  }
  .audience-strip>div {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 20px
  }
  .audience-strip a {
    font-size: 12px
  }
  .section-space {
    padding-block: 70px
  }
  .section-heading {
    display: block;
    margin-bottom: 30px
  }
  h2 {
    font-size: 43px
  }
  .section-heading h2 {
    margin-top: 17px
  }
  .section-heading>p {
    margin-top: 22px;
    max-width: 390px;
    font-size: 14px
  }
  .eyebrow {
    font-size: 12px
  }
  .product-explorer {
    display: block
  }
  .product-tabs {
    flex-direction: row;
    overflow: auto;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    justify-content: flex-start;
    scrollbar-width: thin
  }
  .product-tab {
    width: auto;
    min-height: 58px;
    white-space: nowrap;
    flex-shrink: 0;
    gap: 8px;
    font-size: 13px;
    padding: 17px 18px
  }
  .product-tab:before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 2px
  }
  .tab-arrow {
    display: none
  }
  .tab-number {
    font-size: 12px
  }
  .product-panel {
    padding: 30px 23px;
    gap: 26px
  }
  .product-panel h3 {
    font-size: 37px;
    margin-top: 17px
  }
  .product-panel-copy>p {
    font-size: 14px
  }
  .feature-tags span {
    font-size: 12px
  }
  .product-interface {
    padding: 20px
  }
  .interface-brand {
    font-size: 12px
  }
  .interface-meta {
    font-size: 12px
  }
  .example-result {
    padding-block: 13px
  }
  .example-result strong {
    font-size: 12px
  }
  .example-result div span {
    font-size: 12px
  }
  .interface-footer {
    font-size: 12px
  }
  .library-section {
    padding-block: 60px
  }
  .library-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: stretch
  }
  .library-copy {
    order: -1
  }
  .library-copy h2 {
    font-size: 43px
  }
  .library-copy>p {
    font-size: 14px
  }
  .library-features h3 {
    font-size: 16px
  }
  .library-features p {
    font-size: 13px
  }
  .library-art-frame,.library-art-frame>img {
    min-height: 0;
    height: 410px
  }
  .art-corner-label {
    bottom: 23px;
    left: 24px
  }
  .audience-tabs {
    display: flex;
    overflow: auto;
    gap: 23px;
    scrollbar-width: thin
  }
  .audience-tab {
    flex-shrink: 0;
    font-size: 13px;
    padding-inline: 0;
    padding-block: 16px
  }
  .audience-panel {
    display: block;
    padding-top: 32px;
    min-height: 0
  }
  .audience-panel h3 {
    font-size: 37px
  }
  .audience-panel>div>p {
    font-size: 14px
  }
  .audience-outcomes {
    margin-top: 36px;
    gap: 20px
  }
  .audience-outcomes article {
    display: grid;
    grid-template-columns: 89px 1fr;
    gap: 5px 15px
  }
  .audience-outcomes article>span {
    font-size: 12px;
    margin: 0;
    padding-top: 5px
  }
  .audience-outcomes h4 {
    font-size: 15px
  }
  .audience-outcomes p {
    font-size: 13px;
    margin: 0
  }
  .foundation-section {
    padding-top: 61px
  }
  .foundation-top {
    display: block
  }
  .foundation-top h2 {
    font-size: 43px
  }
  .foundation-top>p {
    margin-top: 24px;
    font-size: 14px
  }
  .foundation-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 25px;
    margin-block: 40px
  }
  .foundation-grid article {
    padding-top: 22px
  }
  .foundation-grid svg {
    margin-bottom: 18px
  }
  .foundation-grid h3 {
    font-size: 14px
  }
  .foundation-grid p {
    font-size: 12px
  }
  .foundation-bottom {
    font-size: 12px;
    padding-block: 22px
  }
  .foundation-bottom>span:last-child {
    line-height: 2
  }
  .foundation-bottom i {
    padding-inline: 4px
  }
  .closing-section {
    padding-block: 66px;
    display: block
  }
  .closing-section h2 {
    font-size: 45px
  }
  .closing-section>div:last-child {
    padding: 0;
    margin-top: 30px
  }
  .closing-section p {
    font-size: 14px;
    margin-bottom: 21px
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 20px 24px
  }
  .footer-top .brand {
    flex: 1
  }
  .footer-top>p {
    flex: 0 0 100%;
    max-width: none;
    order: 1;
    font-size: 12px
  }
  .footer-top>a:not(.brand):not(.back-top) {
    order: 2;
    font-size: 12px
  }
  .footer-top .back-top {
    order: 0
  }
  .footer-bottom {
    font-size: 12px;
    line-height: 1.7;
    gap: 15px
  }
  .footer-bottom>span:last-child {
    text-align: right
  }
  dialog {
    padding: 39px 24px 28px;
    max-height: calc(100dvh - 28px)
  }
  dialog h2 {
    font-size: 36px
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0
  }
  .result-actions {
    gap: 18px
  }
  .js-motion .reveal {
    transform: translateY(10px)
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }
  *,*:before,*:after {
    animation: none!important;
    transition: none!important
  }
  .js-motion .reveal {
    opacity: 1;
    transform: none
  }
}
/* Readable supporting copy at every viewport. */
.product-panel-copy>p,.library-copy>p:not(.supporting-features),.audience-panel>div>p {
  font-size: 16px
}
.library-features p,.audience-outcomes p,.foundation-grid p {
  font-size: 14px
}
.feature-tags span {
  white-space: normal
}
.form-note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px
}

/* Customer relationships and the people behind the platform. */
.customers-section {
  padding-top: 60px;
  padding-bottom: 10px;
}
.customers-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.customers-heading h2 {
  font-size: clamp(34px, 3vw, 44px);
  margin-top: 12px;
}
.customers-heading p {
  color: var(--muted);
  font-size: 14px;
}
.customer-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 20px;
  padding-block: 42px 35px;
  border-bottom: 1px solid var(--line);
}
.customer-logos figure {
  margin: 0;
  min-width: 0;
  text-align: center;
}
.customer-logos figure > div {
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.customer-logos img {
  object-fit: contain;
  width: auto;
  height: auto;
  max-height: 58px;
  max-width: 130px;
}
.customer-logos figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
  letter-spacing: .03em;
}
.story-section {
  background: #f4f6f9;
}
.story-visual {
  position: relative;
  height: 425px;
  overflow: hidden;
  background: #e7e9ee;
}
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.story-image-caption {
  position: absolute;
  top: 30px;
  left: 32px;
  padding: 22px 27px;
  background: #ffffffdc;
  backdrop-filter: blur(16px);
  max-width: calc(100% - 64px);
}
.story-image-caption .eyebrow {
  font-size: 12px;
  margin-bottom: 12px;
}
.story-image-caption > span:last-child {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.25;
}
.story-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #d4dae4;
  margin-top: 38px;
}
.story-tab {
  position: relative;
  background: transparent;
  text-align: left;
  padding: 22px 16px 24px 0;
  color: #656f7d;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.story-tab > span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(25px, 2.9vw, 39px);
  line-height: 1.2;
}
.story-tab > small {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}
.story-tab.active, .story-tab:hover {
  color: var(--blue);
}
.story-tab.active {
  border-bottom-color: var(--blue);
}
.story-panel {
  display: grid;
  grid-template-columns: .95fr 1fr;
  align-items: center;
  gap: 96px;
  padding-top: 52px;
  min-height: 440px;
}
.story-chapter h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 47px);
  line-height: 1.12;
  margin-block: 22px;
  letter-spacing: -.025em;
}
.story-chapter > p {
  font-size: 16px;
  color: var(--muted);
}
.story-chapter .story-learning {
  font-size: 14px;
  color: var(--ink);
  border-left: 2px solid #99b3f7;
  padding-left: 17px;
  margin-top: 26px;
}
.story-mockup {
  background: #fff;
  border: 1px solid #e0e5ee;
  border-radius: 8px;
  box-shadow: 0 16px 50px #1530530c;
  overflow: hidden;
  min-width: 0;
}
.story-mockup-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 25px;
  border-bottom: 1px solid #edf0f5;
}
.story-mockup-bar > span:first-child {
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.05em;
}
.story-mockup-bar > small {
  color: var(--muted);
  font-size: 12px;
  margin-left: auto;
  letter-spacing: .08em;
}
.story-mockup-bar > span:last-child {
  color: #98a3b6;
  font-size: 12px;
}
.story-mockup-content {
  padding: 26px;
}
.story-mockup-content > .eyebrow {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .12em;
}
.story-mockup-content h4 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
  margin-top: 12px;
  letter-spacing: -.025em;
}
.story-mockup-rows {
  margin-top: 24px;
}
.story-mockup-rows > div {
  display: grid;
  grid-template-columns: 26px 85px 1fr;
  gap: 9px;
  align-items: baseline;
  border-top: 1px solid #edf0f5;
  padding-block: 13px;
  font-size: 14px;
}
.story-mockup-rows span {
  color: var(--blue);
  font-size: 12px;
}
.story-mockup-rows strong {
  font-weight: 500;
}
.story-mockup-rows small {
  font-size: 12px;
  color: var(--muted);
}
.story-mockup-content > p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 15px;
}
@media (max-width: 1200px) {
  .main-nav { gap: 23px; }
  .customer-logos { gap: 13px; }
  .customer-logos img { max-width: 108px; max-height: 51px; }
  .story-panel { gap: 42px; }
  .story-mockup-rows > div { grid-template-columns: 22px 1fr; gap: 2px 8px; }
  .story-mockup-rows small { grid-column: 2; }
}
@media (max-width: 1000px) {
  .customer-logos { grid-template-columns: repeat(4, minmax(0, 1fr)); row-gap: 32px; }
  .customer-logos img { max-width: 140px; max-height: 62px; }
  .story-mockup-bar { padding: 16px 18px; gap: 10px; }
  .story-mockup-bar > small { letter-spacing: 0; font-size: 12px; }
}
@media (max-width: 760px) {
  .customers-section { padding-top: 38px; padding-bottom: 0; }
  .customers-heading { display: block; }
  .customers-heading p { margin-top: 18px; }
  .customer-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-block: 30px; gap: 30px 18px; }
  .customer-logos figure:last-child { grid-column: 1 / -1; }
  .customer-logos img { max-width: 130px; max-height: 58px; }
  .customer-logos figcaption { margin-top: 10px; }
  .story-visual { height: 370px; }
  .story-visual img { object-position: 55% center; }
  .story-image-caption { top: auto; bottom: 18px; left: 18px; max-width: calc(100% - 36px); padding: 17px 20px; }
  .story-image-caption > span:last-child { font-size: 23px; }
  .story-image-caption .eyebrow { font-size: 12px; letter-spacing: .09em; }
  .story-tabs { grid-template-columns: 1fr 1fr; margin-top: 22px; border: 0; gap: 0 20px; }
  .story-tab { padding-block: 20px; border-bottom-color: #d4dae4; }
  .story-tab > span { font-size: 27px; }
  .story-tab > small { font-size: 12px; }
  .story-panel { grid-template-columns: 1fr; gap: 32px; padding-top: 34px; }
  .story-chapter h3 { font-size: 37px; }
  .story-mockup-content { padding: 22px; }
  .story-mockup-bar > span:last-child { display: none; }
  .story-mockup-bar > small { font-size: 12px; }
}

/* Keep the expanded customer navigation comfortable on tablets. */
.header-contact { white-space: nowrap; }
.customers-heading > div { flex-shrink: 0; }
.customers-heading > p { max-width: 360px; }
@media (min-width: 761px) and (max-width: 1000px) {
  html { scroll-padding-top: 94px; }
  .footer-top { flex-wrap: wrap; }
  .footer-top > p { max-width: none; flex: 1; }
}

/* Keep every customer in one clean, automatically moving row. */
.customer-logos {
  grid-template-columns: none !important;
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  grid-auto-columns: max(140px, calc((100% - 120px) / 7));
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.customer-logos::-webkit-scrollbar { display: none; }
.customer-logos:focus-visible { outline-offset: 3px; }
.customer-logos figure { grid-column: auto !important; }
@media (max-width: 760px) {
  .customer-logos {
    width: calc(100% + 20px);
    grid-auto-columns: 140px;
    gap: 18px;
    margin-right: -20px;
    padding-right: 20px;
  }
}
