:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #cbd5e1;
  --accent: #1d4ed8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  line-height: 1.6;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 18px 56px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.brand img {
  width: 180px;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.brand .label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.brand .title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.04);
}

h1 {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 2.05rem);
  line-height: 1.25;
}

h2 {
  margin-top: 1.7rem;
  margin-bottom: 0.55rem;
  font-size: 1.24rem;
}

h3 {
  margin-top: 1rem;
  margin-bottom: 0.32rem;
  font-size: 1.04rem;
}

p,
li {
  color: var(--muted);
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.meta {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.link-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: #f8fafc;
  text-decoration: none;
}

.link-card strong {
  display: block;
  color: var(--text);
}

.faq-item {
  margin-top: 0.85rem;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.disclaimer {
  margin-top: 1.6rem;
  font-size: 0.86rem;
}

@media (max-width: 700px) {
  .brand {
    align-items: flex-start;
    flex-direction: column;
  }
}
