.section.dark.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
  border-top: 0;
  background: var(--vermilion);
}
.section.dark.hero ::selection {
  background: var(--ink);
  color: var(--bone);
}
.section.dark.hero::before,
.section.dark.hero::after {
  position: absolute;
  width: clamp(3rem, 8vw, 7rem);
  height: clamp(3rem, 8vw, 7rem);
  border-color: rgba(242, 238, 230, 0.6);
  content: "";
  pointer-events: none;
}
.section.dark.hero::before {
  top: 2rem;
  left: var(--gutter);
  border-top: 1px solid;
  border-left: 1px solid;
}
.section.dark.hero::after {
  right: var(--gutter);
  bottom: 2rem;
  border-right: 1px solid;
  border-bottom: 1px solid;
}
.section.dark.hero .tray {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 1rem;
  color: var(--bone);
  border-bottom-color: rgba(242, 238, 230, 0.5);
}
.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: end;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(2.5rem, 5vw, 5rem);
  }
}
.hero__intro {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__headline {
  max-width: 12ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--bone);
  hyphens: none;
  word-break: normal;
}
.section.dark.hero .hero__headline em {
  color: var(--white);
}
.section.dark.hero .hero__lede {
  max-width: 38ch;
  margin-top: 0;
  color: var(--bone);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
}
.hero__actions .btn {
  --bg: var(--ink);
  --bd: var(--ink);
}
.hero__actions .btn:hover {
  --bg: var(--bone);
  --bd: var(--bone);
  --fg: var(--ink);
}
.hero__reassure {
  max-width: 60ch;
  margin-top: 1.5rem;
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.hero__flow {
  position: relative;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border: 1px solid rgba(242, 238, 230, 0.65);
}
.hero__flow::before,
.hero__flow::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--bone);
  background: var(--vermilion);
  content: "";
}
.hero__flow::before {
  top: -5px;
  left: -5px;
}
.hero__flow::after {
  right: -5px;
  bottom: -5px;
}
.hero__flow-label {
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(242, 238, 230, 0.4);
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__flow-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero__flow-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 0;
}
.hero__flow-step:not(:last-child)::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 1.25rem;
  width: 1px;
  height: 100%;
  background: var(--bone);
  content: "";
  opacity: 0.55;
}
.hero__flow-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--bone);
  background: var(--vermilion-d);
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: var(--t-xs);
}
.hero__flow-name {
  color: var(--bone);
  font-family: var(--f-display);
  font-size: var(--t-md);
  letter-spacing: -0.01em;
}
@media (min-width: 900px) {
  .hero__headline {
    font-size: clamp(4.25rem, 5.5vw, 5.75rem);
  }
  .hero__flow {
    margin-bottom: clamp(2rem, 6vw, 6rem);
  }
}
.hero__flow-name small {
  display: block;
  margin-top: 0.25rem;
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
.hero__flow-meta {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(242, 238, 230, 0.4);
}
.hero__flow-meta p {
  margin: 0;
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: var(--t-sm);
  line-height: 1.5;
}
.hero__flow-meta-key {
  margin-right: 0.5rem;
  color: var(--bone);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section.dark strong,
.section.dark .lede strong {
  color: var(--bone);
  font-weight: 600;
}
