:root {
  --main-width: 680px;
}

/* Logo position and size are inherited from shared.css. */
.brand {
  margin-bottom: -11px;
}

.headline {
  max-width: 660px;
  margin: 0;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 0.98;
}

.signature {
  margin: clamp(28px, 3vh, 34px) 0 0;
  font-size: clamp(9px, 1vw, 11px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.copy {
  max-width: 590px;
  margin: clamp(31px, 3.4vh, 38px) auto 0;
  color: var(--body-copy);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  line-height: 1.55;
}

.copy-secondary {
  max-width: 610px;
  margin-top: clamp(18px, 2vh, 22px);
}

.actions {
  width: min(100%, 400px);
  margin-top: clamp(12px, 1.6vh, 17px);
  display: grid;
  gap: 10px;
}

@media (max-width: 640px) {
  :root {
    --main-width: 400px;
  }

  .headline {
    font-size: clamp(31px, 8.5vw, 40px);
    line-height: 1;
  }

  .signature {
    max-width: 320px;
    margin-top: 22px;
    font-size: 9px;
  }

  .copy {
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.48;
  }

  .copy-secondary {
    margin-top: 16px;
  }

  .actions {
    width: min(100%, 296px);
    margin-top: 15px;
  }
}

@media (max-height: 760px) {
  .headline {
    font-size: clamp(30px, 5.2vh, 42px);
  }

  .signature {
    margin-top: 10px;
  }

  .copy {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.42;
  }

  .copy-secondary {
    margin-top: 9px;
  }

  .actions {
    margin-top: 12px;
    gap: 8px;
  }
}
