@font-face {
  font-family: "LeagueSpartan";
  src: url("/assets/landing/fonts/LeagueSpartan-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "WorkSans";
  src: url("/assets/landing/fonts/WorkSans-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --main: #172851;
  --text: #060f45;
  --white: #ffffff;
  --background-light: #f8f5f0;
  --grey-10: #f1ede6;
  --grey-20: #dfd8cf;
  --grey-40: #918a80;
  --grey-50: #6e6860;
  --soft: #ffd8d0;
  --soft-30: rgba(255, 216, 208, 0.3);
  --rose: #efc0b6;
  --deep: #e5a199;
  --roman-coffee: #7d6448;
  --shadow: 0 24px 50px -20px rgba(125, 100, 72, 0.20);
  --radius: 14px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 216, 208, 0.32), transparent 30%),
    linear-gradient(180deg, #f8f5f0 0%, #fbefe5 58%, #f8f5f0 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: "WorkSans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--main);
  outline-offset: 3px;
  border-radius: 4px;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 40px;
  border: 1px solid var(--grey-20);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--main);
  font-family: "LeagueSpartan", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 160ms ease;
}

a.brand:hover,
a.brand:focus-visible {
  opacity: 0.82;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  background:
    url("/Logo.svg") center / 36px 36px no-repeat,
    linear-gradient(135deg, rgba(255, 216, 208, 0.92), rgba(255, 255, 255, 0.86));
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 16px;
  color: var(--roman-coffee);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.page-shell h1 {
  margin: 0;
  color: var(--main);
  font-family: "LeagueSpartan", Georgia, serif;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0;
}

.lead,
.body-copy,
.note {
  max-width: 62ch;
}

.lead {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.55;
}

.body-copy {
  margin: 14px 0 0;
  color: var(--grey-50);
}

.body-copy[hidden],
.note[hidden],
.steps[hidden] {
  display: none;
}

.steps {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 48px;
  padding: 14px 16px 14px 56px;
  border: 1px solid var(--grey-20);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  color: var(--grey-50);
  transition: border-color 200ms var(--ease);
}

.steps li:hover {
  border-color: var(--rose);
}

.steps li::before {
  position: absolute;
  top: 13px;
  left: 14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--main);
  counter-increment: step;
  content: counter(step);
  font-size: 12px;
  font-weight: 700;
}

.note {
  margin: 30px 0 0;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(125, 100, 72, 0.06);
  color: var(--grey-50);
  font-size: 14px;
}

.note::before {
  content: "Note";
  display: block;
  margin-bottom: 6px;
  color: var(--deep);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 30px;
  color: var(--grey-50);
  font-size: 14px;
}

.footer-links a {
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--main);
  text-decoration: underline;
}

@media (max-width: 720px) {
  body {
    align-items: start;
    padding: 84px 16px 24px;
  }

  .page-shell {
    padding: 26px;
  }

  .brand {
    font-size: 22px;
  }

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

  .eyebrow {
    margin-top: 26px;
  }

  .page-shell h1 {
    font-size: 38px;
  }

  .lead {
    font-size: 17px;
  }
}

/* ===== borderless blocks ===== */
.page-shell { border: none; }
.steps li,
.steps li:hover { border: none; background: rgba(255, 216, 208, 0.16); }
.note { border: none; }
