:root {
  --surface: #f4f6f8;
  --ink: #101418;
  --muted: #5d6670;
  --line: #d7dde3;
  --accent: #0b5cad;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16, 20, 24, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(16, 20, 24, 0.045) 1px, transparent 1px),
    var(--surface);
  background-size: 44px 44px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.landing {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.intro {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 128px 0;
}

h1,
p {
  margin-top: 0;
}

.brand-lockup {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.brand-mark {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
}

h1 {
  margin: 0;
  font-size: 92px;
  font-weight: 800;
  line-height: 0.9;
}

.tagline {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
}

.details {
  display: grid;
  gap: 22px;
  margin: 88px 0 0;
}

.link-row,
.company-details {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.link-row {
  gap: 12px;
  margin: 0;
}

.link-row a {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.link-row span {
  color: var(--line);
  font-size: 16px;
  font-weight: 800;
}

.company-details {
  gap: 4px 18px;
  column-gap: 16px;
  row-gap: 4px;
  max-width: 680px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .intro {
    width: min(720px, calc(100% - 48px));
    padding: 96px 0;
  }

  h1 {
    font-size: 72px;
    line-height: 0.94;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .tagline {
    font-size: 26px;
    line-height: 1.3;
  }
}

@media (max-width: 560px) {
  .intro {
    width: calc(100% - 36px);
    padding: 56px 0;
  }

  .brand-lockup {
    gap: 14px;
    margin-bottom: 22px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

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

  .tagline {
    max-width: 18rem;
    font-size: 22px;
  }

  .details {
    gap: 22px;
    margin-top: 60px;
  }

  .company-details {
    flex-direction: column;
  }

  .link-row a {
    font-size: 19px;
  }
}
