:root {
  --ink: #171817;
  --muted: #68665f;
  --paper: #ede9df;
  --cream: #fbf8f0;
  --sage: #5f695c;
  --sage-dark: #394037;
  --sand: #d7cab8;
  --graphite: #202220;
  --line: rgba(23, 18, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(251, 248, 240, 0.78), rgba(215, 202, 184, 0.42)),
    var(--paper);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(0, 1180px) minmax(24px, 1fr);
  grid-template-rows: auto 1fr auto;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/anex-hero.png");
  background-position: 72% center;
  background-size: cover;
  transform: scale(1.01);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(237, 233, 223, 0.98) 0%, rgba(237, 233, 223, 0.9) 32%, rgba(237, 233, 223, 0.42) 58%, rgba(237, 233, 223, 0.04) 80%),
    linear-gradient(0deg, rgba(32, 34, 32, 0.24), rgba(32, 34, 32, 0));
}

.topbar {
  grid-column: 2;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 18, 15, 0.22);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cream);
  background: linear-gradient(145deg, var(--graphite), #0f0d0b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand__text {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.brand__text strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand__text small {
  color: var(--muted);
  font-size: 13px;
}

.status {
  border: 1px solid rgba(57, 64, 55, 0.24);
  border-radius: 8px;
  color: var(--sage-dark);
  background: rgba(251, 248, 240, 0.7);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

.hero__content {
  grid-column: 2;
  align-self: center;
  width: min(690px, 100%);
  padding: 72px 0 110px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 10ch;
  color: var(--ink);
  font-size: clamp(52px, 8vw, 98px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  margin: 26px 0 0;
  max-width: 590px;
  color: #3a312b;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

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

.primary-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--cream);
  background: var(--sage-dark);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(23, 18, 15, 0.2);
}

.primary-link:focus-visible {
  outline: 3px solid rgba(95, 105, 92, 0.5);
  outline-offset: 3px;
}

.launch-note {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  max-width: 230px;
}

.info-panel {
  grid-column: 2;
  align-self: end;
  width: min(520px, 100%);
  margin-bottom: 34px;
  border-top: 1px solid rgba(57, 64, 55, 0.18);
  padding-top: 18px;
  backdrop-filter: blur(12px);
}

.panel-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.info-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-panel li {
  min-height: 70px;
  border: 1px solid rgba(57, 64, 55, 0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 14px;
  background: rgba(251, 248, 240, 0.58);
  color: #2f2924;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(18px, 1fr) minmax(0, 100%) minmax(18px, 1fr);
    min-height: 100svh;
  }

  .hero__image {
    background-position: 62% bottom;
    background-size: auto 78%;
    background-repeat: no-repeat;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(237, 233, 223, 0.97) 0%, rgba(237, 233, 223, 0.94) 47%, rgba(237, 233, 223, 0.44) 72%, rgba(237, 233, 223, 0.08) 100%),
      linear-gradient(0deg, rgba(32, 34, 32, 0.34), rgba(32, 34, 32, 0));
  }

  .topbar {
    min-height: 78px;
  }

  .brand__text small {
    display: none;
  }

  .status {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero__content {
    align-self: start;
    padding: 34px 0 210px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(44px, 13vw, 68px);
  }

  .lead {
    max-width: 92%;
    font-size: 17px;
  }

  .info-panel {
    margin-bottom: 22px;
  }

  .info-panel ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .info-panel li {
    min-height: 52px;
  }
}

@media (max-width: 520px) {
  .topbar {
    gap: 10px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .brand__text strong {
    font-size: 13px;
  }

  .status {
    max-width: 130px;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }

  .actions {
    align-items: stretch;
  }

  .primary-link {
    width: 100%;
  }
}
