
.hero,
.section {
  box-sizing: border-box;
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.hero {
  position: relative;
  background: var(--wp--preset--color--linen);
  padding: clamp(48px, 5vw, 72px) var(--ec-pad);
  text-align: left;
}
.hero__inner { position: relative; max-width: 1180px; margin: 0 auto; }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--wp--preset--color--ink);
  margin: 0 0 var(--wp--preset--spacing--s-5);
}
.hero__name {
  font-family: var(--wp--preset--font-family--spectral);
  font-weight: 300;
  font-size: var(--wp--preset--font-size--h-1);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  color: var(--wp--preset--color--ink);
}

.section {
  background: var(--wp--preset--color--paper);
  padding: clamp(40px, 5vw, 64px) 0 clamp(72px, 9vw, 120px);
}
.section__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--ec-pad);
}
.section__col { max-width: 720px; }
.section__p {
  font-family: var(--wp--preset--font-family--inter);
  font-weight: 300;
  font-size: var(--wp--preset--font-size--base);
  line-height: 1.7;
  color: var(--wp--preset--color--ink);
  margin: 0 0 var(--wp--preset--spacing--s-6);
  text-wrap: pretty;
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 1023px) {
  .auth-grid { grid-template-columns: 1fr; }
  .auth-grid__col { max-width: 460px; }
}

.auth-grid__copy { max-width: 52ch; }

.auth-embed {
  border: 1px solid var(--wp--preset--color--rule-mist);
  background: var(--wp--preset--color--paper);
  padding: clamp(28px, 3.5vw, 40px);
}

.auth-note {
  font-family: var(--wp--preset--font-family--inter);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: var(--wp--preset--color--smoke);
  margin: var(--wp--preset--spacing--s-4) 0 0;
  max-width: 60ch;
}
.auth-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-small, 200ms ease-out);
}
.auth-note a:hover { color: var(--wp--preset--color--ink); }
