:root {
  --brand-navy: #20295b;
  --brand-abyss: #141a3a;
  --brand-indigo: #364a94;
  --brand-blue: #5073b9;
  --brand-graphite: #e2e8f0;
  --brand-night: #f4f8ff;
  --brand-cyan: #6ea2ff;
  --brand-electric: #5073b9;
  --brand-accent: #f5a524;
  --brand-accent-soft: #ffcf6b;
  --brand-red: #d51317;
  --text-main: #111827;
  --text-muted: #6b7280;
  --surface: #ffffff;
  --surface-muted: #f8faff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--brand-night);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--text-main);
}

button,
input {
  font: inherit;
}

.login-page {
  min-height: 100vh;
  background: var(--brand-night);
}

.login-shell {
  display: grid;
  width: 100%;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--brand-night);
}

.login-form-panel {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 64px) clamp(32px, 7vw, 112px);
  background: var(--surface);
}

.login-wordmark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  color: var(--brand-navy);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.login-logo {
  display: block;
  width: auto;
  max-width: 170px;
  height: 46px;
  border-radius: 10px;
  background: var(--brand-navy);
  padding: 6px 8px;
  object-fit: contain;
}

.brand-static {
  color: var(--brand-navy);
}

.login-wordmark > span > span:last-child {
  color: var(--brand-electric);
}

.login-wordmark-hero {
  margin-bottom: 30px;
  transform-origin: left center;
}

.login-wordmark-hero .login-logo {
  height: 64px;
  max-width: 210px;
  border-radius: 14px;
  padding: 8px 11px;
  box-shadow: 0 18px 40px rgba(32, 41, 91, .18);
}

.login-wordmark-hero > span {
  font-size: 28px;
  letter-spacing: -.04em;
}

.login-form-wrap {
  width: min(430px, 100%);
  margin: 0 auto;
}

.login-heading {
  margin-bottom: 32px;
}

.login-kicker {
  margin: 0 0 8px;
  color: var(--brand-electric);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.login-heading h1 {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -.045em;
}

.login-heading > p:last-child {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.login-alert {
  margin: -10px 0 22px;
  border: 1px solid var(--brand-red);
  border-radius: 13px;
  background: rgba(213, 19, 23, .06);
  padding: 12px 14px;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.login-form {
  display: grid;
  gap: 21px;
  padding-top: 26px;
  border-top: 1px solid var(--brand-graphite);
}

.login-field {
  display: grid;
  gap: 8px;
}

.login-field label,
.login-label-row {
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
}

.login-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-label-row span {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
}

.login-input-wrap {
  position: relative;
}

.login-input-wrap > svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--brand-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transform: translateY(-50%);
}

.login-input-wrap input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--brand-graphite);
  border-radius: 11px;
  outline: none;
  background: var(--surface-muted);
  padding: 0 46px;
  color: var(--text-main);
  font-size: 13px;
  transition: 180ms ease;
}

.login-input-wrap input::placeholder {
  color: #9ca3af;
}

.login-input-wrap input:hover {
  border-color: color-mix(in srgb, var(--brand-electric) 42%, var(--brand-graphite));
}

.login-input-wrap input:focus {
  border-color: var(--brand-electric);
  background: var(--surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-electric) 22%, transparent);
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transform: translateY(-50%);
}

.password-toggle:hover {
  background: #eaf2ff;
  color: var(--brand-blue);
}

.password-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.login-submit {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--brand-electric);
  border-radius: 11px;
  background: var(--brand-electric);
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: 180ms ease;
}

.login-submit:hover {
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(32, 41, 91, .28);
}

.login-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-electric) 32%, transparent);
}

.login-submit:active {
  transform: scale(.99);
}

.login-submit svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.login-support {
  margin: 22px 0 0;
  color: var(--text-muted);
  text-align: center;
  font-size: 11px;
}

.login-support span {
  color: var(--brand-blue);
  font-weight: 700;
}

.login-legal {
  position: absolute;
  right: clamp(32px, 7vw, 112px);
  bottom: clamp(28px, 4vw, 64px);
  left: clamp(32px, 7vw, 112px);
  margin: 0;
  color: var(--text-soft, #9ca3af);
  font-size: 9px;
  letter-spacing: .04em;
}

.login-visual-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: 100vh;
  flex-direction: column;
  gap: clamp(20px, 3vh, 38px);
  justify-content: center;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, .16);
  padding: clamp(50px, 6.5vh, 84px) clamp(40px, 5.5vw, 84px) clamp(34px, 4.5vh, 56px);
  background:
    radial-gradient(circle at 80% 6%, color-mix(in srgb, var(--brand-cyan) 32%, transparent), transparent 42%),
    radial-gradient(circle at 6% 94%, color-mix(in srgb, var(--brand-accent) 16%, transparent), transparent 46%),
    linear-gradient(158deg, var(--brand-indigo) 0%, var(--brand-navy) 46%, var(--brand-abyss) 100%);
  color: #ffffff;
}

.login-visual-panel::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/login/login-hero-clean.png");
  background-position: center;
  background-size: cover;
  content: "";
  opacity: .74;
  mix-blend-mode: normal;
}

.login-visual-panel::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(20, 26, 58, .82) 0%, rgba(32, 41, 91, .56) 46%, rgba(20, 26, 58, .34) 100%),
    radial-gradient(circle at 78% 8%, rgba(110, 162, 255, .16), transparent 42%);
  content: "";
}

.visual-copy {
  position: relative;
  z-index: 4;
  width: min(560px, 100%);
}

.visual-copy > p {
  position: relative;
  margin: 0 0 18px;
  padding-left: 26px;
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.visual-copy > p::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-accent);
  content: "";
  transform: translateY(-50%);
}

.visual-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.visual-copy h2 > span,
.visual-copy h2 em {
  display: inline;
}

.visual-copy h2 em {
  color: var(--brand-accent-soft);
  font-style: normal;
  font-weight: 800;
}

.visual-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .28;
  background-image:
    linear-gradient(color-mix(in srgb, var(--brand-blue) 10%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--brand-blue) 10%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
}

.visual-glow {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  filter: blur(70px);
}

.visual-glow-one {
  top: -8%;
  left: -10%;
  width: 390px;
  height: 390px;
  background: rgba(110, 162, 255, .34);
}

.visual-glow-two {
  right: -22%;
  bottom: -14%;
  width: 460px;
  height: 460px;
  background: color-mix(in srgb, var(--brand-accent) 24%, transparent);
}

.visual-network {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: .9;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(120% 120% at 62% 34%, #000 55%, transparent 100%);
  mask-image: radial-gradient(120% 120% at 62% 34%, #000 55%, transparent 100%);
}

.login-showcase {
  position: relative;
  z-index: 4;
  display: grid;
  flex: 1 1 auto;
  min-height: 0;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem) 0;
}

.showcase-orbit {
  position: absolute;
  width: min(34vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  opacity: .82;
  animation: showcaseDrift 13s ease-in-out infinite;
}

.showcase-orbit::before,
.showcase-orbit::after {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(110, 162, 255, .13);
  border-radius: inherit;
  content: "";
}

.showcase-orbit::after {
  inset: 30%;
  border-color: rgba(245, 196, 124, .16);
}

.showcase-orbit i {
  position: absolute;
  width: .62rem;
  height: .62rem;
  border-radius: 999px;
  background: var(--brand-accent);
  box-shadow: 0 0 28px rgba(245, 196, 124, .72);
}

.showcase-orbit i:first-child {
  top: 9%;
  left: 62%;
}

.showcase-orbit i:nth-child(2) {
  right: 6%;
  bottom: 31%;
  background: var(--brand-cyan);
  box-shadow: 0 0 28px rgba(110, 162, 255, .72);
}

.showcase-orbit i:nth-child(3) {
  bottom: 8%;
  left: 28%;
}

.showcase-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .08)),
    rgba(9, 14, 40, .2);
  box-shadow:
    0 36px 90px rgba(5, 9, 32, .38),
    inset 0 1px 0 rgba(255, 255, 255, .36);
  backdrop-filter: blur(18px);
}

.showcase-main {
  width: min(34rem, 78%);
  min-height: 24rem;
  overflow: hidden;
  border-radius: 1.55rem;
  padding: 1.2rem;
  transform: translateX(-5%);
  animation: consoleFloat 8s ease-in-out infinite;
}

.showcase-main::before {
  position: absolute;
  inset: auto -18% -22% 38%;
  height: 46%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 196, 124, .28), transparent 68%);
  content: "";
}

.showcase-toolbar {
  display: flex;
  gap: .45rem;
  margin-bottom: 1.1rem;
}

.showcase-toolbar span {
  width: .65rem;
  height: .65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .3);
}

.showcase-toolbar span:first-child {
  background: var(--brand-accent);
}

.showcase-toolbar span:nth-child(2) {
  background: var(--brand-blue);
}

.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}

.showcase-metrics i {
  height: 4.75rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .95rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .26) 0 46%, transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05));
  background-size: 100% .48rem, auto;
  background-position: 0 2.85rem, 0 0;
  background-repeat: no-repeat;
}

.showcase-metrics i:nth-child(2) {
  background-size: 78% .48rem, auto;
}

.showcase-metrics i:nth-child(3) {
  background-size: 58% .48rem, auto;
}

.showcase-chart {
  position: relative;
  height: 10.4rem;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(12, 22, 58, .42), rgba(12, 22, 58, .2)),
    rgba(255, 255, 255, .05);
}

.showcase-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.showcase-grid {
  fill: none;
  stroke: rgba(255, 255, 255, .12);
  stroke-width: 1;
}

.showcase-area {
  fill: rgba(110, 162, 255, .18);
}

.showcase-line {
  fill: none;
  stroke: #8db5ff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 13px rgba(110, 162, 255, .52));
}

.showcase-chart > span {
  position: absolute;
  right: 8%;
  top: 12%;
  width: .82rem;
  height: .82rem;
  border-radius: 999px;
  background: var(--brand-accent);
  box-shadow: 0 0 0 .45rem rgba(245, 196, 124, .13), 0 0 30px rgba(245, 196, 124, .8);
}

.showcase-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: .62rem;
  height: 4.7rem;
  margin-top: 1rem;
}

.showcase-bars i {
  min-height: 1.35rem;
  border-radius: .5rem .5rem .25rem .25rem;
  background: linear-gradient(180deg, #8db5ff, rgba(80, 115, 185, .52));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32);
}

.showcase-bars i:nth-child(1) { height: 42%; }
.showcase-bars i:nth-child(2) { height: 66%; }
.showcase-bars i:nth-child(3) { height: 52%; background: linear-gradient(180deg, var(--brand-accent), rgba(245, 165, 36, .54)); }
.showcase-bars i:nth-child(4) { height: 78%; }
.showcase-bars i:nth-child(5) { height: 58%; }
.showcase-bars i:nth-child(6) { height: 92%; background: linear-gradient(180deg, var(--brand-accent), rgba(245, 165, 36, .54)); }

.showcase-side {
  position: absolute;
  right: clamp(1.2rem, 5vw, 4rem);
  bottom: clamp(3.2rem, 9vh, 7rem);
  display: grid;
  width: min(13rem, 26%);
  gap: 1rem;
  border-radius: 1.35rem;
  padding: 1rem;
}

.showcase-ring {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--brand-accent) 0 32%, #8db5ff 32% 68%, rgba(255, 255, 255, .18) 68% 100%);
  box-shadow: 0 0 36px rgba(110, 162, 255, .24);
}

.showcase-ring i {
  width: 58%;
  aspect-ratio: 1;
  border-radius: inherit;
  background: rgba(18, 26, 65, .9);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, .08);
}

.showcase-sparks {
  display: grid;
  gap: .48rem;
}

.showcase-sparks i {
  height: .52rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
}

.showcase-sparks i:first-child {
  width: 82%;
  background: rgba(141, 181, 255, .52);
}

.showcase-sparks i:nth-child(2) {
  width: 58%;
}

.showcase-sparks i:nth-child(3) {
  width: 72%;
  background: rgba(245, 196, 124, .48);
}

.market-command {
  position: relative;
  z-index: 4;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.studio-window {
  position: relative;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .98), rgba(233, 240, 255, .92));
  color: var(--brand-navy);
  box-shadow:
    0 48px 110px rgba(9, 14, 40, .45),
    0 10px 26px rgba(32, 41, 91, .18),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  animation: consoleFloat 8s ease-in-out infinite;
}

.studio-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(80, 115, 185, .16);
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(238, 244, 255, .68));
  padding: 13px 18px;
}

.studio-dots {
  display: inline-flex;
  gap: 6px;
}

.studio-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(32, 41, 91, .18);
}

.studio-dots i:first-child {
  background: var(--brand-accent);
}

.studio-dots i:nth-child(2) {
  background: var(--brand-blue);
}

.studio-name {
  flex: 1;
  color: var(--brand-navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .01em;
}

.studio-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 18px;
  padding: 20px;
}

.studio-main {
  min-width: 0;
}

.studio-rail {
  display: grid;
  gap: 12px;
  align-content: start;
}

.studio-status {
  border-top: 1px solid rgba(80, 115, 185, .14);
  background: linear-gradient(180deg, rgba(247, 250, 255, 0), rgba(238, 244, 255, .5));
  padding: 14px 20px 18px;
}

.console-head {
  display: grid;
  gap: 5px;
  margin-bottom: 16px;
}

.console-tag {
  display: block;
  color: color-mix(in srgb, var(--brand-accent) 78%, var(--brand-navy));
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.console-title {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.console-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border: 1px solid rgba(80, 115, 185, .28);
  border-radius: 999px;
  background: #eef4ff;
  padding: 5px 10px;
  color: var(--brand-blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.console-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-accent);
  animation: consolePing 1.8s ease-out infinite;
}

.console-chart {
  position: relative;
  height: 132px;
  overflow: hidden;
  border: 1px solid rgba(80, 115, 185, .16);
  border-radius: 16px;
  background: #f7faff;
}

.console-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-grid {
  fill: none;
  stroke: rgba(80, 115, 185, .12);
  stroke-width: 1;
}

.chart-market {
  fill: none;
  stroke: rgba(32, 41, 91, .32);
  stroke-width: 2;
  stroke-dasharray: 4 5;
  stroke-linecap: round;
}

.chart-area {
  fill: url(#rpArea);
  stroke: none;
}

.chart-line {
  fill: none;
  stroke: var(--brand-blue);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 10px rgba(80, 115, 185, .35));
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  animation: consoleDraw 4.6s ease-in-out infinite;
}

.console-node {
  position: absolute;
  right: 5px;
  top: 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-accent);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--brand-accent) 28%, transparent),
    0 6px 14px rgba(245, 165, 36, .5);
  animation: consoleNode 2.6s ease-in-out infinite;
}

.console-flag {
  position: absolute;
  right: 22px;
  top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 10px;
  background: var(--brand-navy);
  padding: 5px 9px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(9, 14, 40, .42);
}

.console-flag em {
  font-style: normal;
  color: var(--brand-accent-soft);
  font-size: 9px;
  font-weight: 800;
}

.console-legend {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}

.console-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
}

.console-legend span::before {
  content: "";
  width: 12px;
  height: 3px;
  border-radius: 999px;
}

.legend-rp::before {
  background: var(--brand-blue);
}

.legend-mkt::before {
  background: rgba(32, 41, 91, .32);
}

.console-meter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px 10px;
}

.console-meter span {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
}

.console-meter strong {
  color: var(--brand-navy);
  font-size: 12px;
}

.console-meter i {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.console-meter i::before {
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-blue) 60%, var(--brand-cyan));
  content: "";
  animation: marketBarScan 3.8s ease-in-out infinite;
}

.margin-ring {
  display: grid;
  justify-items: center;
  gap: 8px;
  border: 1px solid rgba(80, 115, 185, .16);
  border-radius: 18px;
  background: linear-gradient(155deg, #ffffff, #eef3fb);
  padding: 16px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.ring-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: conic-gradient(
    var(--brand-blue) 0turn 0.31turn,
    color-mix(in srgb, var(--brand-accent) 72%, var(--brand-blue)) 0.31turn 0.42turn,
    #e4ecf9 0.42turn 1turn
  );
  box-shadow: 0 12px 30px rgba(32, 41, 91, .2);
}

.ring-core::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #ffffff, #eef3fb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.ring-core strong,
.ring-core span {
  position: relative;
  z-index: 1;
}

.ring-core strong {
  color: var(--brand-navy);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.ring-core strong small {
  font-size: 12px;
  font-weight: 700;
}

.ring-core span {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ring-caption {
  margin: 0;
  color: color-mix(in srgb, var(--brand-accent) 78%, var(--brand-navy));
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reco-card {
  position: relative;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(80, 115, 185, .16);
  border-radius: 14px;
  background: #ffffff;
  padding: 11px 12px 11px 18px;
  color: var(--brand-navy);
  box-shadow: 0 8px 20px rgba(32, 41, 91, .08);
}

.reco-card::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
}

.reco-label {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reco-value {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.reco-sku {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 600;
}

.reco-up {
  --z: 46px;
}

.reco-up::before {
  background: var(--brand-accent);
}

.reco-up .reco-value {
  color: color-mix(in srgb, var(--brand-accent) 80%, var(--brand-navy));
}

.reco-hold {
  --z: 20px;
}

.reco-hold::before {
  background: var(--brand-blue);
}

.reco-hold .reco-value {
  color: var(--brand-navy);
}

.visual-closing {
  position: relative;
  z-index: 4;
  max-width: 560px;
}

.visual-closing h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 800;
  letter-spacing: -.045em;
}

.visual-closing p,
.visual-closing span {
  display: block;
  max-width: 480px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  line-height: 1.55;
}

.visual-closing span {
  max-width: 520px;
  margin-top: 5px;
  color: rgba(255, 255, 255, .52);
}

@keyframes showcaseDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(1.2rem, -.8rem, 0) rotate(6deg);
  }
}

@keyframes consoleFloat {
  0%, 100% {
    transform: translateY(0) translateZ(var(--z, 0));
  }

  50% {
    transform: translateY(-14px) translateZ(var(--z, 0));
  }
}

@keyframes consolePing {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand-accent) 60%, transparent);
  }

  70%, 100% {
    box-shadow: 0 0 0 8px rgba(245, 165, 36, 0);
  }
}

@keyframes consoleNode {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 0 4px color-mix(in srgb, var(--brand-accent) 28%, transparent),
      0 6px 14px rgba(245, 165, 36, .5);
  }

  50% {
    transform: scale(1.18);
    box-shadow:
      0 0 0 7px color-mix(in srgb, var(--brand-accent) 18%, transparent),
      0 10px 20px rgba(245, 165, 36, .6);
  }
}

@keyframes consoleDraw {
  0% {
    stroke-dasharray: 0 1;
  }

  55%, 100% {
    stroke-dasharray: 1 0;
  }
}

@keyframes marketBarScan {
  0% {
    transform: scaleX(.72);
    transform-origin: left;
  }

  55%, 100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@media (max-width: 1180px) {
  .login-form-panel {
    padding-inline: clamp(28px, 5vw, 56px);
  }

  .showcase-main {
    width: min(35rem, 88%);
    transform: none;
  }

  .showcase-side {
    right: clamp(1rem, 3vw, 2rem);
    width: min(12rem, 30%);
  }

  .studio-body {
    grid-template-columns: 1fr;
  }

  .studio-rail {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .margin-ring {
    grid-column: 1 / -1;
  }

  .visual-closing {
    max-width: 500px;
  }

  .visual-closing h3 {
    font-size: clamp(24px, 2.8vw, 32px);
  }
}

@media (max-width: 960px) {
  .login-shell {
    grid-template-columns: 1fr;
  }

  .login-form-panel {
    width: 100%;
  }

  .login-visual-panel {
    display: none;
  }

  .login-legal {
    position: static;
    margin-top: 48px;
  }
}

@media (max-width: 540px) {
  .login-form-panel {
    padding: 24px;
  }

  .login-form-wrap {
    margin: 54px auto;
  }

  .login-wordmark-hero {
    margin-bottom: 24px;
  }

  .login-wordmark-hero .login-logo {
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
