* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #f1f2f4;
  color: #10131a;
}
body {
  margin: 0;
  font:
    16px/1.5 Arial,
    Helvetica,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #1749b8;
  outline-offset: 5px;
}
.skip {
  position: fixed;
  top: 8px;
  left: 16px;
  transform: translateY(-150%);
  padding: 12px;
  background: white;
  z-index: 10;
}
.skip:focus {
  transform: none;
}
.frame {
  margin: 0 2.65%;
  border-inline: 1px solid #e2e5e9;
}
header {
  height: 70px;
  border-bottom: 1px solid #e1e4e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 11.3vw;
}
.brand {
  display: flex;
  align-items: center;
  gap: 4px;
  font:
    30px/1 Georgia,
    "Times New Roman",
    serif;
  white-space: nowrap;
  min-height: 44px;
}
.brand svg {
  width: 26px;
  height: 26px;
  color: #4f91b1;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #5e636b;
}
nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
nav a:hover {
  color: #1958c7;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 18px;
  border: 1px solid #d7dce2;
  border-radius: 28px;
  background: linear-gradient(#fff, #f6f7f9);
  box-shadow:
    0 1px 2px #b5bfcc26,
    inset 0 2px 1px #ffffffd9;
  line-height: 1.3;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  box-shadow: 0 3px 12px #8d9aaf30;
  border-color: #b1bfd5;
}
.header-call {
  font-size: 14px;
  white-space: nowrap;
  padding-inline: 14px;
}
.primary {
  color: #fff;
  border-color: #87b0fb;
  background: linear-gradient(#2467e9, #2463df);
  box-shadow:
    0 0 0 3px #dce6f8,
    inset 0 2px 2px #a4c6ff80;
}
.primary:hover {
  background: #205ccc;
}
.hero {
  height: calc(70.3125vw - 70px);
  max-height: 1100px;
  min-height: 700px;
  position: relative;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 58px 24px 0;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
h1 {
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(54px, 5.2vw, 88px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}
.hero-copy p {
  color: #626870;
  font-size: clamp(14px, 1.25vw, 19px);
  line-height: 1.3;
  margin: 24px 0 0;
}
.actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 52px;
}
.workflow {
  position: absolute;
  top: calc(19.53vw - 70px);
  left: -2.8%;
  width: 105.6%;
  height: auto;
  overflow: visible;
}
.float {
  animation: float 7s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  animation-play-state: paused;
}
.signal {
  animation: flow 7s linear infinite;
  animation-play-state: paused;
}
.breathe {
  animation: breathe 7s ease-in-out infinite;
  animation-play-state: paused;
}
.moving .float,
.moving .signal,
.moving .breathe {
  animation-play-state: running;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
@keyframes flow {
  to {
    stroke-dashoffset: -357;
  }
}
@keyframes breathe {
  50% {
    opacity: 0.5;
  }
}
.template-notes {
  padding: 24px max(24px, 11.3vw - 2.65vw) 40px;
  border-top: 1px solid #e1e4e8;
  color: #515966;
  font-size: 14px;
}
.utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.utility button {
  color: #4e5869;
  background: transparent;
  border: 1px solid #ced4df;
  border-radius: 24px;
  padding: 10px 16px;
  min-height: 44px;
  font-size: 13px;
}
details {
  border-top: 1px solid #dce1e8;
  scroll-margin-top: 24px;
}
summary {
  padding: 16px 0;
  cursor: pointer;
  min-height: 44px;
  color: #242e3e;
}
summary:hover {
  color: #215ac7;
}
.detail-body {
  max-width: 650px;
  padding: 0 0 24px;
}
h2 {
  font:
    32px/1.15 Georgia,
    serif;
  font-weight: 400;
  color: #182236;
  margin: 8px 0 24px;
}
.detail-body li {
  margin-bottom: 12px;
}
.detail-body ul,
.detail-body ol {
  padding-left: 24px;
}
footer {
  margin-top: 32px;
  font-size: 12px;
}
footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1700px) {
  .frame {
    max-width: 1640px;
    margin: auto;
  }
  .hero {
    height: 1100px;
  }
  .workflow {
    top: 260px;
  }
  .hero-copy {
    padding-top: 70px;
  }
}
@media (max-width: 1100px) {
  header {
    padding-inline: 11.3vw;
    height: 50px;
    gap: 20px;
  }
  .brand {
    font-size: 26px;
  }
  nav {
    gap: 18px;
    font-size: 12px;
  }
  .hero-copy {
    padding-top: 44px;
  }
  .hero {
    min-height: 650px;
  }
  .hero-copy p {
    margin-top: 20px;
  }
  .actions {
    margin-top: 28px;
    font-size: 14px;
  }
  .workflow {
    top: 150px;
  }
}
@media (max-width: 700px) {
  .frame {
    margin-inline: 14px;
  }
  header {
    height: auto;
    min-height: 110px;
    flex-wrap: wrap;
    padding: 16px;
    gap: 8px 12px;
  }
  .brand {
    font-size: 24px;
  }
  .brand svg {
    width: 22px;
  }
  .header-call {
    font-size: 12px;
    padding-inline: 12px;
    min-height: 44px;
  }
  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 11px;
  }
  nav a {
    min-height: 44px;
  }
  .hero {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }
  .hero-copy {
    padding: 38px 12px 0;
  }
  h1 {
    font-size: clamp(36px, 10.5vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }
  .hero-copy p {
    font-size: 14px;
    line-height: 1.45;
    margin: 22px auto 0;
    max-width: 350px;
  }
  .desktop-break {
    display: none;
  }
  .actions {
    margin-top: 30px;
    gap: 10px;
    font-size: 12px;
  }
  .button {
    padding: 10px 14px;
  }
  .workflow {
    position: relative;
    display: block;
    left: -4%;
    width: 108%;
    top: auto;
    margin: 14px 0 24px;
  }
  .template-notes {
    padding: 20px 16px 32px;
  }
  .utility {
    font-size: 11px;
    gap: 12px;
  }
  .utility button {
    font-size: 11px;
    white-space: nowrap;
    padding: 8px 12px;
  }
  h2 {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .moving .float,
  .moving .signal,
  .moving .breathe {
    animation: none;
  }
  .button {
    transition: none;
  }
}
