:root {
  color-scheme: light dark;
  --bg: #f4f1ea;
  --surface: #ffffff;
  --text: #101820;
  --muted: #667085;
  --border: #d8dee4;
  --accent: #0f8f8c;
  --accent-strong: #0a6f6c;
  --button-text: #ffffff;
  --mark: #f2b84b;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(242, 184, 75, 0.24), transparent 30rem),
    linear-gradient(135deg, #f4f1ea 0%, #e7eef0 100%);
  color: var(--text);
}

.app-shell {
  width: min(100%, 520px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.brand-panel,
.content-panel {
  border: 1px solid rgba(16, 24, 32, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(16, 24, 32, 0.12);
  backdrop-filter: blur(18px);
}

.brand-panel {
  min-height: 108px;
  padding: 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--mark);
  color: #101820;
  font-size: 34px;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0;
}

.content-panel {
  padding: 22px;
  border-radius: 8px;
}

.status {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 143, 140, 0.12);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
}

h2 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0;
}

.lead {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.meta-list {
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}

.meta-list div {
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.68);
}

dt {
  color: var(--muted);
  font-size: 13px;
}

dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.primary-action {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: var(--button-text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.primary-action:active {
  transform: translateY(1px);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101820;
    --surface: #18232c;
    --text: #f7fafc;
    --muted: #a9b4bf;
    --border: #31424f;
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(242, 184, 75, 0.18), transparent 28rem),
      linear-gradient(135deg, #101820 0%, #1c3032 100%);
  }

  .brand-panel,
  .content-panel,
  .meta-list div {
    background: rgba(24, 35, 44, 0.86);
  }
}
