:root {
  --text: #2b2b2b;
  --secondary: #6b6b6b;
  --line: #e8e8e8;
  --soft: #fafafa;
  --white: #FFFFFF;
  --max: 840px;
  --pad: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #FFFFFF;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
}

main {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero,
.section,
footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 100px;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid var(--line);
}

.soft {
  width: 100%;
  max-width: none;
  padding-left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  padding-right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  background: var(--soft);
}

.soft > * {
  max-width: calc(var(--max) - (var(--pad) * 2));
}

.logo-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #3f4447;
  border-radius: 12px;
}

.logo-mark span {
  width: 7px;
  height: 7px;
  background: #f2f2f0;
  border-radius: 1px;
}

.brand-name {
  margin-top: 56px;
  margin-bottom: 18px;
  color: var(--secondary);
  font-size: 18px;
  line-height: 28px;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 32px;
  font-size: 64px;
  line-height: 72px;
}

h2 {
  margin-bottom: 32px;
  font-size: 40px;
  line-height: 48px;
}

p {
  max-width: 720px;
  margin: 0 0 24px;
}

.statement {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--text);
  font-size: 24px;
  line-height: 32px;
}

.statement.compact {
  margin-top: 48px;
  margin-bottom: 0;
}

ul {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 0 0 32px;
  padding-left: 1.2em;
}

li {
  padding-left: 6px;
}

.examples {
  max-width: 720px;
  border-top: 1px solid var(--line);
}

.examples details {
  border-bottom: 1px solid var(--line);
}

.examples summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.examples summary::-webkit-details-marker {
  display: none;
}

.examples summary span:first-child {
  font-size: 18px;
  line-height: 28px;
}

.examples summary span:last-child {
  color: var(--secondary);
  font-size: 24px;
  line-height: 1;
}

.examples details[open] summary span:last-child {
  transform: rotate(45deg);
}

.example-content {
  padding-bottom: 32px;
}

.example-content h3 {
  margin: 28px 0 8px;
  color: var(--secondary);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.example-content p {
  margin-bottom: 0;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  margin-top: 16px;
  color: var(--text);
  font-size: 18px;
  line-height: 28px;
  border-bottom: 1px solid var(--text);
}

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

.closing-line {
  margin-top: 40px;
  margin-bottom: 0;
  color: var(--text);
}

.about {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 48px;
  align-items: start;
}

.about-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  object-position: 46% 34%;
  filter: grayscale(100%);
  border-radius: 4px;
}

.closing {
  text-align: center;
}

.closing p,
.closing .statement,
.final-cta h2,
.final-cta .text-link {
  margin-left: auto;
  margin-right: auto;
}

.final-cta {
  text-align: center;
}

.final-logo {
  margin: 0 auto 40px;
}

footer {
  display: flex;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
  color: var(--secondary);
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 22px;
}

.legal-page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 80px var(--pad) 120px;
}

.legal-page h1 {
  max-width: 760px;
  margin: 56px 0 48px;
  color: var(--text);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 72px;
}

.legal-page h2 {
  max-width: 720px;
  margin: 64px 0 24px;
  color: var(--text);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
}

.legal-page p {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--text);
  font-size: 18px;
  line-height: 28px;
}

.back-link {
  display: inline-flex;
  color: var(--secondary);
  font-size: 14px;
  line-height: 22px;
  border-bottom: 1px solid transparent;
}

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

.reveal {
  animation: fade-in 700ms ease both;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal {
    animation: none;
  }
}

@media (max-width: 900px) {
  :root {
    --pad: 40px;
  }

  h1 {
    font-size: 48px;
    line-height: 56px;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 20px;
  }

  body {
    font-size: 18px;
    line-height: 28px;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 80px;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  h1 {
    font-size: 36px;
    line-height: 44px;
  }

  h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .legal-page {
    padding-top: 56px;
    padding-bottom: 80px;
  }

  .legal-page h1 {
    margin-top: 48px;
    margin-bottom: 40px;
    font-size: 36px;
    line-height: 44px;
  }

  .legal-page h2 {
    margin-top: 48px;
    font-size: 28px;
    line-height: 36px;
  }

  .statement {
    font-size: 24px;
    line-height: 32px;
  }

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

  .about-image {
    max-width: 260px;
  }

  footer {
    flex-direction: column;
    gap: 10px;
  }
}
