/* OINS · KAIST EFL UI Kit — local tokens.
   Use Tailwind utilities for layout; reach for these for tokens that
   Tailwind can't express in a single utility (gradients, font weights,
   the navy tints, etc). */

:root {
  --brand-primary: #003876;
  --brand-primary-hover: #002a5c;
  --brand-slate-start: #364153;
  --brand-slate-end: #101828;
  --gradient-oins: linear-gradient(to right, #364153, #101828);

  --fg-primary: #0a0a0a;
  --fg-secondary: #4a5565;
  --fg-muted: #717182;
  --border-default: #e5e7eb;
}

html, body, #root { height: 100%; margin: 0; }

body {
  font-family: "Noto Sans KR", Arial, "Helvetica Neue", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: keep-all;
  color: var(--fg-primary);
  background: #ffffff;
}

/* shared OINS classes used across screens */
.bg-oins-gradient { background: var(--gradient-oins); }
.text-navy { color: var(--brand-primary); }
.bg-navy { background: var(--brand-primary); }
.bg-navy:hover { background: var(--brand-primary-hover); }

/* Force the Korean line-breaking on Tailwind text utilities */
.break-keep { word-break: keep-all; }

/* hairline used in step indicator */
.hairline { background: #d1d5db; height: 1px; }

/* fixed marketing header backdrop */
.frosted { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
