:root {
  --bg: #f4efe5;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ink: #0f1728;
  --muted: #5f6e84;
  --line: rgba(15, 23, 40, 0.1);
  --accent: #b7864f;
  --accent-dark: #946535;
  --navy: #13233f;
  --shadow: 0 24px 60px rgba(17, 30, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183, 134, 79, 0.18), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 100%);
}

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

code {
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.92em;
}

.shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 20px 0 40px;
}

.topbar,
.hero,
.card,
.footer {
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.brand {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: 28px;
  margin-top: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(246, 238, 224, 0.88));
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.lead,
.card p,
.footer,
.status-list span,
.status-list strong,
.card li {
  line-height: 1.75;
}

.lead {
  max-width: 62ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  background: var(--navy);
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(15, 23, 40, 0.16);
  background: rgba(255, 255, 255, 0.7);
}

.hero-panel,
.card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-strong);
}

.hero-panel {
  padding: 22px;
  align-self: end;
}

.panel-label {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.status-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 40, 0.08);
}

.status-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.status-list span {
  color: var(--muted);
}

.status-list strong {
  text-align: right;
}

.section {
  margin-top: 56px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.section h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

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

.grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-featured {
  background: linear-gradient(180deg, #ffffff 0%, #f7efe3 100%);
}

.tag {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(183, 134, 79, 0.16);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag.muted {
  background: rgba(19, 35, 63, 0.08);
  color: var(--muted);
}

.card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

.inline-link {
  display: inline-flex;
  margin-top: 20px;
  font-weight: 800;
  color: var(--navy);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
}

@media (max-width: 940px) {
  .hero,
  .grid,
  .grid-compact {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100vw - 20px, 100%);
    padding-top: 10px;
  }

  .topbar,
  .hero,
  .card,
  .footer {
    border-radius: 20px;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav,
  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding: 24px;
  }
}
