.hero {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  gap: 24px 38px;
  align-items: start;
}

.hero-copy {
  gap: 14px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  line-height: 0.99;
}

.intro {
  gap: 8px;
  max-width: 30rem;
}

.hero-brand {
  height: 268px;
  max-height: 268px;
  width: min(100%, 30rem);
  overflow: hidden;
  margin-bottom: -30px;
  opacity: 0.92;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.24));
}

.hero-brand > picture,
.hero-brand > img,
.hero-brand picture > img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-brand picture > img {
  object-fit: cover;
  object-position: center center;
  transform: translateX(-64px) scale(1);
  transform-origin: center center;
}

.hero-side {
  display: grid;
  gap: 16px;
  align-content: start;
  justify-items: end;
  padding-top: 18px;
}

.brand-corner {
  justify-self: start;
}

.hero-status {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.hero-status .eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.hero-status h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-status p {
  font-size: 0.98rem;
  line-height: 1.58;
}

.follow-shell {
  display: grid;
  gap: 12px;
  width: min(100%, 27rem);
}

.follow-form {
  display: grid;
  gap: 10px;
}

.follow-captcha {
  min-height: 0;
}

.follow-captcha:empty {
  display: none;
}

.follow-form[hidden],
.follow-meta[hidden],
.follow-session-mismatch[hidden],
.follow-error[hidden],
.follow-success[hidden] {
  display: none !important;
}

.follow-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.field-label {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.email-input {
  min-height: 52px;
  width: 100%;
  padding: 0 14px;
  border-radius: var(--radius-field);
  border: 1px solid rgba(153, 197, 255, 0.2);
  background: rgba(8, 14, 28, 0.76);
  color: var(--text);
  font: inherit;
}

.email-input::placeholder {
  color: rgba(179, 194, 222, 0.72);
}

.email-input:focus-visible,
.follow-submit:focus-visible {
  outline: 2px solid rgba(143, 211, 255, 0.8);
  outline-offset: 2px;
}

.follow-submit {
  cursor: pointer;
  min-width: 0;
  width: 100%;
}

.follow-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.follow-note {
  font-size: 0.92rem;
  line-height: 1.58;
}

.follow-meta {
  display: grid;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(153, 197, 255, 0.12);
}

.follow-note-minor {
  font-size: 0.88rem;
  color: rgba(179, 194, 222, 0.84);
}

.follow-error,
.follow-success {
  margin: 0;
  padding: 10px 12px;
  border-radius: var(--radius-field);
  font-size: 0.9rem;
  line-height: 1.5;
}

.follow-error {
  border: 1px solid rgba(255, 170, 170, 0.18);
  background: rgba(91, 18, 27, 0.34);
  color: #ffd7d7;
}

.follow-session-mismatch {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-field);
  border: 1px solid rgba(153, 197, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.follow-session-actions {
  display: grid;
  gap: 10px;
}

.follow-session-actions .cta {
  width: 100%;
}

.follow-success {
  border: 1px solid rgba(162, 255, 198, 0.18);
  background: rgba(18, 81, 49, 0.34);
  color: #d6ffe2;
}

@media (max-width: 760px) {
  .panel {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy {
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
    line-height: 1.02;
  }

  .intro {
    max-width: 100%;
  }

  .hero-side {
    width: 100%;
    padding-top: 0;
    justify-items: stretch;
    gap: 0;
  }

  .hero-brand {
    height: 200px;
    max-height: 200px;
    width: min(100%, 20rem);
    margin-bottom: 0;
  }

  .hero-brand picture > img {
    transform: none;
  }

  .hero-status {
    padding: 20px;
  }

  .follow-shell {
    width: 100%;
    min-width: 0;
  }

  .follow-form-row {
    grid-template-columns: 1fr;
  }
}
