:root {
  --ink-950: #07111f;
  --ink-900: #0b172a;
  --ink-850: #102039;
  --ink-800: #152842;
  --paper: #f4f7fb;
  --surface: #ffffff;
  --text: #172033;
  --muted: #718096;
  --faint: #9ca8b9;
  --border: #e3eaf3;
  --border-strong: #d6dfeb;
  --blue: #2f6bff;
  --blue-dark: #1d4ed8;
  --blue-pale: #eaf0ff;
  --mint: #21b79d;
  --mint-pale: #e7f8f4;
  --amber: #e89a3c;
  --danger: #e45a68;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 20px 70px rgba(23, 32, 51, .08);
  --shadow-float: 0 18px 48px rgba(7, 17, 31, .14);
  --font-ui: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-number: "DIN Alternate", "Avenir Next Condensed", "Avenir Next", sans-serif;
  --el-color-primary: var(--blue);
  --el-color-primary-light-3: #6f96ff;
  --el-color-primary-light-5: #9ab5ff;
  --el-color-primary-light-7: #c6d5ff;
  --el-color-primary-light-8: #dbe4ff;
  --el-color-primary-light-9: #edf2ff;
  --el-color-primary-dark-2: var(--blue-dark);
  --el-border-radius-base: 10px;
  --el-border-radius-small: 8px;
  --el-font-family: var(--font-ui);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--text);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

[v-cloak] {
  display: none !important;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon,
.field-icon,
.button-icon,
.button-arrow,
.nav-item__icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
}

.brand-mark span {
  display: block;
  width: 4px;
  border-radius: 4px;
  background: currentColor;
}

.brand-mark span:nth-child(1) { height: 9px; opacity: .65; }
.brand-mark span:nth-child(2) { height: 18px; }
.brand-mark span:nth-child(3) { height: 13px; opacity: .82; }

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -.025em;
}

.brand-copy small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .22em;
  opacity: .58;
}

.brand--light {
  color: #fff;
}


/* Shared controls */

.field-icon {
  width: 18px;
  height: 18px;
  color: #8c98aa;
}
.text-action,
.surface-link {
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.text-action:hover,
.surface-link:hover {
  color: var(--blue-dark);
}
.button-arrow {
  width: 16px;
  height: 16px;
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
