:root {
  --paper: #f6efe3;
  --ink: #171615;
  --red: #ef3e2f;
  --blue: #3155d9;
  --yellow: #f3c649;
  --line: rgba(23, 22, 21, 0.2);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}
.site-header,
main,
footer {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 4rem);
  padding-right: clamp(1.25rem, 4vw, 4rem);
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.wordmark {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.82;
  text-decoration: none;
  transform: rotate(-2deg);
}
.wordmark span,
.wordmark em {
  display: block;
}
.wordmark em {
  color: var(--red);
  font-style: normal;
  margin-left: 1.1rem;
}
.header-note,
.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.header-note {
  opacity: 0.65;
}
.hero {
  min-height: calc(100vh - 5rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding-top: clamp(3rem, 9vw, 8rem);
  padding-bottom: clamp(4rem, 9vw, 8rem);
}
.eyebrow {
  color: var(--red);
  margin: 0 0 1.5rem;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4rem, 9vw, 9rem);
  letter-spacing: -0.1em;
  line-height: 0.82;
}
.hero h1 span {
  color: var(--blue);
  display: block;
}
.lede {
  max-width: 34rem;
  margin: 2rem 0 2.5rem;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.35;
}
.signup-form {
  max-width: 39rem;
}
.signup-form > label:first-child {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
  font-weight: 800;
}
.form-row {
  display: flex;
  gap: 0.6rem;
}
.form-row input {
  min-width: 0;
  flex: 1;
  border: 2px solid var(--ink);
  background: transparent;
  padding: 1rem;
  font: inherit;
}
.form-row button {
  border: 2px solid var(--ink);
  background: var(--red);
  color: white;
  padding: 1rem 1.2rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.form-row button:hover,
.form-row button:focus-visible {
  background: var(--blue);
}
.form-row button:disabled {
  cursor: wait;
  opacity: 0.7;
}
.consent {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 0.75rem;
  font-size: 0.74rem;
  line-height: 1.3;
}
.consent input {
  accent-color: var(--red);
  margin-top: 0.1rem;
}
.form-message {
  min-height: 1.25rem;
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  font-weight: 700;
}
.form-message.error {
  color: var(--red);
}
.form-message.success {
  color: #287048;
}
.website {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
}
.hero-art {
  position: relative;
  min-height: clamp(22rem, 42vw, 36rem);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-art:before {
  content: "";
  position: absolute;
  width: clamp(15rem, 30vw, 27rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  z-index: -1;
}
.orbit {
  position: absolute;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-23deg);
}
.orbit-one {
  width: 90%;
  height: 42%;
}
.orbit-two {
  width: 72%;
  height: 78%;
  transform: rotate(63deg);
}
.grabbing-hand {
  position: relative;
  width: clamp(10rem, 23vw, 18rem);
  height: clamp(12rem, 28vw, 22rem);
  transform: rotate(-17deg);
}
.grabbing-hand span {
  position: absolute;
  width: 28%;
  height: 65%;
  border: clamp(7px, 1vw, 13px) solid var(--ink);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  background: var(--red);
}
.grabbing-hand span:nth-child(1) {
  left: 3%;
  top: 0;
  transform: rotate(-17deg);
}
.grabbing-hand span:nth-child(2) {
  left: 25%;
  top: -10%;
  height: 72%;
}
.grabbing-hand span:nth-child(3) {
  left: 49%;
  top: -4%;
  height: 68%;
  transform: rotate(8deg);
}
.grabbing-hand span:nth-child(4) {
  left: 70%;
  top: 10%;
  height: 58%;
  transform: rotate(22deg);
}
.grabbing-hand b {
  position: absolute;
  bottom: 0;
  left: 21%;
  width: 64%;
  height: 62%;
  border: clamp(7px, 1vw, 13px) solid var(--ink);
  border-radius: 25% 45% 35% 35%;
  background: var(--red);
}
.art-label {
  position: absolute;
  right: 0;
  bottom: 8%;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
  transform: rotate(8deg);
}
.ticker {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 1rem 0;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.ticker span:nth-child(2) {
  color: var(--red);
}
.details {
  padding-top: clamp(5rem, 11vw, 10rem);
  padding-bottom: clamp(5rem, 11vw, 10rem);
}
.details h2 {
  max-width: 850px;
  margin: 0 0 4rem;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.detail-grid article {
  border-top: 2px solid var(--ink);
  padding-top: 1rem;
}
.detail-grid strong {
  color: var(--red);
}
.detail-grid h3 {
  font-size: 1.4rem;
  margin: 2.3rem 0 0.7rem;
}
.detail-grid p {
  max-width: 18rem;
  line-height: 1.4;
  margin: 0;
}
footer {
  border-top: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  padding-bottom: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
}
@media (max-width: 700px) {
  .header-note {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4rem;
  }
  .hero-art {
    order: -1;
    min-height: 18rem;
  }
  .form-row {
    flex-direction: column;
  }
  .ticker {
    flex-wrap: wrap;
  }
  .ticker span {
    flex-basis: 45%;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  footer {
    flex-direction: column;
  }
}
