:root {
  --bg: #f3eedc;
  --surface: rgba(255, 253, 246, 0.78);
  --text: #24352b;
  --muted: #667267;
  --accent: #c99e45;
  --accent-soft: #e7d6a6;
  --line: rgba(36, 53, 43, 0.12);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(201, 158, 69, .14), transparent 32rem),
    radial-gradient(circle at 85% 75%, rgba(70, 105, 82, .10), transparent 34rem),
    var(--bg);
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.card {
  width: min(880px, 100%);
  padding: clamp(38px, 8vw, 82px) clamp(26px, 7vw, 76px);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 24px 80px rgba(47, 57, 45, .09);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 24px 0 10px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 10vw, 7.6rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .95;
}

.manifesto {
  max-width: 710px;
  margin: 26px auto 0;
  color: #394b40;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.55;
}

.topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 34px auto 0;
}

.topics span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  color: #4e5f54;
  font-size: .85rem;
}

.status {
  margin: 34px auto 0;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.6;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  color: #7b837c;
  font-size: .76rem;
  letter-spacing: .04em;
}

.dot { color: var(--accent); }

.bird {
  position: relative;
  width: 90px;
  height: 48px;
  margin: 0 auto;
}

.body {
  position: absolute;
  left: 37px;
  top: 19px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 60% 55% 55% 60%;
  transform: rotate(-7deg);
}

.body::before {
  content: "";
  position: absolute;
  right: -9px;
  top: 5px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 10px solid #6a5930;
}

.body::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text);
}

.wing {
  position: absolute;
  top: 8px;
  width: 34px;
  height: 18px;
  border: 3px solid var(--text);
  border-bottom: 0;
  opacity: .9;
}

.wing-left {
  left: 12px;
  border-radius: 90% 20% 0 0;
  transform: rotate(-18deg);
}

.wing-right {
  right: 9px;
  border-radius: 20% 90% 0 0;
  transform: rotate(18deg);
}

@media (max-width: 620px) {
  .hero { padding: 14px; }
  .card { border-radius: 24px; }
  .desktop-break { display: none; }
  footer { margin-top: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
