:root {
  /* Base */
  --su-bg: #f7f8fa;
  --su-surface: #ffffff;
  --su-border: #e8eaef;
  --su-text: #1a1d26;
  --su-text-muted: #6b7280;
  --su-text-subtle: #9ca3af;

  /* Accent (보라) */
  --su-accent: #6c5ce7;
  --su-accent-soft: #eeebff;
  --su-accent-hover: #5a4bd6;
  --su-accent-deep: #4834d4;

  /* Segment (대길 / 평길 / 주의) */
  --su-seg-good: #d4a017;
  --su-seg-good-bg: #fff6d6;
  --su-seg-mid: #3b82f6;
  --su-seg-mid-bg: #eff6ff;
  --su-seg-warn: #ef4444;
  --su-seg-warn-bg: #fef2f2;

  /* Elevation */
  --su-shadow-sm: 0 1px 2px rgba(26, 29, 38, 0.04);
  --su-shadow: 0 2px 8px rgba(26, 29, 38, 0.06);
  --su-shadow-md: 0 4px 16px rgba(26, 29, 38, 0.08);

  /* Radius */
  --su-radius-sm: 8px;
  --su-radius: 14px;
  --su-radius-lg: 16px;
  --su-radius-pill: 999px;

  /* Type */
  --su-font: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  --su-font-display: "Pretendard", "Noto Sans KR", sans-serif;

  /* Layout */
  --su-max: 1120px;
  --su-gutter: 20px;
  --su-header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body.scope-unse {
  margin: 0;
  font-family: var(--su-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--su-text);
  background:
    radial-gradient(1200px 480px at 10% -10%, rgba(108, 92, 231, 0.08), transparent 60%),
    radial-gradient(900px 400px at 100% 0%, rgba(212, 160, 23, 0.06), transparent 55%),
    var(--su-bg);
  min-height: 100vh;
}

a {
  color: var(--su-accent);
  text-decoration: none;
}

a:hover {
  color: var(--su-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.su-container {
  width: min(100% - 2 * var(--su-gutter), var(--su-max));
  margin-inline: auto;
}

.su-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
