:root {
  --cobalt: #1736c5;
  --cobalt-deep: #112b9d;
  --sky: #e6edff;
  --paper: #f7f8f3;
  --white: #fff;
  --ink: #142149;
  --muted: #506084;
  --red: #f25a3e;
  --lime: #d8f3a8;
  --line: #c6d0e9;
  --font-display: "Archivo", Arial, sans-serif;
  --font-body: "Instrument Sans", Arial, sans-serif;
  --motion-paper: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--red);
  color: #fff;
}
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 14px;
  background: #fff;
  padding: 10px 16px;
}
.skip-link:focus {
  top: 14px;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 70;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  transition: width 0.1s linear;
}
.section-wrap {
  max-width: 1536px;
  margin: auto;
  padding-left: clamp(24px, 5vw, 88px);
  padding-right: clamp(24px, 5vw, 88px);
}
.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 88px);
  background: var(--paper);
  position: relative;
  z-index: 50;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 800 27px/1 var(--font-display);
  letter-spacing: -0.075em;
  white-space: nowrap;
}
.brand-logo {
  display: block;
  width: 33px;
  height: 33px;
  object-fit: contain;
  flex: none;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
  font-size: 14px;
  font-weight: 700;
}
.site-nav > a:not(.nav-cta) {
  padding: 10px 0;
  position: relative;
}
.site-nav > a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 2px;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.site-nav > a:not(.nav-cta):hover:after,
.site-nav > a:not(.nav-cta):focus-visible:after {
  transform: scaleX(1);
}
.nav-cta {
  border: 1px solid var(--ink);
  padding: 10px 15px;
  border-radius: 4px;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.nav-cta:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.nav-cta span {
  margin-left: 12px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 53% 47%;
  min-height: min(720px, calc(100svh - 82px));
  background: var(--cobalt);
  color: #fff;
  overflow: hidden;
}
.hero-copy {
  padding: clamp(36px, 4.5vw, 76px) clamp(24px, 5vw, 88px) 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.hero-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 auto;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.hero h1 {
  font: 800 clamp(54px, 4.55vw, 84px) / 0.99 var(--font-display);
  letter-spacing: -0.072em;
  margin: 42px 0 28px;
  max-width: 980px;
}
.hero h1 span {
  color: var(--lime);
}
.hero-description {
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.43;
  max-width: 520px;
  margin: 0 0 26px;
  letter-spacing: -0.02em;
  color: #e3eaff;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.access-note {
  margin: 15px 0 0;
  color: #d5e0ff;
  font-size: 13px;
  line-height: 1.4;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 56px;
  padding: 9px 11px 9px 20px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 3px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px #06145d3b;
}
.button-light {
  background: #fff;
  color: var(--cobalt);
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  font-size: 21px;
  border-radius: 2px;
  background: var(--lime);
  color: var(--ink);
  transition: transform 0.25s;
}
.button:hover .button-icon {
  transform: rotate(45deg);
}
.text-link {
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding: 5px 0;
}
.text-link span {
  margin-left: 6px;
}
.text-link-light {
  color: #fff;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  background: #2443bf;
}
.hero-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  will-change: transform;
}
.hero-note {
  position: absolute;
  left: clamp(18px, 3vw, 52px);
  top: 38px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--paper);
  color: var(--ink);
  padding: 15px 22px 15px 16px;
  box-shadow: 15px 15px 0 var(--red);
  font: 700 clamp(17px, 1.6vw, 22px) / 1.15 var(--font-display);
  letter-spacing: -0.04em;
}
.signal-band strong {
  font-size: 1.28em;
  margin-left: 0.22em;
}
.hero-note small {
  display: block;
  margin-top: 6px;
  font: 500 12px/1.3 var(--font-body);
  letter-spacing: 0;
}
.note-marker {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--lime);
  font-size: 38px;
  font-weight: 400;
}
.signal-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px clamp(24px, 5vw, 88px);
  background: var(--red);
  color: var(--ink);
  font: 800 clamp(15px, 1.6vw, 23px) / 1.2 var(--font-display);
  letter-spacing: -0.035em;
}
.section-index {
  margin: 0;
  font: 700 14px/1.2 var(--font-body);
  letter-spacing: 0.01em;
}
.journey {
  background: var(--sky);
  overflow: hidden;
}
.journey-inner {
  display: grid;
  grid-template-columns: minmax(280px, 32%) 1fr;
  gap: clamp(38px, 5vw, 86px);
  padding-top: clamp(90px, 9vw, 140px);
  padding-bottom: clamp(90px, 9vw, 140px);
}
.journey-heading h2 {
  font: 800 clamp(46px, 4.5vw, 72px) / 1.04 var(--font-display);
  letter-spacing: -0.065em;
  margin: 24px 0;
}
.journey-heading > p:last-child {
  font-size: 19px;
  max-width: 360px;
  margin: 0;
  color: #3c4e7b;
  line-height: 1.5;
}
.journey-interface {
  min-width: 0;
}
.journey-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid #879bce;
}
.journey-tab {
  appearance: none;
  border: 0;
  background: none;
  min-height: 58px;
  padding: 0 5px 15px;
  text-align: left;
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: #52648c;
  font: 700 clamp(13px, 1.15vw, 17px) / 1.2 var(--font-body);
  transition: color 0.2s;
}
.journey-tab span {
  font-size: 11px;
}
.journey-tab.is-active,
.journey-tab:hover {
  color: var(--cobalt);
}
.journey-tab.is-active {
  font-weight: 700;
}
.journey-rail {
  height: 4px;
  background: transparent;
  position: relative;
  margin-top: -3px;
}
.journey-rail span {
  display: block;
  width: 25%;
  height: 4px;
  background: var(--red);
  transition: width 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.journey-panel {
  min-height: 425px;
  background: var(--cobalt);
  color: #fff;
  display: grid;
  grid-template-columns: 55% 45%;
  margin-top: 28px;
  overflow: hidden;
  outline-offset: 8px;
}
.journey-panel-copy {
  padding: clamp(30px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.journey-kicker {
  margin: 0 0 auto;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
}
.journey-panel h3 {
  font: 800 clamp(36px, 3.3vw, 56px) / 1.08 var(--font-display);
  letter-spacing: -0.055em;
  margin: 30px 0 12px;
}
.journey-panel-copy > p:not(.journey-kicker) {
  font-size: 17px;
  line-height: 1.45;
  margin: 0;
  max-width: 340px;
  color: #e7ecff;
}
.sample-note {
  margin-top: auto;
  padding-top: 20px;
  font-size: 13px;
  line-height: 1.35;
  color: #d8e2ff;
}
.workflow-art {
  background: var(--red);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.workflow-sheet {
  --sheet-rest: rotate(-4deg);
  background: #fff;
  color: var(--ink);
  width: min(86%, 340px);
  min-height: 350px;
  z-index: 1;
  box-shadow: 16px 16px 0 #1736c5cc;
  transform: var(--sheet-rest);
  padding: 22px;
  transition: transform 0.5s var(--motion-paper);
}
.paper-trail {
  position: absolute;
  width: min(86%, 340px);
  min-height: 350px;
  background: #fff1dd;
  border: 1px solid #fff9ee;
  transform: translate(21px, 16px) rotate(7deg);
  box-shadow: 12px 12px 0 #b9333b55;
}
.journey-panel[data-active="1"] .workflow-sheet {
  --sheet-rest: rotate(3deg) translateY(-7px);
}
.journey-panel[data-active="2"] .workflow-sheet {
  --sheet-rest: rotate(-2deg) translateX(5px);
}
.journey-panel[data-active="3"] .workflow-sheet {
  --sheet-rest: rotate(2deg) translateY(6px);
}
.sheet-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.sheet-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.sheet-status {
  font-size: 11px;
  font-weight: 700;
  color: var(--cobalt);
  background: var(--sky);
  padding: 5px 7px;
}
.sheet-issue {
  font: 800 22px/1.15 var(--font-display);
  letter-spacing: -0.04em;
  margin: 24px 0 17px;
}
.sheet-issue span {
  color: #9aa6bb;
  margin-left: 6px;
}
.sheet-quantity {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #cdd5e6;
  padding-block: 12px;
  gap: 5px;
}
.sheet-quantity > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sheet-quantity span {
  color: #56637d;
  font-size: 11px;
}
.sheet-quantity strong {
  font: 800 34px/1 var(--font-display);
  letter-spacing: -0.06em;
}
.journey-panel[data-active="2"] .sheet-difference strong,
.journey-panel[data-active="3"] .sheet-difference strong {
  color: #cf422b;
}
.sheet-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #d7deeb;
  padding-top: 9px;
  margin-top: 13px;
  font-size: 12px;
}
.sheet-row span {
  color: #62708a;
}
.sheet-stamp {
  position: absolute;
  bottom: 13px;
  right: 22px;
  font: 900 32px/1 var(--font-display);
  color: #dce6fb;
}
.product {
  padding-top: clamp(100px, 12vw, 175px);
  padding-bottom: clamp(105px, 11vw, 160px);
  background: #fff;
}
.product-lead {
  display: grid;
  grid-template-columns: minmax(160px, 18%) 1fr minmax(180px, 23%);
  align-items: end;
  gap: 24px;
  margin-bottom: 62px;
}
.product-lead h2 {
  font: 800 clamp(52px, 5.8vw, 95px) / 1.03 var(--font-display);
  letter-spacing: -0.07em;
  margin: -15px 0 0;
}
.product-lead > p:last-child {
  font-size: 17px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 5px;
}
.product-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 26%) 1fr;
  gap: 36px;
  align-items: start;
}
.product-nav {
  border-top: 1px solid var(--line);
}
.product-tab {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  width: 100%;
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 12px;
  align-items: start;
  padding: 22px 8px 22px 0;
  color: #5b6a85;
  transition:
    color 0.25s,
    padding 0.25s,
    background 0.25s;
}
.product-tab:hover,
.product-tab.is-active {
  color: var(--cobalt);
  padding-left: 10px;
}
.product-tab.is-active {
  background: #edf2ff;
}
.product-tab-number {
  font-size: 12px;
  padding-top: 6px;
}
.product-tab strong {
  display: block;
  font: 800 clamp(23px, 2.2vw, 34px) / 1 var(--font-display);
  letter-spacing: -0.04em;
  margin-bottom: 7px;
}
.product-tab small {
  display: block;
  font-size: 13px;
}
.product-panel {
  min-width: 0;
}
.product-browser {
  background: #f7f9ff;
  border: 1px solid #cbd5ea;
  border-radius: 11px 11px 3px 3px;
  box-shadow: 0 25px 55px #192e6230;
  overflow: hidden;
}
.browser-bar {
  height: 35px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ecf1fa;
  padding: 0 13px;
  font-size: 11px;
  color: #65738d;
  border-bottom: 1px solid #d6dff0;
}
.browser-dots {
  display: flex;
  gap: 4px;
}
.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a9b8d0;
}
.browser-dots i:first-child {
  background: var(--red);
}
.browser-domain {
  margin-left: auto;
}
.product-image-frame {
  aspect-ratio: 1.97;
  overflow: hidden;
  position: relative;
}
.product-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
.product-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  align-items: start;
}
.product-caption strong {
  font: 800 24px/1.1 var(--font-display);
  letter-spacing: -0.04em;
}
.product-caption p {
  font-size: 15px;
  color: var(--muted);
  margin: 5px 0 0;
}
.expand-button {
  border: 1px solid var(--ink);
  background: #fff;
  white-space: nowrap;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  transition:
    background 0.2s,
    color 0.2s;
}
.expand-button:hover {
  background: var(--ink);
  color: #fff;
}
.expand-button span {
  margin-left: 9px;
  font-size: 17px;
}
.product-caveat {
  font-size: 14px;
  color: #384b74;
  margin: -30px 0 30px;
  max-width: 760px;
  margin-left: auto;
}
.approach {
  background: #e7f2d2;
}
.approach-inner {
  padding-top: clamp(90px, 9vw, 140px);
  padding-bottom: 28px;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
  padding: 36px 0 clamp(80px, 9vw, 150px);
}
.approach h2 {
  font: 800 clamp(48px, 5.8vw, 94px) / 1.04 var(--font-display);
  letter-spacing: -0.07em;
  margin: 0;
  max-width: 920px;
}
.approach-copy {
  padding-bottom: 9px;
}
.approach-copy p {
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.42;
  letter-spacing: -0.02em;
  margin: 0 0 30px;
  max-width: 470px;
}
.approach-small {
  display: block;
  color: #4c6550;
  font-size: 12px;
  margin-top: 15px;
}
.approach-bottom {
  border-top: 1px solid #92a985;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  font: 700 15px/1 var(--font-body);
}
.site-footer {
  background: var(--cobalt);
  color: #fff;
  padding: 38px clamp(24px, 5vw, 88px) 35px;
}
.footer-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 25px;
  min-height: 215px;
}
.brand-footer {
  font-size: 43px;
}
.brand-footer .brand-logo {
  width: 40px;
  height: 40px;
}
.footer-top > span {
  font: 800 clamp(39px, 5vw, 78px) / 1.04 var(--font-display);
  letter-spacing: -0.07em;
  max-width: 700px;
  text-align: right;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #8091e6;
  padding-top: 19px;
  font-size: 12px;
  color: #c9d2ff;
}
.footer-bottom p {
  max-width: 520px;
  margin: 0;
}
.footer-bottom > div {
  display: flex;
  gap: 30px;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.preview-dialog {
  border: 0;
  padding: 0;
  background: #fff;
  color: var(--ink);
  width: min(96vw, 1350px);
  max-height: 90vh;
  box-shadow: 0 35px 100px #09143988;
}
.preview-dialog::backdrop {
  background: #0c174bce;
}
.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 17px 21px;
  border-bottom: 1px solid var(--line);
}
.dialog-header h2 {
  font: 800 19px/1.2 var(--font-display);
  margin: 0;
}
.dialog-header button {
  border: 0;
  background: var(--sky);
  padding: 8px 12px;
  color: var(--ink);
  font-weight: 700;
}
.dialog-header button span {
  font-size: 21px;
  margin-left: 7px;
}
.dialog-image-wrap {
  overflow: auto;
  max-height: 70vh;
}
.dialog-image-wrap img {
  width: 1280px;
  max-width: none;
  height: auto;
}
.preview-dialog > p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  padding: 10px 21px;
}
@media (max-width: 1150px) {
  .hero {
    grid-template-columns: 56% 44%;
  }
  .hero h1 {
    font-size: clamp(55px, 6vw, 76px);
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-description {
    font-size: 18px;
  }
  .journey-inner {
    grid-template-columns: 1fr;
  }
  .journey-heading {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    align-items: end;
  }
  .journey-heading h2 {
    margin: 0;
  }
  .journey-heading > p:last-child {
    font-size: 16px;
  }
  .product-lead {
    grid-template-columns: 130px 1fr;
  }
  .product-lead > p:last-child {
    grid-column: 2;
    max-width: 490px;
  }
  .approach-grid {
    gap: 50px;
  }
}
@media (max-width: 820px) {
  .site-header {
    height: 72px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ink);
    background: transparent;
    align-items: center;
    border-radius: 3px;
    position: relative;
    z-index: 2;
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 20px #1a306729;
    padding: 18px 24px 25px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    padding: 12px !important;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    min-height: 570px;
  }
  .hero h1 {
    font-size: clamp(64px, 10.5vw, 96px);
    margin-top: 35px;
  }
  .hero-visual {
    min-height: 430px;
  }
  .signal-band {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .journey-heading {
    display: block;
  }
  .journey-heading h2 {
    margin: 20px 0;
  }
  .journey-heading > p:last-child {
    max-width: 600px;
  }
  .product-showcase {
    grid-template-columns: 1fr;
  }
  .product-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .product-tab {
    border-bottom: 2px solid var(--line);
    padding: 14px 7px;
    grid-template-columns: 1fr;
  }
  .product-tab.is-active {
    border-color: var(--red);
  }
  .product-tab-number,
  .product-tab small {
    display: none;
  }
  .product-tab strong {
    font-size: 20px;
  }
  .product-caveat {
    margin-left: 0;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .approach-copy {
    max-width: 600px;
  }
}
@media (max-width: 580px) {
  .site-header {
    padding-left: 18px;
    padding-right: 18px;
  }
  .brand {
    font-size: 25px;
  }
  .brand-logo {
    width: 31px;
    height: 31px;
  }
  .hero-copy {
    padding: 35px 22px 28px;
    min-height: 0;
    padding-bottom: 52px;
  }
  .hero-intro {
    font-size: 12px;
  }
  .hero h1 {
    font-size: clamp(51px, 11vw, 69px);
    margin: 34px 0 18px;
    line-height: 1.01;
  }
  .hero-description {
    font-size: 17px;
    line-height: 1.43;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .hero-actions .button {
    gap: 12px;
    padding-left: 16px;
    font-size: 14px;
    white-space: nowrap;
  }
  .hero-visual {
    min-height: 340px;
  }
  .hero-note {
    top: 18px;
    left: 18px;
    padding: 10px;
    gap: 11px;
    box-shadow: 8px 8px 0 var(--red);
    font-size: 16px;
  }
  .hero-note small {
    font-size: 10px;
  }
  .note-marker {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }
  .signal-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 17px 15px;
    gap: 7px;
    font-size: 11px;
    text-align: left;
  }
  .signal-band span {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .signal-band strong {
    margin-left: 0;
    font-size: 14px;
  }
  .journey-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .journey-heading h2 {
    font-size: clamp(42px, 10vw, 57px);
  }
  .journey-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .journey-tab {
    font-size: 11px;
    flex-direction: column;
    gap: 5px;
    min-height: 68px;
  }
  .journey-tab span {
    font-size: 10px;
  }
  .journey-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .journey-panel-copy {
    min-height: 320px;
    padding: 28px;
  }
  .journey-panel h3 {
    font-size: 43px;
  }
  .workflow-art {
    min-height: 380px;
  }
  .workflow-sheet {
    min-height: 340px;
    padding: 18px;
    width: min(82%, 300px);
  }
  .paper-trail {
    min-height: 340px;
    width: min(82%, 300px);
  }
  .sheet-issue {
    margin-top: 24px;
  }
  .product {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .product-lead {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-bottom: 40px;
  }
  .product-lead h2 {
    font-size: clamp(49px, 11vw, 65px);
    margin: 0;
  }
  .product-caveat {
    margin-top: -18px;
    margin-bottom: 24px;
  }
  .product-lead > p:last-child {
    grid-column: auto;
  }
  .product-showcase {
    gap: 20px;
  }
  .product-tab strong {
    font-size: 15px;
  }
  .product-tab {
    padding: 12px 2px;
    justify-items: center;
  }
  .product-tab:hover,
  .product-tab.is-active {
    padding-left: 2px;
  }
  .browser-bar {
    font-size: 9px;
  }
  .browser-domain {
    display: none;
  }
  .dialog-image-wrap {
    max-height: 58vh;
  }
  .preview-dialog > p {
    line-height: 1.35;
  }
  .product-image-frame {
    aspect-ratio: 1.3;
  }
  .product-image-frame img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    object-position: top left;
  }
  .product-caption {
    flex-direction: column;
  }
  .product-caption strong {
    font-size: 21px;
  }
  .approach-inner {
    padding-top: 85px;
  }
  .approach-grid {
    padding-top: 23px;
    padding-bottom: 75px;
    gap: 35px;
  }
  .approach h2 {
    font-size: clamp(48px, 10vw, 63px);
  }
  .approach-copy p {
    font-size: 19px;
  }
  .approach-bottom {
    font-size: 12px;
  }
  .footer-top {
    min-height: 230px;
    flex-direction: column;
  }
  .footer-top > span {
    text-align: left;
    font-size: clamp(45px, 10vw, 58px);
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-bottom > div {
    gap: 18px;
  }
  .brand-footer {
    font-size: 37px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-visual > img {
    transform: none !important;
  }
}
@media (max-width: 580px) {
  .product-image-frame img {
    height: 140%;
    transform: translateX(-14%);
  }
}
.hero-intro {
  margin-bottom: 0;
}
.hero h1 {
  margin-top: 50px;
}
