/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.5;
}

/* CONTAINER SYSTEM */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* HEADER */
.site-header {
  padding: 24px 0 16px;
}


.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}


.logo {
  font-weight: 500;
  font-size: 16px;
}

.nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #111;
  font-size: 16px;
}

/* HERO */
.hero {
  padding: 96px 0 160px;
}


.hero-inner {
  max-width: 720px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 18px;
  color: #444;
}
