:root {
  --bg: #efe4d3;
  --bg-deep: #e6d6c0;
  --surface: rgba(255, 249, 240, 0.62);
  --surface-strong: rgba(255, 251, 245, 0.78);
  --line: rgba(125, 82, 41, 0.18);
  --text: #211811;
  --muted: #695446;
  --accent: #9a6333;
  --accent-strong: #7d4a1f;
  --shadow: 0 28px 60px rgba(85, 49, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 213, 148, 0.38), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(171, 96, 35, 0.18), transparent 22%),
    linear-gradient(135deg, #f3e9d9 0%, #ebddca 46%, #e3d0ba 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(125, 74, 31, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 74, 31, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 95%);
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
}

.status-pill {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.55);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 18px 0 54px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
h3,
strong {
  margin: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 8ch;
  font-size: clamp(3.8rem, 8vw, 6.6rem);
  line-height: 0.92;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.lead,
.highlight-copy p,
.feature-card p,
.panel-card p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}

.lead {
  max-width: 62ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff8f1;
  box-shadow: 0 16px 30px rgba(125, 74, 31, 0.2);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 250, 244, 0.6);
}

.hero-panel {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(138, 87, 42, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.72), rgba(244, 233, 218, 0.72)),
    radial-gradient(circle at top left, rgba(243, 216, 140, 0.24), transparent 42%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  border: 1px solid rgba(154, 99, 51, 0.16);
}

.hero-panel::before {
  width: 220px;
  height: 220px;
  right: -40px;
  top: -40px;
}

.hero-panel::after {
  width: 120px;
  height: 120px;
  right: 34px;
  top: 34px;
}

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

.panel-card {
  padding: 18px;
  border: 1px solid rgba(125, 82, 41, 0.12);
  border-radius: 20px;
  background: var(--surface);
  backdrop-filter: blur(8px);
}

.panel-card-main {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface-strong);
}

.panel-card strong {
  display: block;
  margin: 4px 0 10px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.panel-label {
  display: inline-block;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section {
  padding: 58px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

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

.feature-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.55);
  box-shadow: 0 12px 28px rgba(85, 49, 20, 0.08);
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.section-highlight {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.highlight-copy {
  padding-right: 18px;
}

.timeline-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 251, 246, 0.7);
  box-shadow: var(--shadow);
}

.timeline-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-item + .timeline-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(125, 82, 41, 0.12);
}

.timeline-dot {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 999px;
  background: rgba(154, 99, 51, 0.2);
  box-shadow: inset 0 0 0 2px rgba(154, 99, 51, 0.18);
}

.timeline-item.is-active .timeline-dot {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(154, 99, 51, 0.12);
}

.timeline-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .hero,
  .section-highlight,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 0;
  }

  .highlight-copy {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .feature-card,
  .hero-panel,
  .timeline-card {
    border-radius: 22px;
  }
}
