:root {
  --bg-top: #f7f1e6;
  --bg-bottom: #dfe9df;
  --ink: #1f2e2d;
  --muted: #5a6a66;
  --panel: rgba(255, 251, 245, 0.76);
  --line: rgba(31, 46, 45, 0.12);
  --accent: #1f7a69;
  --accent-strong: #a85f2a;
  --shadow: 0 24px 70px rgba(28, 43, 37, 0.12);
  --radius-lg: 28px;
  --radius-md: 22px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 35%),
    linear-gradient(140deg, var(--bg-top), var(--bg-bottom));
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 46, 45, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 46, 45, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 80%);
  pointer-events: none;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.55;
  pointer-events: none;
}

.bg-shape-a {
  width: 320px;
  height: 320px;
  top: 100px;
  right: -70px;
  background: rgba(31, 122, 105, 0.16);
}

.bg-shape-b {
  width: 260px;
  height: 260px;
  left: -50px;
  bottom: 80px;
  background: rgba(168, 95, 42, 0.14);
}

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 28px 0 40px;
  position: relative;
  z-index: 1;
}

.site-header,
.panel,
.site-footer {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.64);
  box-shadow: var(--shadow);
  animation: float-up 0.75s ease both;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-subtitle,
.eyebrow,
.section-kicker,
.card-label,
.status-index {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.brand-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}

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

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--ink);
}

main {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  animation: float-up 0.8s ease both;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 24px;
  padding: 38px;
}

.hero-copy h1,
.content-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  max-width: 11ch;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-text,
.content-panel p,
.focus-card p,
.status-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.hero-text {
  max-width: 58ch;
  margin: 18px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #f9f6f0;
  background: linear-gradient(135deg, var(--accent), #245246);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.hero-card,
.focus-card,
.status-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-md);
}

.hero-card {
  padding: 24px;
  align-self: end;
}

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

.profile-list li {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.profile-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.profile-list span {
  color: var(--muted);
  font-size: 0.82rem;
}

.profile-list strong {
  font-size: 1rem;
}

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

.content-panel {
  padding: 30px;
}

.content-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.focus-grid,
.status-grid {
  display: grid;
  gap: 18px;
}

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

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

.focus-card,
.status-card {
  padding: 22px;
}

.focus-card h3,
.status-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.status-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 20px 24px;
  color: var(--muted);
  font-size: 0.92rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.64);
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.icp-link {
  color: var(--muted);
  text-decoration: none;
}

.icp-link:hover {
  color: var(--ink);
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .site-header,
  .hero,
  .split-grid,
  .focus-grid,
  .status-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    border-radius: 28px;
  }

  .site-header,
  .site-footer,
  .hero {
    padding: 24px;
  }

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

  .footer-meta {
    justify-content: flex-start;
  }
}

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

  .hero,
  .content-panel,
  .site-footer {
    padding: 22px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .site-nav {
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
