/* Call — shared design tokens */

:root {
  --brand: #4f46e5;
  --brand-600: #4338ca;
  --brand-700: #3730a3;
  --brand-soft: #eef0fe;
  --brand-softer: #f6f7ff;
  --accent: #06b6d4;
  --accent-soft: #e0f7fb;

  --ok: #059669;
  --ok-soft: #e7f6f0;
  --warn: #b45309;
  --warn-soft: #fdf3e3;
  --bad: #e11d48;
  --bad-soft: #fdeaee;
  --info: #0284c7;
  --info-soft: #e5f2fb;

  --ink: #10162c;
  --ink-2: #2b3450;
  --muted: #5f6982;
  --faint: #8892a8;

  --bg: #ffffff;
  --surface: #f6f7fb;
  --surface-2: #eef1f8;
  --line: #e4e8f2;
  --line-strong: #cdd4e5;

  --night: #070b24;
  --night-2: #101a4a;

  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(16, 22, 44, 0.06), 0 1px 3px rgba(16, 22, 44, 0.04);
  --shadow: 0 4px 14px rgba(16, 22, 44, 0.07), 0 1px 3px rgba(16, 22, 44, 0.05);
  --shadow-lg: 0 20px 48px rgba(16, 22, 44, 0.14), 0 4px 12px rgba(16, 22, 44, 0.06);
  --shadow-glow: 0 24px 70px rgba(79, 70, 229, 0.35);

  --font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic",
    "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-num: ui-rounded, "SF Pro Rounded", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --maxw: 1160px;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.tnum {
  font-variant-numeric: tabular-nums;
}

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