:root {
  --ink: #12343b;
  --ink-soft: #416269;
  --paper: #f4f8f7;
  --surface: #ffffff;
  --line: #c7d6d3;
  --coral: #ed725f;
  --sun: #f2cf63;
  --sky: #bfe7ee;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: Manrope, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  margin: 0;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-header,
.hero,
.principles,
.join,
footer {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 28px;
  padding-right: 28px;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
  padding-top: 24px;
}

.wordmark {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0;
  text-decoration: none;
}

.mark {
  align-items: end;
  background: var(--ink);
  display: inline-flex;
  gap: 2px;
  height: 24px;
  justify-content: center;
  padding: 5px;
  width: 24px;
}

.mark span {
  background: var(--sun);
  display: block;
  height: 100%;
  width: 3px;
}

.mark span:nth-child(2) {
  background: var(--sky);
  height: 64%;
}

.mark span:nth-child(3) {
  background: var(--coral);
  height: 82%;
}

.early-access,
.eyebrow,
.section-label,
.principle-number,
.ribbon-note {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.early-access {
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 7px 9px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 610px;
  padding-bottom: 72px;
  padding-top: 60px;
}

.eyebrow,
.section-label {
  color: var(--ink-soft);
  margin: 0 0 18px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.91;
  margin-bottom: 28px;
}

h1 em {
  color: var(--coral);
}

.intro {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
  max-width: 470px;
}

.text-link {
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 12px;
  margin-top: 16px;
  padding-bottom: 6px;
  text-decoration: none;
}

.text-link:hover {
  color: var(--coral);
}

.photo-ribbon {
  height: 430px;
  position: relative;
}

.photo {
  background: var(--surface);
  border: 1px solid var(--ink);
  margin: 0;
  padding: 8px;
  position: absolute;
}

.photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ribbon-caption {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  left: 11%;
  position: absolute;
  top: 367px;
  z-index: 4;
}

.photo-one {
  height: 352px;
  left: 10%;
  top: 4px;
  transform: rotate(-5deg);
  width: 254px;
  z-index: 2;
}

.photo-two {
  height: 285px;
  right: 3%;
  top: 47px;
  transform: rotate(7deg);
  width: 210px;
  z-index: 1;
}

.photo-three {
  bottom: 3px;
  height: 188px;
  left: 35%;
  transform: rotate(-1deg);
  width: 254px;
  z-index: 3;
}

.ribbon-note {
  background: var(--sun);
  bottom: 21px;
  padding: 10px 13px;
  position: absolute;
  right: 2%;
  transform: rotate(3deg);
  z-index: 4;
}

.principles {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: 62px;
  padding-top: 28px;
}

.principle-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.principle-grid article {
  border-top: 3px solid var(--ink);
  padding-top: 24px;
}

.principle-grid article:nth-child(2) {
  border-color: var(--coral);
}

.principle-grid article:nth-child(3) {
  border-color: var(--sun);
}

.principle-number {
  color: var(--ink-soft);
  margin-bottom: 29px;
}

.principle-grid h2 {
  font-size: 39px;
  margin-bottom: 8px;
}

.principle-grid p:last-child {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  max-width: 270px;
}

.join {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: 0.9fr 1.1fr;
  padding-bottom: 96px;
  padding-top: 104px;
}

.join h2 {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.96;
  margin-bottom: 22px;
}

.join-copy > p:last-child {
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 380px;
}

.interest-form {
  background: var(--surface);
  border-top: 5px solid var(--ink);
  padding: 28px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.form-field label {
  font-size: 14px;
  font-weight: 700;
}

.form-field input,
.form-field select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  min-height: 50px;
  padding: 12px;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--coral);
  outline: 3px solid rgba(237, 114, 95, 0.22);
  outline-offset: 1px;
}

.turnstile-slot {
  min-height: 66px;
}

.interest-form button {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--surface);
  cursor: pointer;
  font-weight: 700;
  min-height: 52px;
  padding: 12px 17px;
  width: 100%;
}

.interest-form button:hover:not(:disabled) {
  background: var(--coral);
  border-color: var(--coral);
}

.interest-form button:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.interest-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
  margin: 8px 0 12px;
  min-height: 20px;
}

.form-status.error {
  color: #9c2f24;
}

.form-status.success {
  color: #17613d;
}

.form-note {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
  margin: 15px 0 0;
}

.form-note a {
  text-underline-offset: 2px;
}

.privacy-copy {
  margin: 70px auto 110px;
  max-width: 720px;
  padding: 0 28px;
}

.privacy-copy h1 {
  font-size: clamp(52px, 6vw, 76px);
  line-height: 0.92;
  margin-bottom: 22px;
}

.privacy-copy h1 em {
  color: var(--coral);
}

.privacy-copy h2 {
  font-size: 32px;
  line-height: 1;
  margin: 42px 0 12px;
}

.privacy-copy p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.privacy-copy .eyebrow {
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.honeypot {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding-bottom: 28px;
  padding-top: 24px;
}

footer a {
  text-underline-offset: 3px;
}

@media (max-width: 800px) {
  .hero,
  .join {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 20px;
    min-height: 0;
    padding-bottom: 60px;
    padding-top: 42px;
  }

  .photo-ribbon {
    height: 340px;
    margin-top: 15px;
  }

  .photo-one {
    height: 280px;
    left: 2%;
    width: 206px;
  }

  .photo-two {
    height: 218px;
    right: 0;
    width: 160px;
  }

  .photo-three {
    height: 148px;
    left: 27%;
    width: 200px;
  }

  .ribbon-caption {
    bottom: 2px;
    left: 2%;
    top: auto;
  }

  .join {
    gap: 38px;
    padding-bottom: 72px;
    padding-top: 70px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .principles,
  .join,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .early-access {
    font-size: 10px;
  }

  .privacy-copy {
    margin-bottom: 72px;
    margin-top: 38px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article {
    padding-top: 16px;
  }

  .principle-number {
    margin-bottom: 17px;
  }

  .principle-grid h2 {
    font-size: 34px;
  }

  .photo-ribbon {
    height: 304px;
  }

  .photo-one {
    height: 250px;
    width: 183px;
  }

  .photo-two {
    height: 188px;
    width: 138px;
  }

  .photo-three {
    height: 125px;
    width: 168px;
  }

  .ribbon-caption {
    font-size: 14px;
    left: 1%;
  }

  .ribbon-note {
    bottom: 5px;
    font-size: 10px;
    right: 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
