:root {
  --teal: #329aa3;
  --deep: #083c42;
  --ink: #102d30;
  --lime: #d7ef7d;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
  color: var(--ink);
  font-family: Manrope, sans-serif;
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(50, 154, 163, 0.2), transparent 60%),
    #f5f3ed;
}

main {
  max-width: 560px;
  width: 100%;
}

.eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
}

.eyebrow span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
}

h1 {
  margin: 0;
  font-size: clamp(48px, 10vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 800;
}

h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--teal);
}

.copy {
  margin: 22px 0 0;
  max-width: 34ch;
  font-size: 16px;
  line-height: 1.65;
  color: #496467;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 15px 20px;
  border-radius: 100px;
  background: var(--deep);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

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

.button span {
  font-size: 16px;
}

.text-link {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
