:root {
  --ink: #0b3339;
  --ink-soft: #426267;
  --mint: #dff4f3;
  --paper: #f7faf7;
  --line: #bdd6d3;
  --coral: #f9694a;
  --cobalt: #14455c;
  --white: #fff;
  --radius: 18px;
  --font-display: "Space Grotesk", "Avenir Next", sans-serif;
  --font-body: "DM Sans", "Avenir Next", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
body:has(.product-dialog[open]) {
  overflow: hidden;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.062em;
}
p {
  line-height: 1.6;
}
.container {
  width: min(100% - 96px, 1440px);
  margin-inline: auto;
}
.section-pad {
  padding-block: clamp(88px, 10vw, 172px);
}
::selection {
  background: var(--coral);
  color: var(--white);
}
:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
}
.skip-link:focus {
  transform: none;
}
.page-progress {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(48px, calc((100vw - 1440px) / 2));
  color: var(--ink);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.055em;
  font-size: 24px;
  white-space: nowrap;
}
.brand > span:last-child > span {
  font-weight: 400;
}
.brand-logo {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: none;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  font-size: 14px;
  font-weight: 600;
}
.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 14px;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  display: flex;
  gap: 19px;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 14px 18px 14px 22px;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.nav-cta:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  min-height: 850px;
  background:
    radial-gradient(ellipse at 90% 10%, #c3ecef 0, transparent 42%),
    linear-gradient(145deg, #e8f7f5 0%, #d4eeee 56%, #c7e6e8 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 775px;
  padding-top: 130px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(20px, 4vw, 80px);
  align-items: center;
}
.hero-copy {
  padding-bottom: 40px;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 35px;
  color: #2d676b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.005em;
}
.pulse-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px #f9694a22;
}
.hero h1 {
  font-size: clamp(62px, 6vw, 108px);
  line-height: 0.98;
  max-width: 750px;
  margin-bottom: 32px;
}
.hero h1 span {
  display: inline-block;
  color: #357d7d;
}
.hero-summary {
  max-width: 505px;
  color: #365a60;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 0 23px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.button:hover {
  transform: translateY(-3px);
}
.button span,
.text-link span,
.nav-cta span {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
}
.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 22px #103e4240;
}
.button-dark:hover {
  background: #174c51;
  box-shadow: 0 12px 25px #103e4255;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  padding: 12px 0;
  transition: gap 0.25s;
}
.text-link:hover {
  gap: 16px;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #477479;
  font-size: 12px;
  line-height: 1.5;
  max-width: 390px;
  margin-top: 70px;
}
.footnote-line {
  width: 42px;
  height: 1px;
  background: #72a4a4;
  flex: none;
}
.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 17px;
  border-top: 1px solid #90bbbb66;
  padding: 22px 0;
  color: #3d6e71;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-bottom span:nth-child(2) {
  font-size: 20px;
  line-height: 0;
}
.hero-bottom span:last-child {
  margin-left: auto;
}

/* One readable sample handoff. The detailed interaction follows below. */
.case-board {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  overflow: hidden;
  background: #f8fffc;
  color: var(--ink);
  border: 1px solid #90c5c0;
  box-shadow: 18px 22px 0 #2b797548, 0 30px 70px #246d6b25;
}
.case-board-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid #c9e2dd;
  color: #3d6f70;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.case-sequence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.case-sequence li {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px clamp(20px, 3vw, 44px) 43px;
}
.case-sequence li + li {
  border-left: 1px solid #c9e2dd;
}
.case-role {
  color: #3b7171;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.case-sequence strong {
  margin-top: 23px;
  font: 600 clamp(82px, 8vw, 126px)/0.9 var(--font-display);
  letter-spacing: -0.09em;
}
.case-sequence li:nth-child(2) strong {
  color: #357d7d;
}
.case-action {
  margin-top: 12px;
  color: #426e70;
  font-size: 15px;
}
.case-decision {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 25px;
  padding: 27px clamp(20px, 3vw, 44px) 30px;
  border-top: 4px solid var(--coral);
  background: var(--ink);
  color: #f6fffc;
}
.case-decision span {
  display: block;
  color: #b7d7d1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.case-decision strong {
  display: block;
  margin-top: 3px;
  color: #ffa38b;
  font: 600 clamp(36px, 3vw, 53px)/1 var(--font-display);
  letter-spacing: -0.06em;
}
.case-decision p {
  max-width: 350px;
  margin: 0;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.45;
}

/* Editorial sections */
.section-rail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #477477;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.rail-mark {
  width: 22px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skewX(-25deg);
}
.section-head h2,
.product-intro h2,
.closing h2 {
  font-size: clamp(48px, 5.2vw, 88px);
  line-height: 1.06;
  margin-bottom: 29px;
}
.product-intro h2 em {
  font-style: normal;
  color: #679a9b;
}

.workflow {
  background: #e8f2ee;
}
.section-head {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 280px;
  gap: 4vw;
  align-items: start;
  margin-bottom: 55px;
}
.section-head h2 {
  font-size: clamp(46px, 4.9vw, 78px);
  margin-bottom: 0;
}
.section-head > p {
  color: #55777a;
  font-size: 15px;
  line-height: 1.6;
  align-self: end;
  margin: 0 0 8px;
}
.workflow-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 85px);
  align-items: stretch;
}
.workflow-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #b6d0ca;
}
.workflow-step {
  width: 100%;
  min-height: 120px;
  display: grid;
  grid-template-columns: 52px 1fr 24px;
  align-items: center;
  gap: 13px;
  padding: 17px 10px 17px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #b6d0ca;
  text-align: left;
  color: #587578;
  cursor: pointer;
  transition:
    padding-left 0.25s,
    color 0.25s,
    background 0.25s;
}
.workflow-step:hover {
  padding-left: 12px;
  color: var(--ink);
}
.workflow-step.is-active {
  color: var(--ink);
  padding-left: 14px;
  background: #d5ebe5;
}
.step-count {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #79a3a1;
  align-self: start;
  padding-top: 10px;
}
.workflow-step.is-active .step-count {
  color: var(--coral);
}
.step-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step-label strong {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 27px);
  letter-spacing: -0.045em;
  font-weight: 500;
}
.step-label small {
  font-size: 12px;
}
.step-arrow {
  font-size: 22px;
  align-self: start;
}
.workflow-stage {
  background: #093f46;
  border-radius: 13px;
  color: #ecf8f5;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 22px 55px #12434425;
}
.stage-top,
.stage-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px 26px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #b1d2cd;
  text-transform: uppercase;
}
.stage-top {
  border-bottom: 1px solid #64a7a141;
}
.stage-bottom {
  border-top: 1px solid #64a7a141;
}
.stage-visual {
  position: relative;
  isolation: isolate;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 58%, #1e6564, #073d44 60%);
}
.stage-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(#93d5c41f 1px, transparent 1px),
    linear-gradient(90deg, #93d5c41f 1px, transparent 1px);
  background-size: 38px 38px;
}
.stage-orbit {
  position: absolute;
  border: 1px solid #8ed0c164;
  border-radius: 50%;
  pointer-events: none;
}
.orbit-a {
  width: 58%;
  aspect-ratio: 1;
  transform: rotate(24deg) scaleX(1.3);
}
.orbit-b {
  width: 83%;
  aspect-ratio: 1;
  opacity: 0.38;
  transform: rotate(-25deg) scaleX(0.8);
}
.stage-card {
  position: relative;
  z-index: 1;
  width: min(71%, 410px);
  background: #fafffa;
  color: var(--ink);
  padding: 22px 24px 19px;
  border-radius: 9px;
  box-shadow: 0 22px 70px #001e2499;
  transform: rotate(-3deg);
}
.stage-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #618687;
  font-size: 10px;
  font-weight: 700;
}
.stage-card-mark {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 5px;
  color: #fff;
  background: var(--coral);
  font-size: 14px;
}
.stage-dots {
  margin-left: auto;
  font-size: 15px;
  color: #8ba8aa;
}
.stage-card-label {
  font-size: 11px;
  color: #6e9391;
  margin: 26px 0 5px;
}
.stage-card > strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.15;
  max-width: 310px;
}
.stage-card-rule {
  height: 1px;
  background: #d7e7e2;
  margin: 25px 0 17px;
}
.stage-card-row {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 10px;
  font-size: 11px;
  color: #718e8f;
}
.stage-card-row b {
  font-size: 11px;
  color: #23565a;
  text-align: right;
  max-width: 180px;
}
.stage-quantity {
  margin-top: 20px;
}
.stage-quantity[hidden] {
  display: none;
}
.quantity-bar {
  height: 9px;
  border-radius: 100px;
  background: #f3b9a9;
  overflow: hidden;
}
.quantity-bar span {
  display: block;
  width: 95%;
  height: 100%;
  background: #449c90;
  border-radius: inherit;
}
.quantity-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  color: #4c7d78;
  font-size: 10px;
}
.quantity-labels strong {
  color: #a3503c;
  font-weight: 700;
}
.stage-card-bottom {
  border-top: 1px solid #d7e7e2;
  margin-top: 24px;
  padding-top: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5b8483;
  font-size: 10px;
}
.stage-mini-line {
  display: block;
  width: 34px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--coral) 30%, #92c9b8 30%);
}
.stage-caption {
  position: absolute;
  left: 28px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  color: #c2e1db;
  max-width: 260px;
}
.stage-caption span {
  font-family: var(--font-display);
  font-size: 29px;
  color: #ffb49f;
}
.stage-caption p {
  font-size: 10px;
  line-height: 1.3;
  margin-bottom: 5px;
}
.stage-controls {
  display: flex;
  gap: 8px;
}
.stage-controls button {
  border: 1px solid #9bc9c269;
  background: transparent;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.stage-controls button:hover {
  background: #fff;
  color: var(--ink);
}

/* Proposed screen imagery */
.product {
  background: #f9fbf8;
}
.product-intro {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 4vw;
  margin-bottom: 56px;
}
.product-intro h2 {
  margin-bottom: 22px;
}
.product-intro p {
  max-width: 670px;
  color: #617a7c;
  font-size: 17px;
}
.product-display {
  max-width: 1280px;
  margin-inline: auto;
  border: 1px solid #bfcfca;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 27px 70px #345e5730;
}
.product-topbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px;
  background: #e9f3ef;
  border-bottom: 1px solid #d3e2dc;
}
.product-topbar > span {
  font-size: 11px;
  color: #678687;
  letter-spacing: 0.04em;
}
.product-tabs {
  display: flex;
  gap: 5px;
  padding: 4px;
  background: #d7e8e2;
  border-radius: 100px;
}
.product-tabs button {
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: #4b7774;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.product-tabs button[aria-selected="true"] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 3px 12px #47665a22;
}
.product-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f6f7f8;
  aspect-ratio: 1280/647;
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.24s;
}
.product-image-wrap.is-changing img {
  opacity: 0.2;
}
.product-panel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 110px;
  padding: 20px 28px;
  border-top: 1px solid #e1ebe6;
}
.product-panel-bottom > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-panel-bottom > div > span {
  color: #7e9b98;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.product-panel-bottom strong {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 24px);
  letter-spacing: -0.03em;
  font-weight: 500;
}
.image-expand {
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
}
.image-expand span {
  margin-left: 8px;
  font-size: 18px;
  font-weight: 400;
}
.product-disclosure {
  color: #446f6c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 17px;
}

/* Close and footer */
.closing {
  position: relative;
  background: #0c3d47;
  color: #e8f8f5;
  overflow: hidden;
}
.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 8vw;
  position: relative;
  z-index: 1;
}
.closing .section-rail {
  color: #a3c9c4;
  margin-bottom: 55px;
}
.closing h2 {
  font-size: clamp(65px, 7.5vw, 125px);
  margin-bottom: 0;
}
.closing-side {
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 10px;
}
.closing-side p {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: #d0e7e0;
  margin-bottom: 29px;
}
.button-coral {
  background: var(--coral);
  color: #fff;
}
.button-coral:hover {
  background: #fa856b;
  box-shadow: 0 12px 25px #f9694a35;
}
.closing-side > span {
  font-size: 12px;
  color: #a6cac5;
  margin-top: 20px;
}
.closing-orbit {
  position: absolute;
  right: -160px;
  top: -160px;
  width: 670px;
  height: 670px;
  border: 1px solid #94d4ca26;
  border-radius: 50%;
  box-shadow:
    0 0 0 120px #94d4ca0a,
    0 0 0 240px #94d4ca06;
  pointer-events: none;
}
.site-footer {
  background: #092f38;
  color: #d7ede9;
  padding-block: 37px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr auto;
  gap: 25px;
  align-items: center;
}
.site-footer .brand {
  font-size: 20px;
}
.site-footer .brand-logo {
  width: 25px;
  height: 25px;
}
.site-footer p {
  font-size: 12px;
  color: #97bdb7;
  margin: 0;
}
.site-footer div div {
  display: flex;
  gap: 22px;
}
.site-footer div div a {
  font-size: 12px;
  color: #c0d9d3;
}
.site-footer div div a:hover {
  text-decoration: underline;
}
.footer-note {
  font-size: 11px;
  color: #79a59f;
  white-space: nowrap;
}
.product-dialog {
  max-width: min(95vw, 1400px);
  max-height: 94vh;
  border: 0;
  border-radius: 12px;
  padding: 20px;
  background: #eff7f4;
  box-shadow: 0 30px 100px #051a22aa;
}
.product-dialog::backdrop {
  background: #061b21d9;
  backdrop-filter: blur(8px);
}
.product-dialog img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.product-dialog p {
  font-size: 12px;
  color: #4b7471;
  margin: 12px 0 0;
}
.dialog-close {
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 2;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 50%;
  background: #092f38;
  color: white;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .site-header {
    padding-inline: 32px;
  }
  .container {
    width: min(100% - 64px, 1440px);
  }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hero h1 {
    font-size: clamp(58px, 6vw, 88px);
  }
  .section-head {
    grid-template-columns: 125px 1fr 200px;
    gap: 25px;
  }
  .workflow-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
  }
  .workflow-step {
    min-height: 115px;
  }
}
@media (max-width: 860px) {
  .site-header {
    height: 76px;
  }
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 22;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid #448b8b;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.25s;
  }
  .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: 66px;
    left: 24px;
    right: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 20px;
    background: #f8fffd;
    border: 1px solid #b7d9d4;
    border-radius: 16px;
    box-shadow: 0 18px 40px #143b4333;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav > a:not(.nav-cta) {
    padding: 14px 4px;
    border-bottom: 1px solid #d7e7e2;
  }
  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }
  .site-nav .nav-cta {
    justify-content: space-between;
    margin-top: 16px;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 135px;
    padding-bottom: 65px;
    gap: 35px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(62px, 10vw, 92px);
    max-width: 680px;
  }
  .hero-summary {
    max-width: 600px;
  }
  .hero-footnote {
    margin-top: 38px;
  }
  .hero-bottom {
    margin-top: 10px;
  }
  .section-head {
    grid-template-columns: 1fr 220px;
    gap: 25px;
  }
  .section-head > .section-rail {
    grid-column: 1/-1;
  }
  .workflow-layout {
    grid-template-columns: 1fr;
  }
  .workflow-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
  .workflow-step {
    min-height: 105px;
  }
  .workflow-stage {
    min-height: 560px;
  }
  .product-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .closing-grid {
    grid-template-columns: 1fr;
  }
  .closing-side {
    max-width: 540px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer div div {
    justify-content: flex-end;
  }
  .footer-note {
    text-align: right;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 40px, 1440px);
  }
  .site-header {
    padding-inline: 20px;
  }
  .brand {
    font-size: 21px;
  }
  .brand-logo {
    width: 31px;
    height: 31px;
  }
  .hero {
    min-height: 0;
  }
  .hero-inner {
    padding-top: 115px;
    padding-bottom: 48px;
    gap: 32px;
  }
  .hero-kicker {
    font-size: 11px;
    margin-bottom: 27px;
  }
  .hero h1 {
    font-size: clamp(42px, 13vw, 75px);
    line-height: 0.99;
    margin-bottom: 24px;
  }
  .hero-summary {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .hero-actions {
    gap: 7px;
    align-items: flex-start;
    flex-direction: column;
  }
  .button {
    min-height: 55px;
  }
  .text-link {
    margin-left: 2px;
  }
  .hero-footnote {
    margin-top: 28px;
    font-size: 10px;
  }
  .case-board {
    box-shadow: 8px 10px 0 #2b797548;
  }
  .case-board-head {
    padding: 12px 14px;
    font-size: 9px;
  }
  .case-sequence li {
    padding: 20px 15px 24px;
  }
  .case-role {
    font-size: 10px;
  }
  .case-sequence strong {
    margin-top: 12px;
    font-size: clamp(58px, 18vw, 80px);
  }
  .case-action {
    margin-top: 7px;
    font-size: 12px;
  }
  .case-decision {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 16px 20px;
  }
  .case-decision strong {
    font-size: 36px;
  }
  .case-decision p {
    font-size: 13px;
  }
  .hero-bottom {
    font-size: 9px;
    padding-block: 18px;
  }
  .hero-bottom span:last-child {
    display: none;
  }
  .section-pad {
    padding-block: 90px;
  }
  .section-head {
    display: block;
  }
  .section-head > .section-rail {
    margin-bottom: 30px;
  }
  .section-head h2,
  .product-intro h2 {
    font-size: clamp(43px, 12vw, 62px);
  }
  .section-head > p {
    font-size: 14px;
    margin-top: 20px;
  }
  .workflow-list {
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
  }
  .workflow-step {
    grid-template-columns: 26px 1fr;
    gap: 5px;
    min-height: 90px;
    padding: 10px 4px 10px 0;
  }
  .workflow-step.is-active {
    padding-left: 6px;
  }
  .step-count {
    font-size: 10px;
    padding-top: 5px;
  }
  .step-label strong {
    font-size: 15px;
    letter-spacing: -0.03em;
  }
  .step-label small {
    font-size: 10px;
  }
  .step-arrow {
    display: none;
  }
  .workflow-stage {
    min-height: 495px;
  }
  .stage-top,
  .stage-bottom {
    padding: 16px 17px;
    font-size: 11px;
  }
  .stage-visual {
    min-height: 390px;
    flex-direction: column;
    justify-content: flex-start;
  }
  .stage-card {
    width: 77%;
    padding: 17px;
    margin-top: 58px;
  }
  .stage-card > strong {
    font-size: 21px;
  }
  .stage-card-label {
    margin-top: 18px;
  }
  .stage-card-rule {
    margin: 18px 0;
  }
  .stage-card-row {
    font-size: 11px;
  }
  .stage-card-row b {
    font-size: 11px;
  }
  .stage-caption {
    position: relative;
    align-self: flex-start;
    left: auto;
    bottom: auto;
    margin: 35px 14px 17px;
    max-width: 200px;
  }
  .stage-caption p {
    font-size: 10px;
  }
  .product-intro {
    margin-bottom: 33px;
  }
  .product-intro p {
    font-size: 15px;
  }
  .product-topbar {
    min-height: 65px;
    padding: 8px;
  }
  .product-topbar > span {
    display: none;
  }
  .product-tabs {
    width: 100%;
  }
  .product-tabs button {
    flex: 1;
  }
  .product-image-wrap {
    aspect-ratio: 4/3;
  }
  .product-image-wrap img {
    width: auto;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: 38% center;
  }
  .product-image-wrap[data-view="finance"] img {
    object-position: 47% center;
  }
  .product-panel-bottom {
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .product-panel-bottom strong {
    font-size: 17px;
  }
  .asset-note {
    font-size: 10px;
  }
  .closing h2 {
    font-size: clamp(62px, 16vw, 90px);
  }
  .closing .section-rail {
    margin-bottom: 35px;
  }
  .closing-side p {
    font-size: 18px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .site-footer div div {
    justify-content: flex-start;
    gap: 18px;
  }
  .footer-note {
    text-align: left;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.swipe-hint,
.dialog-hint {
  display: none;
}
.dialog-viewport {
  overflow: auto;
  max-height: 80vh;
}
.product-dialog .dialog-viewport img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}
@media (max-width: 620px) {
  .swipe-hint {
    display: block;
    padding: 7px 17px;
    background: #e9f3ef;
    color: #567c79;
    font-size: 10px;
  }
  .product-image-wrap {
    aspect-ratio: auto;
    height: 465px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-color: #9fc5bb #eaf3ed;
    scrollbar-width: thin;
  }
  .product-image-wrap img {
    width: 920px;
    min-width: 920px;
    max-width: none;
    height: auto;
    object-fit: initial;
    object-position: initial;
  }
  .product-dialog {
    width: calc(100vw - 20px);
    max-height: 90vh;
    padding: 12px;
  }
  .product-dialog .dialog-viewport {
    margin-top: 39px;
    max-height: 65vh;
    overflow: auto;
  }
  .product-dialog .dialog-viewport img {
    width: 920px;
    min-width: 920px;
    max-width: none;
    height: auto;
    max-height: none;
  }
  .product-dialog .dialog-close {
    top: 14px;
    right: 14px;
  }
  .product-dialog .dialog-hint {
    display: block;
    color: #5c817d;
    font-size: 10px;
    margin-top: 3px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 38px;
  }
  .hero-inner {
    gap: 25px;
  }
}
