:root {
  --bg: #f8f5ef;
  --fg: #1f1c18;
  --muted: #6c655e;
  --line: rgba(43, 36, 30, 0.1);
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.88);
  --accent: #2d2822;
  --accent-soft: #ede2cf;
  --shadow: 0 24px 100px rgba(34, 28, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(227, 197, 151, 0.3), transparent 34%),
    radial-gradient(circle at right 20%, rgba(183, 207, 197, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 245, 239, 0.98)),
    var(--bg);
  color: var(--fg);
  font-family:
    "Manrope", "Segoe UI", sans-serif;
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.panel-label,
.highlight-title {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.topbar-copy,
.lead,
.panel-copy,
.highlight-card p:last-child,
.panel-note p:last-child,
.panel-block li {
  color: var(--muted);
}

.topbar-copy {
  margin: 10px 0 0;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: center;
  padding: 52px 32px 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(128, 95, 53, 0.14);
  border-radius: 999px;
  background: rgba(248, 237, 217, 0.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 24px 0 0;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.lead {
  max-width: 700px;
  margin: 26px 0 0;
  font-size: 20px;
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

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

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent);
}

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

.highlight-card,
.panel,
.panel-block,
.panel-note {
  border: 1px solid var(--line);
}

.highlight-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
}

.highlight-card p:last-child {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.panel {
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(242, 237, 228, 0.86));
}

.panel h2 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.panel-copy {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.85;
}

.panel-block,
.panel-note {
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.panel-block-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.panel-block ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.panel-block li,
.panel-note p:last-child {
  font-size: 14px;
  line-height: 1.8;
}

.panel-note {
  border-style: dashed;
}

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

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

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    margin: 10px auto;
    border-radius: 24px;
  }

  .topbar,
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .hero {
    gap: 28px;
    padding-top: 28px;
  }

  h1 {
    font-size: 3rem;
  }

  .lead {
    font-size: 17px;
    line-height: 1.75;
  }

  .panel,
  .highlight-card,
  .panel-block,
  .panel-note {
    border-radius: 22px;
  }
}
