.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.site-logo-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f2733d;
  flex-shrink: 0;
}

:root {
  --ink: #10131a; --ink-soft: #4b5265; --line: #e6e8ee;
  --accent: #4338ca; --accent-soft: #eeecfd;
  --radius: 14px; --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(16,19,26,0.04), 0 8px 24px rgba(16,19,26,0.05);
  --mono: 'SFMono-Regular', ui-monospace, Menlo, Consolas, monospace;
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f5f6fa; color: var(--ink); -webkit-font-smoothing: antialiased;
}
.page { max-width: 640px; margin: 0 auto; padding: 60px 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 32px;
}
h1 { font-size: 22px; margin: 0 0 8px; letter-spacing: -0.01em; }
.sub { color: var(--ink-soft); font-size: 14px; margin: 0 0 22px; }
.sub a { color: var(--accent); }
label { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink-soft); margin: 14px 0 6px; }
input[type="email"], input[type="text"], input[type="password"] {
  width: 100%; font: inherit; font-size: 14.5px; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fbfbfd; outline: none;
}
input:focus { border-color: var(--accent); background: #fff; }
.option-card {
  margin-top: 14px;
  padding: 12px 16px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.option-card-title {
  margin: 0 0 4px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}
.option-card-body {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.option-card-body a { color: var(--accent); }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
  margin-top: 16px; cursor: pointer;
}
.checkbox-label input { width: 16px; height: 16px; margin-top: 1px; accent-color: var(--accent); flex-shrink: 0; }
.checkbox-label a { color: var(--accent); }
.btn {
  margin-top: 18px; width: 100%; font: inherit; font-size: 14.5px; font-weight: 600;
  background: var(--accent); color: #fff; border: none; border-radius: var(--radius-sm);
  padding: 11px; cursor: pointer;
}
.btn:hover { background: #2c2482; }
.btn-secondary {
  margin-top: 4px; width: auto; background: #fff; color: var(--accent);
  border: 1px solid var(--accent); padding: 8px 16px; font-size: 13.5px;
}
.btn-secondary:hover { background: #f5f4ff; }
.notice { padding: 12px 14px; border-radius: var(--radius-sm); font-size: 13.5px; margin-bottom: 16px; }
.notice a { color: inherit; font-weight: 700; margin-left: 4px; }
.notice-ok { background: #dcfce7; color: #15803d; }
.notice-error { background: #fee2e2; color: #b91c1c; }
.notice-pending { background: #fef3c7; color: #b45309; }
.fine { font-size: 12.5px; color: var(--ink-soft); margin-top: 16px; }
.fine a { color: var(--accent); }
.snippet-block { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.code-block {
  background: #10131a; color: #e6e8ee; border-radius: var(--radius-sm);
  padding: 14px 16px; font-family: var(--mono); font-size: 12.5px; line-height: 1.6;
  overflow-x: auto; white-space: pre; margin: 8px 0 16px;
}
code { font-family: var(--mono); background: var(--accent-soft); padding: 1px 5px; border-radius: 4px; }