/* Single-purpose studio-follow form. */
.follow {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  scroll-margin-top: 4rem;
  background:
    radial-gradient(70% 100% at 5% 42%, rgba(132,171,78,.13), transparent 68%),
    radial-gradient(65% 100% at 100% 80%, rgba(201,154,76,.09), transparent 70%),
    #100e09;
}
.follow::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .22;
  background: repeating-linear-gradient(92deg, transparent 0 58px, rgba(236,225,200,.035) 59px, transparent 60px 118px);
}
.follow__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,.78fr) minmax(520px,1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
.follow__intro .section-title { max-width: 12ch; }
.follow__lede {
  max-width: 39ch;
  margin: 0 0 2rem;
  color: var(--text-dim);
  font-size: var(--step-1);
  line-height: 1.5;
}
.follow__promises {
  display: grid; gap: .85rem;
  list-style: none;
  margin: 0 0 2rem; padding: 0;
  color: var(--text);
}
.follow__promises li { display: flex; gap: .85rem; align-items: baseline; line-height: 1.45; }
.follow__promises span {
  flex: 0 0 auto;
  color: var(--brass);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .1em;
}
.follow__privacy {
  max-width: 48ch;
  margin: 0;
  color: var(--text-faint);
  font-size: .78rem;
  line-height: 1.6;
}
.follow__card {
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: clamp(20px, 3vw, 30px);
  background: linear-gradient(145deg, rgba(36,29,17,.97), rgba(18,15,10,.99));
  box-shadow: 0 38px 100px -45px rgba(0,0,0,.9), inset 0 1px rgba(255,255,255,.025);
}
.follow-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.follow-step legend {
  width: 100%;
  margin: 0 0 1.6rem;
  padding: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.8rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.follow-step__kicker {
  display: block;
  margin-bottom: .75rem;
  color: var(--brass);
  font-family: var(--font-mono);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}
.follow__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1.6rem;
}
.follow__actions .btn { min-height: 48px; cursor: pointer; }
.follow__actions button:disabled { opacity: .5; cursor: wait; }
.follow-email { display: grid; gap: .65rem; }
.follow-email > span {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.follow-email input {
  width: 100%; min-height: 58px;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(8,7,5,.75);
  color: var(--text);
  font: 500 1.05rem var(--font-body);
}
.follow-email input::placeholder { color: var(--text-faint); }
.follow-email input:focus { outline: 2px solid var(--accent); outline-offset: 2px; border-color: var(--accent); }
.follow-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: start;
  margin-top: 1rem;
  color: var(--text-dim);
  font-size: .78rem;
  line-height: 1.5;
  cursor: pointer;
}
.follow-consent input { width: 18px; height: 18px; margin: .1rem 0 0; accent-color: var(--accent); }
.follow__status {
  min-height: 1.4em;
  margin: 1rem 0 0;
  color: var(--text-dim);
  font-size: .78rem;
  text-align: right;
}
.follow__status.is-error { color: #e28c82; }
.follow__success { padding: clamp(1rem, 3vw, 2rem) 0; text-align: center; }
.follow__success-mark {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  margin: 0 auto 1.4rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.7rem;
  box-shadow: 0 0 50px rgba(132,171,78,.2);
}
.follow__success .eyebrow { margin-bottom: .8rem; }
.follow__success h3 { margin: 0 0 .8rem; font: 600 var(--step-2)/1.08 var(--font-display); }
.follow__success p:last-child { margin: 0; color: var(--text-dim); }
@media (max-width: 980px) {
  .follow__layout { grid-template-columns: 1fr; gap: 3rem; }
  .follow__intro .section-title, .follow__lede, .follow__privacy { max-width: 58ch; }
}
@media (max-width: 620px) {
  .follow { padding-left: 1rem; padding-right: 1rem; }
  .follow__card { padding: 1.35rem; border-radius: 18px; }
  .follow__actions .btn { width: 100%; justify-content: center; }
  .follow__status { text-align: left; }
}
