:root{
  --bg: #f4f2ee;
  --text: #10210f;
  --muted: rgba(16, 33, 15, 0.82);
  --muted-2: rgba(16, 33, 15, 0.70);

  --pill-dark: #0d1d0c;
  --pill-lime: #c9ff2e;

  --ring: rgba(13, 29, 12, 0.14);
}

*{ box-sizing: border-box; }

@font-face{
  font-family: "Recoleta";
  src: url("./fonts/Recoleta Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Recoleta";
  src: url("./fonts/Recoleta Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Recoleta";
  src: url("./fonts/Recoleta SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Recoleta";
  src: url("./fonts/Recoleta Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html, body{
  height: 100%;
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Recoleta", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.page{
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 48px) 18px;
}

.card{
  width: min(920px, 100%);
  text-align: center;
}

.title{
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.06;
}

.headline{
  margin: clamp(10px, 2vw, 18px) 0 0;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.12;
  font-weight: 500;
}

.subhead{
  margin: clamp(26px, 5vw, 44px) auto 0;
  max-width: 44ch;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.55;
  color: var(--muted);
}

.actions{
  margin: clamp(18px, 3vw, 26px) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  min-width: min(260px, 100%);
  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
  outline: none;
  border: 1px solid rgba(13, 29, 12, 0.20);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.pill--lime{
  background: var(--pill-lime);
  color: #0b1309;
}

.pill--dark{
  background: var(--pill-dark);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
}

.pill:focus-visible{
  box-shadow: 0 0 0 4px var(--ring), 0 10px 24px rgba(0,0,0,0.06);
}

.pill:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.pill:active{
  transform: translateY(0px);
  filter: brightness(0.99);
}

.footer{
  margin-top: clamp(26px, 5vw, 52px);
  color: var(--muted);
}

.footer__label{
  font-size: 14px;
  color: var(--muted-2);
  margin-bottom: 6px;
}

.footer__name{
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.footer__role{
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
}

@media (max-width: 520px){
  .actions{
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }

  .pill{
    width: 100%;
    max-width: 360px;
  }
}

