@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap');

@font-face {
  font-family: "Nadall";
  src: url("../fonts/nadall.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura No2 Small Caps";
  src: url("../fonts/futura-no2-d-book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #e5e0d4;
  --paper-light: #eee9dd;
  --ink: #0d2137;
  --muted: #5f625d;
  --blue: #1e6aa5;
  --green: #3f7d3d;
  --orange: #c96f2e;
  --gold: #c99b2e;
  --shadow: rgba(13, 33, 55, 0.12);
  --shell: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.55), transparent 34%),
    radial-gradient(circle at 78% 28%, rgba(30, 106, 165, 0.08), transparent 28%),
    linear-gradient(145deg, var(--paper-light), var(--paper));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 33, 55, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(13, 33, 55, 0.018) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 72%);
}

.shell {
  width: min(100% - 40px, var(--shell));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2;
}

.header-inner {
  min-height: 116px;
  display: flex;
  align-items: center;
}

.wordmark {
  display: block;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-concept {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-concept::before {
  content: "";
  position: absolute;
  width: 48vw;
  height: 48vw;
  min-width: 520px;
  min-height: 520px;
  right: -18vw;
  top: -16vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 68%);
  opacity: 0.86;
}

.hero-concept::after {
  content: "";
  position: absolute;
  width: 32vw;
  height: 32vw;
  min-width: 320px;
  min-height: 320px;
  left: -13vw;
  bottom: -15vw;
  border-radius: 50%;
  border: 1px solid rgba(13, 33, 55, 0.07);
  box-shadow: 0 0 0 72px rgba(255, 255, 255, 0.14);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 72px;
}

.hero-copy {
  width: min(100%, 760px);
  padding-top: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Futura No2 Small Caps", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(13, 33, 55, 0.72);
}

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

h1 {
  max-width: 760px;
  margin: 24px 0 20px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.1rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--ink);
}

p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.status-pill {
  width: fit-content;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(13, 33, 55, 0.12);
  border-radius: 999px;
  color: rgba(13, 33, 55, 0.78);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 16px 40px var(--shadow);
  font-family: "Futura No2 Small Caps", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(63, 125, 61, 0.12);
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .header-inner {
    min-height: 96px;
  }

  .hero-content {
    padding-top: 126px;
    padding-bottom: 56px;
  }

  p {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 24px, var(--shell));
  }

  .header-inner {
    min-height: 94px;
  }

  .wordmark {
    font-size: 20px;
  }

  .hero-content {
    min-height: 100svh;
    padding-top: 118px;
    padding-bottom: 34px;
  }

  .hero-copy {
    padding-top: 36px;
  }

  h1 {
    font-size: 3.35rem;
    line-height: 0.98;
  }

  p {
    font-size: 16px;
  }

  .status-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  h1 {
    font-size: 2.8rem;
    line-height: 1.02;
  }
}
