:root {
  /* Mapped from shared_ui AppColors */
  --bg: #f3f4f6;
  --panel: #ffffff;
  --panel-soft: #fff9e0;
  --text: #333333;
  --muted: #6c757d;
  --accent: #00a6be;
  --accent-soft: #00879a;
  --border: #e5e5e5;
  --ok-bg: #e8f7ef;
  --ok-text: #00a344;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: var(--accent-soft);
}

.container {
  width: min(960px, 92vw);
  margin: 0 auto;
  padding: 32px 0 56px;
}

.hero {
  background: linear-gradient(135deg, #fece00, #dfb500);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 22px;
}

.app-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.brand-logo-wrap {
  margin: 16px 0 4px;
  text-align: center;
}

.brand-logo {
  width: min(240px, 56vw);
  height: auto;
  object-fit: contain;
  display: inline-block;
}

h1 {
  margin: 12px 0 8px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.2;
}

.lead {
  color: #5f5f5f;
  margin: 0;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  margin: 16px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

p,
ul,
ol {
  margin: 0 0 12px;
  color: var(--text);
}

li {
  margin-bottom: 8px;
}

.meta {
  color: var(--muted);
  font-size: 0.94rem;
}

.callout {
  border: 1px solid #9bd7b5;
  background: var(--ok-bg);
  color: var(--ok-text);
  border-radius: 12px;
  padding: 14px;
}

.steps {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
}

.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--panel-soft);
  border: 1px solid var(--border);
  color: #7f6700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

footer {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 640px) {
  .hero,
  .panel {
    padding: 18px;
  }
}
