@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --teal: #007f9b;
  --teal-dark: #005e73;
  --ink: #17333a;
  --muted: #5f7479;
  --line: #dce7e9;
  --background: #f7faf9;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: var(--background);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 240px;
  height: auto;
}

.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 12px 25px;
  border-radius: 5px;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: background .2s ease, transform .2s ease;
}

.login-button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 48px 110px;
  position: relative;
}

.hero:before {
  content: "";
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 220px;
  background: var(--teal);
  border-radius: 5px;
}

.hero-content {
  max-width: 850px;
  padding-left: 42px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 34px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: .98;
  font-weight: 300;
  letter-spacing: -3px;
  color: var(--ink);
}

h1 span {
  color: var(--teal);
}

.intro {
  max-width: 760px;
  margin: 0;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink);
}

.intro.secondary {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
}

.footer {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 48px 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.footer a {
  color: var(--teal);
  text-decoration: none;
}

@media (max-width: 700px) {
  .header {
    padding: 22px 24px;
  }

  .brand img {
    width: 190px;
  }

  .login-button {
    min-width: 88px;
    padding: 10px 17px;
  }

  .hero {
    padding: 60px 24px 80px;
  }

  .hero:before {
    left: 24px;
    width: 4px;
    height: 160px;
  }

  .hero-content {
    padding-left: 27px;
  }

  h1 {
    letter-spacing: -2px;
  }

  .footer {
    padding: 18px 24px 24px;
    flex-direction: column;
  }
}
