:root {
  color-scheme: light;
  --paper: #f7f5ef;
  --ink: #10263d;
  --muted: #66727b;
  --line: #d9d6ce;
  --accent: #ee725f;
  font-family: ui-serif, Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
  background: var(--paper);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(82, 197, 189, 0.14), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(247, 245, 239, 0) 38%),
    var(--paper);
}

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

a:hover,
a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  outline: none;
}

.page {
  width: min(100% - 40px, 980px);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 34px 0 28px;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.wordmark {
  color: var(--ink);
  font-weight: 700;
}

.quiet {
  align-self: center;
  display: grid;
  grid-template-columns: clamp(112px, 14vw, 160px) minmax(0, 1fr);
  column-gap: clamp(30px, 7vw, 84px);
  align-items: center;
  padding: clamp(72px, 14vh, 150px) 0;
}

.mark {
  display: grid;
  place-items: center;
  width: clamp(112px, 14vw, 160px);
  aspect-ratio: 1;
  border-radius: 42% 42% 42% 14%;
  background: var(--ink);
  color: #fff;
  font-size: clamp(56px, 7vw, 82px);
  line-height: 1;
  box-shadow: 0 24px 60px rgba(16, 38, 61, 0.14);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 10vw, 124px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.tagline {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.footer {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 30px, 980px);
    padding-top: 24px;
  }

  .quiet {
    grid-template-columns: 1fr;
    padding: 76px 0 88px;
  }

  .mark {
    width: 92px;
    margin-bottom: 44px;
    font-size: 48px;
  }

  h1 {
    font-size: clamp(52px, 17vw, 78px);
  }

  .tagline {
    margin-top: 24px;
  }

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