.layout__capture .capture__inner {
  background: var(--bg-alt);
  color: var(--fg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(1.4545454545rem, 5vw, 2.9090909091rem);
  text-align: center;
}
.layout__capture[data-theme=dark] .capture__inner {
  background: var(--bg);
  border-color: var(--rule);
}
.layout__capture .capture__head {
  display: flex;
  flex-direction: column;
  gap: 0.5454545455rem;
  align-items: center;
  margin-bottom: 1.2727272727rem;
}
.layout__capture .capture__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.1818181818rem, 3.4vw, 1.7272727273rem);
  line-height: 1.14;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
.layout__capture .capture__intro {
  max-width: 52ch;
  color: var(--muted);
  margin: 0;
}
.layout__capture .capture__fallback .capture__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5454545455rem;
  justify-content: center;
  max-width: 29.0909090909rem;
  margin: 0 auto;
}
.layout__capture .capture__fallback .capture__row input {
  flex: 1 1 10rem;
  min-width: 0;
  padding: 0.5454545455rem 0.7272727273rem;
  font-family: var(--font-sans);
  font-size: 0.6363636364rem;
  line-height: 1.4;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.layout__capture .capture__fallback .capture__row input::placeholder {
  color: var(--muted);
}
.layout__capture .capture__fallback .capture__row input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.layout__capture .gform_wrapper input[type=text],
.layout__capture .gform_wrapper input[type=email],
.layout__capture .gform_wrapper input[type=tel],
.layout__capture .gform_wrapper input[type=number],
.layout__capture .gform_wrapper textarea,
.layout__capture .gform_wrapper select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.6363636364rem;
  line-height: 1.4;
  padding: 0.5454545455rem 0.7272727273rem;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.layout__capture .gform_wrapper input[type=text]::placeholder,
.layout__capture .gform_wrapper input[type=email]::placeholder,
.layout__capture .gform_wrapper input[type=tel]::placeholder,
.layout__capture .gform_wrapper input[type=number]::placeholder,
.layout__capture .gform_wrapper textarea::placeholder,
.layout__capture .gform_wrapper select::placeholder {
  color: var(--muted);
}
.layout__capture .gform_wrapper input[type=text]:focus-visible,
.layout__capture .gform_wrapper input[type=email]:focus-visible,
.layout__capture .gform_wrapper input[type=tel]:focus-visible,
.layout__capture .gform_wrapper input[type=number]:focus-visible,
.layout__capture .gform_wrapper textarea:focus-visible,
.layout__capture .gform_wrapper select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.layout__capture .gform_wrapper .gfield_label,
.layout__capture .gform_wrapper .gfield_description,
.layout__capture .gform_wrapper .gform_validation_errors {
  font-size: 0.5454545455rem;
  line-height: 1.4;
}
.layout__capture .gform_wrapper .gfield_required,
.layout__capture .gform_wrapper .gfield_required * {
  color: var(--green-300, #8FB1AE);
  font-style: normal;
}
.layout__capture .capture__note {
  margin: 0.8181818182rem 0 0;
  font-size: 0.6363636364rem;
  color: var(--muted);
}
.layout__capture .button {
  display: inline-block;
  padding: 0.6363636364rem 1.2727272727rem;
  font-family: var(--font-sans);
  font-size: 0.6363636364rem;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.25s var(--ease);
}
.layout__capture .button:hover {
  opacity: 0.88;
}
.layout__capture .button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.layout__capture .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
