/* Typsnitt */
@font-face {
  font-family: "Conduit ITC Pro";
  src: url("ConduitITCPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

body {
  min-height: 100vh;
  font-family: "Conduit ITC Pro", system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2a44;
  background: #ffffff;
}

/* Layout */
.container {
  min-height: 100vh;
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Text */
.eyebrow {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #2b2b2b;
}

.intro {
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  color: #2f3e6f;
}

/* Undantag: systemfont */
.system-font {
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Button */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid #2f3e6f;
  border-radius: 4px;
  text-decoration: none;
  color: #2f3e6f;
  font-size: 0.95rem;
  margin-bottom: 4rem;
}

.button:hover {
  background: #f5f7fb;
}

/* Logo */
.logo {
  width: 186px;
  max-width: 100%;
}
