:root {
  color-scheme: light;
  --bg: #f2ecdf;
  --panel: rgba(255, 250, 241, 0.92);
  --panel-strong: #fffdf8;
  --line: #d8cebd;
  --text: #162117;
  --muted: #56645d;
  --accent: #0d7a5b;
  --shadow: 0 24px 48px rgba(25, 39, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: 'Segoe UI Variable Text', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 160, 39, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(13, 122, 91, 0.18), transparent 32%),
    linear-gradient(180deg, #f8f3e9 0%, var(--bg) 100%);
}

h1,
h2,
.section-label,
.eyebrow {
  font-family: Georgia, 'Times New Roman', serif;
}

a {
  color: inherit;
}

.page-shell {
  width: min(900px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 50px;
}

.panel {
  background: var(--panel);
  border: 1px solid rgba(216, 206, 189, 0.92);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background:
    radial-gradient(circle at right top, rgba(243, 160, 39, 0.24), transparent 30%),
    linear-gradient(140deg, #133529 0%, #1d4737 48%, #235844 100%);
  color: #f8f4eb;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 244, 235, 0.75);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.hero-copy {
  margin: 12px 0 0;
  color: rgba(248, 244, 235, 0.85);
  font-weight: 600;
}

.hero-note {
  margin: 12px 0 0;
  max-width: 620px;
  color: rgba(248, 244, 235, 0.78);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: #f7ecd2;
  color: #173a2d;
  box-shadow: 0 12px 24px rgba(9, 19, 15, 0.16);
}

.btn-secondary {
  background: transparent;
  color: #f8f4eb;
  border: 1px solid rgba(248, 244, 235, 0.2);
}

.content {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.section {
  padding: 24px;
}

.section h2 {
  margin: 0;
  font-size: 1.4rem;
}

.section p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.section ul {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100vw - 18px, 100%);
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .hero,
  .section {
    padding: 20px;
  }
}
