:root {
  --bg: #d1e5f1;
  --body-text: #304a58;
  --accent: #682f80;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--body-text);
  font-family: "SUSE Mono", monospace;
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 6vw, 64px) clamp(20px, 6vw, 96px);
}

.content {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1440px;
}

.logo-col {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
}

.logo {
  display: block;
  width: clamp(220px, 37.57vw, 541px);
  height: auto;
}

.text-col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  min-width: 0;
}

.headline {
  margin: 0 0 clamp(1rem, 2.2vw, 2rem);
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 800;
  font-style: normal;
  line-height: 1.05;
  color: var(--body-text);
  font-size: clamp(1.75rem, 1.882rem + 3.05vw, 4.625rem);
  max-width: 18ch;
}

.subhead {
  margin: 0 0 clamp(1rem, 1.9vw, 1.75rem);
  font-family: "SUSE Mono", monospace;
  font-weight: 700;
  font-size: 14px;
  color: var(--body-text);
}

.socials {
  display: flex;
  gap: 20px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.icon-btn svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 781px) {
  .logo-col {
    margin-top: -300px;
  }

  .text-col {
    margin-top: 300px;
  }
}

@media (max-width: 780px) {
  .page {
    padding-left: 0;
    padding-right: 0;
  }

  .content {
    flex-direction: column;
    align-items: center;
  }

  .logo-col {
    width: 100%;
    justify-content: center;
    margin-bottom: clamp(1.5rem, 6vw, 2.5rem);
  }

  .logo {
    width: clamp(200px, 79.5vw, 420px);
  }

  .text-col {
    width: 100%;
    padding: 0 clamp(20px, 8.2vw, 32px);
    align-items: stretch;
  }

  .headline {
    max-width: none;
  }
}
