:root {
  --bg: #101413;
  --panel: #f4f1ea;
  --panel-soft: #ebe7dc;
  --ink: #18201f;
  --muted: #61706d;
  --line: rgba(24, 32, 31, 0.16);
  --teal: #1f766f;
  --amber: #c78634;
  --white: #fffaf0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--panel);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(16, 20, 19, 0.92);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--bg);
  background: var(--amber);
  border-radius: 8px;
}

.site-nav {
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  min-height: 36px;
  padding: 8px 10px;
  color: rgba(255, 250, 240, 0.82);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 64px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--bg);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 20, 19, 0.9) 0%, rgba(16, 20, 19, 0.7) 42%, rgba(16, 20, 19, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 20, 19, 0.78) 0%, rgba(16, 20, 19, 0.08) 45%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.eyebrow,
.section-kicker,
.item-topline {
  margin: 0;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 7vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 1.05rem;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255, 250, 240, 0.36);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
}

.button.primary {
  color: var(--bg);
  border-color: var(--amber);
  background: var(--amber);
}

.page-main,
.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.page-main {
  padding: clamp(42px, 8vw, 92px) 0;
}

.page-heading {
  max-width: 780px;
  padding-bottom: clamp(36px, 6vw, 68px);
}

.section {
  padding: clamp(44px, 8vw, 84px) 0;
}

.section-tight {
  padding-top: 0;
}

.intro-band {
  width: 100%;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--teal);
}

.intro-band p {
  width: min(1120px, 100%);
  margin: 0 auto;
  font-size: 1rem;
}

.split,
.status-panel {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.item-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(24, 32, 31, 0.08);
}

.item-card p,
.note-row p,
.feature-row p,
.page-heading p {
  color: var(--muted);
}

.text-link,
.muted-link {
  margin-top: auto;
  font-weight: 760;
}

.text-link {
  color: var(--teal);
}

.muted-link {
  color: var(--muted);
}

.feature-list,
.note-list {
  display: grid;
  gap: 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.8fr) minmax(250px, 0.7fr);
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.meta-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.meta-list div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
}

.meta-list dt,
.status-list dt {
  color: var(--muted);
  font-size: 0.85rem;
}

.meta-list dd,
.status-list dd {
  margin: 0;
  font-weight: 760;
}

.note-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.note-row time {
  color: var(--teal);
  font-weight: 760;
}

.status-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.status-list div {
  min-height: 124px;
  padding: 18px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.status-list dd {
  margin-top: 8px;
}

.checklist ul {
  display: grid;
  gap: 10px;
  padding-left: 1.2rem;
}

.site-footer {
  display: flex;
  gap: 12px 22px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 28px 18px 36px;
  color: rgba(255, 250, 240, 0.72);
  background: var(--bg);
  font-size: 0.9rem;
}

.site-footer a {
  text-decoration: none;
}

.not-found {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 14px;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0;
}

.not-found .button {
  width: fit-content;
}

@media (max-width: 980px) {
  .split,
  .status-panel,
  .item-grid,
  .status-list,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 700px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    padding-bottom: 48px;
  }

  .button {
    width: 100%;
  }

  .note-row,
  .meta-list div {
    grid-template-columns: 1fr;
  }
}
