* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --background: #020202;
  --text: #f4f4f4;
  --muted: #c1c1c1;
  --quiet: #858585;
  --line: rgba(255, 255, 255, 0.14);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 255, 255, 0.065), transparent 34rem),
    var(--background);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.page {
  width: min(900px, calc(100% - 44px));
  margin: 0 auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 600;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.email {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

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

.hero {
  padding: 124px 0 66px;
  border-bottom: 1px solid var(--line);
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(40px, 6.2vw, 70px);
  line-height: 1.09;
  letter-spacing: -0.035em;
  font-weight: 640;
}

.intro {
  max-width: 750px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.78;
  letter-spacing: -0.004em;
}

.statement {
  max-width: 750px;
  padding: 48px 0 82px;
}

.statement p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
  letter-spacing: -0.003em;
}

.statement p:last-child {
  margin-bottom: 0;
}

.statement a {
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

footer {
  padding: 0 0 40px;
  color: var(--quiet);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 680px) {
  .page {
    width: min(100% - 30px, 900px);
  }

  .header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-top: 26px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 86px 0 50px;
  }

  h1 {
    font-size: clamp(38px, 10.5vw, 55px);
    line-height: 1.12;
    letter-spacing: -0.028em;
  }

  .intro,
  .statement p {
    font-size: 17px;
    line-height: 1.76;
  }

  .statement {
    padding: 40px 0 62px;
  }
}
