/* Arrow Med Consulting public-site presentation layer. */
:root {
  --blue: #01204e;
  --paper: #f2f5f8;
  --paper-bright: #ffffff;
  --steel: #587794;
  --steel-light: #6f8eaa;
  --steel-dark: #405f7b;
  --mist: #dde4ea;
  --muted: #5a6878;
  --line-dark: rgba(1, 32, 78, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --sans: Inter, Aptos, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--blue);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: var(--blue);
  color: white;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

button,
a {
  font: inherit;
  touch-action: manipulation;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 10px;
  left: 10px;
  padding: 11px 14px;
  transform: translateY(-160%);
  background: white;
  color: var(--blue);
}

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

.page {
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  min-height: 100svh;
}

.field {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 100svh;
  padding: clamp(30px, 3.6vw, 56px);
  overflow: hidden;
  background: var(--blue);
}

.field::before,
.field::after {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(88, 119, 148, 0.3);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  will-change: transform;
}

.field::before {
  top: 52%;
  left: -32vw;
  width: 72vw;
  height: 72vw;
  animation: hero-orbit-large 34s linear infinite;
}

.field::after {
  top: 48%;
  left: 11vw;
  width: 37vw;
  height: 37vw;
  border-color: rgba(255, 255, 255, 0.12);
  animation: hero-orbit-small 25s linear infinite reverse;
}

@keyframes hero-orbit-large {
  from {
    transform: translateY(-50%) rotate(-20deg) scaleY(0.6);
  }
  to {
    transform: translateY(-50%) rotate(340deg) scaleY(0.6);
  }
}

@keyframes hero-orbit-small {
  from {
    transform: translateY(-50%) rotate(22deg) scaleY(0.72);
  }
  to {
    transform: translateY(-50%) rotate(382deg) scaleY(0.72);
  }
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100svh - 2 * clamp(30px, 3.6vw, 56px));
  flex-direction: column;
  max-width: 710px;
  padding: 0 0 clamp(30px, 4vh, 44px);
}

.brand-lockup {
  display: inline-grid;
  grid-template-columns: 44px auto;
  gap: 13px;
  align-items: center;
  width: fit-content;
  animation: left-enter 320ms var(--ease) both;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  overflow: visible;
}

.brand-mark-arrow {
  fill: white;
}

.brand-mark-plus {
  fill: var(--steel);
}

.brand-name {
  display: grid;
  gap: 5px;
}

.brand-word {
  color: white;
  font-size: 19px;
  font-weight: 450;
  letter-spacing: 0.24em;
  line-height: 0.9;
}

.brand-position {
  color: #9bb1c4;
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  white-space: nowrap;
}

.hero-copy {
  margin-top: clamp(92px, 14vh, 126px);
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 5.6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
  --enter-delay: 70ms;
  --enter-distance: 12px;
  --enter-duration: 560ms;
  animation: left-enter var(--enter-duration) var(--ease)
    var(--enter-delay) both;
}

h1 span {
  display: block;
}

sup {
  position: relative;
  top: -0.55em;
  margin-left: 0.04em;
  font-family: var(--sans);
  font-size: 0.3em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0;
  vertical-align: baseline;
}

.intro {
  max-width: 470px;
  margin: clamp(24px, 3.6vh, 34px) 0 0;
  color: var(--mist);
  font-size: clamp(15px, 1.12vw, 17px);
  letter-spacing: 0;
  line-height: 1.55;
  --enter-delay: 160ms;
  --enter-distance: 7px;
  --enter-duration: 400ms;
  animation: left-enter var(--enter-duration) var(--ease)
    var(--enter-delay) both;
}

.actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-top: clamp(30px, 4.6vh, 44px);
  --enter-delay: 230ms;
  --enter-distance: 7px;
  --enter-duration: 400ms;
  animation: left-enter var(--enter-duration) var(--ease)
    var(--enter-delay) both;
}

.order-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 258px);
  min-height: 60px;
  padding: 0 0 0 19px;
  overflow: hidden;
  border: 1px solid var(--paper-bright);
  background: var(--paper-bright);
  color: var(--blue);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
}

.order-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--steel);
  transition: transform 220ms var(--ease);
}

.order-arrow {
  display: grid;
  width: 59px;
  align-self: stretch;
  flex: 0 0 auto;
  place-items: center;
  border-left: 1px solid rgba(1, 32, 78, 0.14);
  color: var(--blue);
  font-size: 17px;
  line-height: 1;
  transition: transform 180ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .order-link:hover::after {
    transform: scaleX(1);
  }

  .order-link:hover .order-arrow {
    transform: translateX(3px);
  }
}

.order-link:active::after {
  transform: scaleX(1);
  transition-duration: 90ms;
}

.order-link:active .order-arrow {
  transform: translateX(1px);
  transition-duration: 90ms;
}

.order-link:focus-visible {
  outline: 3px solid var(--steel);
  outline-offset: 4px;
}

.contact-text-link {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  color: white;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0;
  line-height: 1.45;
  text-decoration-color: rgba(88, 119, 148, 0.9);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.contact-text-link:hover {
  color: var(--steel-light);
  text-decoration-color: var(--steel-light);
}

.contact-text-link:focus-visible {
  outline: 3px solid var(--steel);
  outline-offset: 4px;
}

.contact-prompt {
  display: inline-flex;
  min-height: 26px;
  flex-wrap: wrap;
  gap: 0 0.45em;
  align-items: center;
}

.order-help {
  color: rgba(221, 228, 234, 0.78);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.45;
}

.reference-heading h2:focus {
  outline: none;
}

.reference-heading h2:focus-visible {
  outline: 3px solid var(--steel);
  outline-offset: 7px;
}

.field-mark {
  position: absolute;
  right: clamp(-106px, -6vw, -42px);
  bottom: clamp(-116px, -8vw, -58px);
  width: clamp(300px, 30vw, 430px);
  aspect-ratio: 1;
  pointer-events: none;
}

.field-mark span {
  --mark-angle: 64deg;
  position: absolute;
  top: 8%;
  left: 50%;
  width: 88%;
  height: 1px;
  transform: rotate(var(--mark-angle)) scaleX(0);
  transform-origin: 0 50%;
  background: rgba(88, 119, 148, 0.34);
  animation: mark-enter 900ms var(--ease) 520ms forwards;
}

.field-mark span:last-child {
  --mark-angle: 116deg;
  animation-delay: 650ms;
}

.products {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100svh;
  padding: clamp(30px, 3.6vw, 56px);
  overflow: hidden;
  background: var(--paper);
  color: var(--blue);
}

.product-nav {
  flex: 0 0 auto;
  animation: right-enter 420ms var(--ease) 70ms both;
}

.product-nav > h2 {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.product-tabs {
  border-top: 1px solid var(--line-dark);
}

.product-tab {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12px;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 59px;
  padding: 0 7px 0 16px;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: #5a6878;
  cursor: pointer;
  text-align: left;
  transition: color 170ms ease;
}

.product-tab::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 0;
  content: "";
  background: var(--steel);
  transform: translateY(-50%);
  transition: height 210ms var(--ease);
}

.product-tab-name {
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(19px, 1.75vw, 25px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: transform 210ms var(--ease);
}

.product-marker {
  display: block;
  width: 10px;
  height: 10px;
  justify-self: end;
  position: relative;
  top: -1px;
  transform: rotate(45deg);
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transition: transform 210ms var(--ease);
}

.product-tab:hover,
.product-tab[aria-expanded="true"] {
  color: var(--blue);
}

.product-tab[aria-expanded="true"]::before {
  height: 29px;
}

.product-tab[aria-expanded="true"] .product-tab-name {
  transform: translateX(3px);
}

.product-tab[aria-expanded="true"] .product-marker {
  transform: rotate(225deg);
}

.product-tab:focus-visible {
  z-index: 2;
  outline: 3px solid var(--steel);
  outline-offset: 3px;
}

/* Product explorer details */
.product-reference {
  position: static;
  width: auto;
  min-width: 0;
  min-height: 0;
  max-height: none;
  flex: 0 0 auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--blue);
  visibility: visible;
  opacity: 1;
}

.reference-shell {
  width: 100%;
  margin: 0;
}

.reference-panel {
  height: 100%;
  animation: reference-enter 260ms var(--ease) both;
}

.reference-panel[hidden] {
  display: none;
}

.product-dropdown-panel {
  width: 100%;
  height: auto;
  padding: 16px clamp(16px, 2.6vw, 36px) 22px;
  border-bottom: 1px solid var(--line-dark);
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.68)
    );
}

.reference-heading {
  display: grid;
  grid-template-areas: "image copy";
  grid-template-columns:
    minmax(clamp(188px, 20vw, 242px), 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: auto;
  column-gap: clamp(22px, 2.8vw, 42px);
  align-items: stretch;
  padding: 0 0 22px;
}

.reference-copy {
  display: grid;
  grid-area: copy;
  min-width: 0;
  align-content: center;
  padding: 5px 0;
}

.reference-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.product-summary {
  max-width: 42ch;
  margin: 13px 0 0;
  color: var(--steel-dark);
  font-size: clamp(12px, 0.95vw, 13px);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-description {
  max-width: 46ch;
  margin: 13px 0 0;
  color: #344a65;
  font-size: clamp(13px, 1.08vw, 15px);
  line-height: 1.55;
}

.product-documents {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
}

.product-resources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  margin: 0;
}

.product-resource-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
  min-height: 40px;
  align-items: end;
  gap: 8px;
  padding: 6px 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(1, 32, 78, 0.26);
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  transition:
    border-color 170ms ease,
    color 170ms ease;
}

.product-resource-link + .product-resource-link {
  margin: 0;
  padding: 6px 0 5px;
  border-left: 0;
}

.product-resource-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--steel-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-resource-meta span {
  font-size: 12px;
  line-height: 0;
}

.product-resource-link:hover {
  border-color: var(--steel-dark);
  color: var(--steel-dark);
}

.product-resource-link:focus-visible {
  outline: 3px solid var(--steel);
  outline-offset: 3px;
}

.reference-product-image {
  display: grid;
  grid-area: image;
  align-self: center;
  min-height: 220px;
  margin-top: 0;
  padding: clamp(14px, 1.8vw, 22px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(1, 32, 78, 0.12);
  background: #eaf0f5;
}

.reference-product-image picture {
  display: contents;
}

.reference-product-image img {
  display: block;
  width: min(112%, 350px);
  height: clamp(168px, 24vh, 238px);
  object-fit: contain;
  filter: drop-shadow(0 11px 15px rgba(1, 32, 78, 0.12));
}

.formats {
  display: block;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.formats > h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.format-group + .format-group {
  margin-top: 10px;
}

.format-group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 5px;
  color: #536274;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.format-group-title::after {
  height: 1px;
  flex: 1;
  content: "";
  background: var(--line-dark);
}

.format-rail {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  list-style: none;
}

.format-rail::-webkit-scrollbar {
  display: none;
}

.format-rail::after {
  flex: 0 0 var(--format-end-space, 0);
  content: "";
}

.format-rail-shell {
  --format-page-control-space: 0px;
  position: relative;
  padding-bottom: 31px;
}

.format-rail-shell.has-previous {
  padding-left: 0;
}

.format-page-button {
  position: absolute;
  z-index: 2;
  bottom: 0;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(1, 32, 78, 0.34);
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    border-color 170ms ease,
    color 170ms ease,
    opacity 170ms ease;
}

.format-page-previous {
  left: 0;
  min-width: 42px;
  justify-content: flex-start;
}

.format-page-next {
  right: 0;
  min-width: 82px;
  justify-content: flex-end;
}

.format-page-button:hover {
  border-color: var(--steel-dark);
  color: var(--steel-dark);
}

.format-page-button:focus-visible {
  outline: 3px solid var(--steel);
  outline-offset: 3px;
}

.format-page-button[hidden] {
  display: none;
}

.format-page-button svg {
  width: 14px;
  height: 14px;
}

.format-item {
  display: grid;
  min-width: 102px;
  min-height: 64px;
  flex: 0 0 auto;
  grid-template-rows: 20px auto auto;
  row-gap: 6px;
  align-items: end;
  padding: 10px;
  border-left: 1px solid var(--line-dark);
  scroll-snap-align: start;
}

.format-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.format-shape {
  display: block;
  align-self: center;
  justify-self: start;
  width: var(--shape-width, 34px);
  max-width: 20px;
  height: var(--shape-height, 34px);
  max-height: 20px;
  border: 1px solid rgba(1, 32, 78, 0.54);
  background: rgba(88, 119, 148, 0.1);
}

.format-shape.is-disc {
  border-radius: 50%;
}

.format-size {
  color: var(--blue);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.format-sku {
  margin-top: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

@keyframes left-enter {
  from {
    transform: translateY(var(--enter-distance, 6px));
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes mark-enter {
  from {
    transform: rotate(var(--mark-angle)) scaleX(0);
    opacity: 0;
  }
  to {
    transform: rotate(var(--mark-angle)) scaleX(1);
    opacity: 1;
  }
}

@keyframes right-enter {
  from {
    transform: translateY(7px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes reference-enter {
  from {
    transform: translateY(5px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .page {
    grid-template-columns: minmax(0, 53%) minmax(0, 47%);
  }

  .field,
  .products {
    padding-right: 34px;
    padding-left: 34px;
  }

  h1 {
    font-size: clamp(54px, 5.7vw, 66px);
  }

  .product-tab-name {
    font-size: clamp(18px, 2.1vw, 23px);
  }

}

@media (max-width: 860px) {
  .page {
    display: block;
  }

  .field {
    min-height: auto;
    padding: 20px max(20px, env(safe-area-inset-right)) 23px
      max(20px, env(safe-area-inset-left));
  }

  .field::before {
    top: 55%;
    left: -70vw;
    width: 132vw;
    height: 132vw;
  }

  .field::after {
    top: 52%;
    left: 18vw;
    width: 70vw;
    height: 70vw;
  }

  .hero {
    display: block;
    min-height: auto;
    max-width: 590px;
    padding: 4px 0 0;
  }

  .brand-lockup {
    grid-template-columns: 40px auto;
    gap: 11px;
    animation-duration: 260ms;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-word {
    font-size: 18px;
  }

  .brand-position {
    font-size: 7px;
  }

  .hero-copy {
    margin-top: 42px;
  }

  h1 {
    max-width: 540px;
    font-size: clamp(43px, 11.8vw, 56px);
    line-height: 0.95;
    --enter-delay: 50ms;
    --enter-distance: 8px;
    --enter-duration: 440ms;
  }

  .intro {
    max-width: 440px;
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.45;
    --enter-delay: 130ms;
    --enter-distance: 5px;
    --enter-duration: 330ms;
  }

  .actions {
    gap: 8px;
    margin-top: 20px;
    --enter-delay: 190ms;
    --enter-distance: 5px;
    --enter-duration: 330ms;
  }

  .order-link {
    width: 100%;
    min-height: 54px;
    padding-left: 16px;
  }

  .products {
    min-height: 100svh;
    padding: 20px max(20px, env(safe-area-inset-right))
      max(20px, env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
    overflow: hidden;
  }

  .product-nav > h2 {
    margin-bottom: 13px;
    font-size: 12px;
  }

  .product-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-tab {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto;
    gap: 7px;
    align-content: center;
    min-height: 72px;
    padding: 10px 10px 9px 13px;
  }

  #tab-amchoplast,
  #tab-membrane-wrap-lite {
    padding-left: 16px;
    border-left: 1px solid var(--line-dark);
  }

  #tab-dermavest {
    grid-column: 1;
    grid-row: 1;
  }

  #tab-amchoplast {
    grid-column: 2;
    grid-row: 1;
  }

  #tab-membrane-wrap {
    grid-column: 1;
    grid-row: 2;
  }

  #tab-membrane-wrap-lite {
    grid-column: 2;
    grid-row: 2;
  }

  .product-tab-name {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(16px, 4.7vw, 20px);
    white-space: normal;
  }

  .product-marker {
    grid-column: 2;
    grid-row: 1;
    width: 9px;
  }

  .field-mark {
    display: none;
  }

}

@media (max-width: 440px) {
  h1 {
    font-size: clamp(42px, 12vw, 49px);
  }

  .products {
    min-height: 100svh;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
  }

  .brand-lockup,
  .field-mark span,
  h1,
  .intro,
  .actions,
  .product-nav,
  .reference-panel {
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }

  .order-link::after,
  .order-arrow,
  .product-marker {
    transition: none !important;
  }
}

/* Product explorer responsive layout */
@media (min-width: 861px) {
  .page {
    min-height: 100svh;
    overflow: visible;
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  }

  .field,
  .products {
    min-height: 100svh;
  }

  .products {
    padding-bottom: clamp(18px, 1.4vw, 22px);
    overflow: visible;
  }
}

@media (min-width: 861px) and (max-width: 1150px) {
  .product-resources {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 861px) and (max-height: 820px) {
  .reference-heading {
    padding-top: 8px;
    padding-bottom: 14px;
  }

  .reference-copy {
    gap: 7px;
  }

  .product-documents {
    margin-top: 13px;
  }

  .reference-product-image {
    min-height: 174px;
  }

  .reference-product-image img {
    height: clamp(140px, 19vh, 175px);
  }

  .formats {
    padding-top: 10px;
  }

  .format-group + .format-group {
    margin-top: 6px;
  }

  .format-item {
    min-height: 46px;
    grid-template-rows: 16px auto auto;
  }

  .format-shape {
    max-width: 16px;
    max-height: 16px;
  }
}

@media (max-width: 860px) {
  .page {
    height: auto;
    overflow: visible;
  }

  .products {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .reference-heading {
    display: block;
  }

  .product-dropdown-panel {
    grid-column: 1 / -1;
    grid-row: 3;
    padding: 18px 12px 24px;
  }
}

@media (max-width: 600px) {
  .reference-heading {
    display: grid;
    grid-template-areas:
      "copy"
      "image";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .reference-product-image {
    min-height: 208px;
  }

  .reference-product-image img {
    height: 180px;
  }

  .product-documents {
    margin-top: 18px;
  }

  .product-resources {
    grid-template-columns: 1fr;
  }

  .product-resource-link {
    min-width: 0;
  }

  .format-group + .format-group {
    margin-top: 20px;
  }

  .format-page-button {
    font-size: 10px;
  }

  .format-page-next {
    min-width: 70px;
  }
}

@media (min-width: 861px) and (max-height: 700px) {
  .reference-product-image img {
    height: 120px;
  }
}

.contact-area {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  width: 100%;
  min-height: 100svh;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background: var(--blue);
  color: var(--blue);
  scroll-margin-block-start: 0;
}

.contact-area::before,
.contact-area::after {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(88, 119, 148, 0.34);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  will-change: transform;
}

.contact-area::before {
  top: 50svh;
  right: -17vw;
  width: 64vw;
  height: 64vw;
  animation: contact-orbit-large 32s linear infinite;
}

.contact-area::after {
  top: 50svh;
  right: 9vw;
  width: 34vw;
  height: 34vw;
  border-color: rgba(255, 255, 255, 0.13);
  animation: contact-orbit-small 24s linear infinite reverse;
}

@keyframes contact-orbit-large {
  from {
    transform: translateY(-50%) rotate(-18deg) scaleY(0.58);
  }
  to {
    transform: translateY(-50%) rotate(342deg) scaleY(0.58);
  }
}

@keyframes contact-orbit-small {
  from {
    transform: translateY(-50%) rotate(24deg) scaleY(0.72);
  }
  to {
    transform: translateY(-50%) rotate(384deg) scaleY(0.72);
  }
}

.contact-shell {
  display: contents;
}

.contact-form-header {
  position: relative;
  z-index: 1;
  display: flex;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3.6vw, 56px);
  color: white;
}

.contact-form-header h2 {
  margin: 11px 0 0;
  color: white;
  font-family: var(--display);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.contact-form-kicker,
.contact-field-label,
.contact-status-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-form-kicker {
  color: var(--steel-light);
}

.contact-form-intro {
  max-width: 440px;
  margin: clamp(24px, 3.6vh, 34px) 0 0;
  color: var(--mist);
  font-size: clamp(15px, 1.12vw, 17px);
  line-height: 1.55;
}

.contact-form-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  min-height: 100svh;
  align-content: center;
  padding: clamp(30px, 3.6vw, 56px);
  border-right: 1px solid var(--line-dark);
  background: var(--paper);
}

.contact-area[data-contact-reveal="ready"] .contact-form-header {
  transform: translateY(18px);
  opacity: 0;
}

.contact-area[data-contact-reveal="ready"] .contact-form-panel {
  transform: translateY(28px) scale(0.985);
  opacity: 0;
}

.contact-area[data-contact-reveal="visible"] .contact-form-header {
  animation: contact-heading-enter 560ms var(--ease) both;
}

.contact-area[data-contact-reveal="visible"] .contact-form-panel {
  animation: contact-panel-enter 680ms var(--ease) 100ms both;
}

@keyframes contact-heading-enter {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes contact-panel-enter {
  from {
    transform: translateY(28px) scale(0.985);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.contact-form,
.contact-confirmation {
  width: min(100%, 720px);
  margin-inline: auto;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--line-dark);
  border-top: 2px solid var(--steel);
  background: var(--paper-bright);
  box-shadow: 0 14px 40px rgba(1, 32, 78, 0.08);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px clamp(20px, 2.4vw, 30px);
}

.contact-field {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
}

.contact-field.is-wide {
  grid-column: 1 / -1;
}

.contact-field-label {
  color: #40536a;
  font-size: 12px;
}

.contact-required {
  color: var(--steel-dark);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #798898;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  transition:
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.contact-field input {
  min-height: 48px;
  padding: 2px 0 7px;
}

.contact-field select {
  min-height: 48px;
  padding: 2px 30px 7px 0;
  cursor: pointer;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #40536a 50%) calc(100% - 13px)
      calc(50% - 2px) / 6px 6px no-repeat,
    linear-gradient(135deg, #40536a 50%, transparent 50%) calc(100% - 7px)
      calc(50% - 2px) / 6px 6px no-repeat;
}

.contact-field select option {
  background: var(--paper-bright);
  color: var(--blue);
}

.contact-field textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
  border: 1px solid #798898;
}

.contact-field textarea::placeholder {
  color: #536274;
  opacity: 1;
}

.contact-field input::placeholder {
  color: #536274;
  opacity: 1;
}

.contact-field select:invalid {
  color: #536274;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--steel-dark);
  box-shadow: 0 2px 0 var(--steel-dark);
}

.contact-field textarea:focus {
  box-shadow: inset 0 0 0 1px var(--steel-dark);
}

.contact-field input:user-invalid,
.contact-field select:user-invalid,
.contact-field textarea:user-invalid {
  border-color: #9e3e39;
}

.contact-field-hint {
  margin: -2px 0 0;
  color: #536274;
  font-size: 12px;
  line-height: 1.4;
}

.contact-form-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(1, 32, 78, 0.14);
}

.contact-submit-button {
  display: inline-flex;
  width: min(100%, 258px);
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 0 0 19px;
  border: 1px solid var(--blue);
  border-radius: 0;
  background: var(--blue);
  color: white;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.contact-submit-button span:last-child {
  display: grid;
  width: 59px;
  align-self: stretch;
  flex: 0 0 auto;
  margin-left: 18px;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--steel-light);
  font-size: 17px;
  transition: transform 180ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .contact-submit-button:not(:disabled):hover {
    border-color: var(--steel-dark);
    background: var(--steel-dark);
  }

  .contact-submit-button:not(:disabled):hover span:last-child {
    transform: translateX(3px);
    color: white;
  }
}

.contact-submit-button:not(:disabled):active {
  border-color: var(--steel-dark);
  background: var(--steel-dark);
}

.contact-submit-button:focus-visible,
.contact-another-button:focus-visible,
.contact-support-link:focus-visible {
  outline: 3px solid var(--steel-dark);
  outline-offset: 4px;
}

.contact-submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-submit-status {
  max-width: 470px;
  margin: 0;
  color: #40536a;
  font-size: 12px;
  line-height: 1.5;
}

.contact-submit-status.is-error {
  color: #87332e;
}

.contact-support-link {
  color: inherit;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-confirmation {
  min-height: 340px;
  align-self: center;
}

.contact-confirmation:focus {
  outline: none;
}

.contact-confirmation[hidden],
.contact-form[hidden] {
  display: none;
}

.contact-confirmation h3 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.contact-confirmation h3:focus {
  outline: none;
}

.contact-confirmation h3:focus-visible {
  outline: 3px solid var(--steel-dark);
  outline-offset: 7px;
}

.contact-status-kicker {
  color: var(--steel-dark);
}

.contact-status-copy {
  max-width: 570px;
  margin: 19px 0 0;
  color: #40536a;
  font-size: 13px;
  line-height: 1.55;
}

.contact-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 18px;
  align-items: center;
  margin-top: 27px;
}

.contact-another-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(1, 32, 78, 0.35);
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
}

.contact-another-button:hover {
  border-color: var(--steel-dark);
}

@media (max-width: 1080px) {
  .contact-form-header,
  .contact-form-panel {
    padding-right: 34px;
    padding-left: 34px;
  }

  .contact-form,
  .contact-confirmation {
    padding: 28px;
  }
}

@media (min-width: 861px) and (max-width: 1000px) {
  .contact-form,
  .contact-confirmation {
    padding: 24px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-field.is-wide {
    grid-column: auto;
  }

  .contact-field textarea {
    min-height: 112px;
  }
}

@media (max-width: 860px) {
  .contact-area {
    display: block;
    min-height: 0;
    background: var(--blue);
  }

  .contact-area::before {
    top: 150px;
    right: auto;
    left: -48vw;
    width: 138vw;
    height: 138vw;
  }

  .contact-area::after {
    top: 145px;
    right: auto;
    left: 24vw;
    width: 72vw;
    height: 72vw;
  }

  .contact-form-header {
    min-height: clamp(280px, 42svh, 360px);
    padding-top: 48px;
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: 52px;
    padding-left: max(20px, env(safe-area-inset-left));
  }

  .contact-form-header h2 {
    max-width: 590px;
    font-size: clamp(43px, 11.8vw, 56px);
    line-height: 0.95;
  }

  .contact-form-intro {
    max-width: 440px;
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.45;
  }

  .contact-form-panel {
    min-height: 0;
    padding-top: 20px;
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: max(54px, env(safe-area-inset-bottom));
    padding-left: max(20px, env(safe-area-inset-left));
    border-top: 1px solid var(--line-dark);
    border-right: 0;
  }

  .contact-submit-button {
    width: 100%;
    min-height: 54px;
  }

  .contact-submit-button span:last-child {
    width: 54px;
  }

  .contact-field-label {
    font-size: 12px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    font-size: 16px;
  }

  .contact-field input {
    min-height: 50px;
  }

  .contact-field select {
    min-height: 50px;
  }

  .contact-field-hint {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .contact-form-panel {
    padding-right: 0;
    padding-left: 0;
  }

  .contact-form,
  .contact-confirmation {
    width: 100%;
    max-width: none;
    padding: 28px max(20px, env(safe-area-inset-right))
      32px max(20px, env(safe-area-inset-left));
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-field.is-wide {
    grid-column: auto;
  }

  .contact-status-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .contact-confirmation {
    min-height: 300px;
  }

  .contact-another-button {
    width: fit-content;
  }
}

@media (prefers-reduced-motion: reduce) {
  .field::before,
  .field::after,
  .contact-area::before,
  .contact-area::after {
    animation: none !important;
  }

  .contact-area[data-contact-reveal] .contact-form-header,
  .contact-area[data-contact-reveal] .contact-form-panel {
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
}
