:root {
  color-scheme: light;
  --bg: #edf4f1;
  --surface: #ffffff;
  --ink: #1d2528;
  --muted: #667275;
  --line: #dce2df;
  --accent: #1f7a6d;
  --accent-dark: #14564d;
  --cyan: #2cb8c7;
  --mint: #5ee0bd;
  --amber: #a76518;
  --red: #9b2d30;
  --blue: #315f9c;
  --shadow: 0 18px 40px rgba(26, 38, 41, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(31, 122, 109, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 122, 109, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 78% 12%, rgba(44, 184, 199, 0.15), transparent 34%),
    var(--bg);
  background-size: 28px 28px, 28px 28px, auto, auto;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: scan 8s linear infinite;
}

button,
textarea {
  font: inherit;
}

button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  min-height: 40px;
  padding: 0 14px;
  cursor: pointer;
}

button:hover:not(:disabled) {
  border-color: var(--accent);
}

button:disabled {
  color: #9aa4a4;
  cursor: not-allowed;
}

button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
}

button.primary:hover {
  background: var(--accent-dark);
}

.preview-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: #ecf8f4;
  color: var(--accent-dark);
  font-weight: 800;
  padding: 0 14px;
  text-decoration: none;
  white-space: nowrap;
}

.preview-link:hover {
  background: #dff3ec;
}

.topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 250, 0.88);
  backdrop-filter: blur(14px);
}

.topbar-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  gap: 20px;
  padding: 20px 32px 32px;
}

.input-pane,
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.input-pane {
  position: sticky;
  top: 20px;
  align-self: start;
  padding: 18px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

textarea {
  width: 100%;
  min-height: 420px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  line-height: 1.5;
}

textarea:focus {
  outline: 3px solid rgba(31, 122, 109, 0.16);
  border-color: var(--accent);
}

.task-mode {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mode-button {
  min-height: 38px;
  padding: 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.mode-button.active {
  border-color: var(--accent);
  background: #ecf8f4;
  color: var(--accent-dark);
  box-shadow: inset 0 0 0 1px rgba(31, 122, 109, 0.18);
}

.button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.panel {
  min-width: 0;
  padding: 18px;
  transform-origin: top center;
}

.panel.revealed {
  animation: panelReveal 420ms ease both;
}

.panel.resetting {
  animation: panelReset 260ms ease;
}

.artifacts-panel,
.ledger-panel,
.loop-console {
  grid-column: 1 / -1;
}

.artifacts-panel {
  position: relative;
}

.artifacts-panel.complete-glow {
  animation: softCompleteGlow 3.8s ease-in-out both;
}

.artifacts-panel.complete-glow::after {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: 8px;
  background: linear-gradient(90deg, transparent, rgba(94, 224, 189, 0.22), transparent);
  content: "";
  opacity: 0;
  animation: softRibbon 3.8s ease-in-out both;
}

.completion-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.save-note {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.save-note.saved {
  color: var(--accent-dark);
  font-weight: 800;
  animation: textBloom 2.6s ease-in-out both;
}

.completion-beacon {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #eef1f0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  padding: 0 12px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.completion-beacon.running {
  border-color: rgba(167, 101, 24, 0.25);
  background: #fff3df;
  color: var(--amber);
}

.completion-beacon.ready {
  border-color: rgba(31, 122, 109, 0.2);
  background: #ecf8f4;
  color: var(--accent-dark);
  animation: beaconBreath 2.4s ease-in-out infinite;
}

.artifacts-panel.complete-glow .completion-note {
  color: var(--accent-dark);
  animation: textBloom 3.8s ease-in-out both;
}

.loop-console {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(360px, 1.2fr) 90px;
  gap: 18px;
  align-items: center;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(31, 122, 109, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 24, 29, 0.96), rgba(16, 53, 53, 0.92)),
    var(--ink);
  box-shadow: 0 26px 64px rgba(16, 36, 38, 0.2);
  color: #e8fffb;
  padding: 22px;
}

.loop-console::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(94, 224, 189, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 224, 189, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.loop-copy,
.loop-stage,
.signal-rail {
  position: relative;
  z-index: 1;
}

.loop-copy h2 {
  max-width: 420px;
  color: #f6fffd;
  font-size: 24px;
  line-height: 1.28;
}

.process-feed {
  max-width: 420px;
  margin-top: 22px;
  border: 1px solid rgba(94, 224, 189, 0.22);
  border-radius: 8px;
  background: rgba(8, 24, 29, 0.58);
  overflow: hidden;
}

.process-feed-head {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  border-bottom: 1px solid rgba(94, 224, 189, 0.14);
  padding: 0 12px;
  color: #dffbf6;
  font-size: 12px;
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6c7778;
}

.loop-console.processing .live-dot {
  background: var(--mint);
  box-shadow: 0 0 16px rgba(94, 224, 189, 0.85);
  animation: dotPulse 820ms ease-in-out infinite;
}

.process-feed ol {
  display: grid;
  margin: 0;
  padding: 8px;
  list-style: none;
}

.process-feed li {
  position: relative;
  min-height: 28px;
  border-radius: 6px;
  color: rgba(232, 255, 251, 0.58);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px 7px 28px;
}

.process-feed li::before {
  position: absolute;
  left: 10px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(94, 224, 189, 0.22);
  content: "";
}

.process-feed li.active {
  background: rgba(44, 184, 199, 0.14);
  color: #ffffff;
}

.process-feed li.active::after {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, transparent, rgba(94, 224, 189, 0.22), transparent);
  content: "";
  animation: dataSweep 980ms linear infinite;
}

.process-feed li.done {
  color: #baf6e8;
}

.process-feed li.done::before,
.process-feed li.active::before {
  background: var(--mint);
  box-shadow: 0 0 12px rgba(94, 224, 189, 0.72);
}

.loop-stage {
  display: grid;
  place-items: center;
  width: min(100%, 430px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(94, 224, 189, 0.32);
}

.orbit-one {
  width: 74%;
  height: 74%;
  box-shadow: 0 0 36px rgba(44, 184, 199, 0.18);
  animation: spin 14s linear infinite;
}

.orbit-two {
  width: 52%;
  height: 52%;
  border-style: dashed;
  animation: spin 9s linear reverse infinite;
}

.loop-core {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(94, 224, 189, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(94, 224, 189, 0.2), rgba(44, 184, 199, 0.06) 60%, transparent),
    rgba(8, 24, 29, 0.82);
  box-shadow:
    inset 0 0 28px rgba(94, 224, 189, 0.16),
    0 0 42px rgba(44, 184, 199, 0.24);
  text-align: center;
}

.loop-core span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.loop-core strong {
  color: #fff;
  font-size: 18px;
}

.loop-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  width: 86px;
  height: 34px;
  border: 1px solid rgba(94, 224, 189, 0.24);
  border-radius: 999px;
  background: rgba(9, 28, 34, 0.82);
  color: #cde5e1;
  font-size: 12px;
  font-weight: 900;
  transform: translate(-50%, -50%);
  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    color 200ms ease;
}

.loop-node.active,
.loop-node.done {
  border-color: rgba(94, 224, 189, 0.95);
  background: rgba(31, 122, 109, 0.96);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(94, 224, 189, 0.52);
}

.loop-node.done {
  background: rgba(44, 184, 199, 0.6);
}

.loop-stage.running .orbit-one {
  animation-duration: 3.8s;
}

.loop-stage.running .orbit-two {
  animation-duration: 2.6s;
}

.loop-console.processing {
  box-shadow:
    0 26px 64px rgba(16, 36, 38, 0.22),
    0 0 34px rgba(44, 184, 199, 0.2);
}

.loop-console.restarting {
  animation: consoleReboot 520ms ease both;
}

.loop-console.processing::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent 18%, rgba(94, 224, 189, 0.12), transparent 42%);
  animation: consoleSweep 1.35s linear infinite;
}

.signal-rail {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.signal-rail span {
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--mint));
  opacity: 0.65;
  animation: pulseRail 1.6s ease-in-out infinite;
}

.signal-rail span:nth-child(2) {
  width: 52px;
  animation-delay: 180ms;
}

.signal-rail span:nth-child(3) {
  width: 88px;
  animation-delay: 360ms;
}

.badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: #ecf3f1;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 0 10px;
  white-space: nowrap;
}

.badge.medium {
  background: #fff3df;
  color: var(--amber);
}

.badge.high {
  background: #ffe9e9;
  color: var(--red);
}

.definition-list {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px 14px;
  margin: 0;
}

.definition-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.definition-list dd {
  margin: 0;
  line-height: 1.45;
}

.proposal-list {
  display: grid;
  gap: 12px;
}

.proposal {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  animation: resultPing 280ms ease both;
}

.proposal.selected {
  border-color: var(--accent);
  background: #f1faf7;
  box-shadow: inset 4px 0 0 var(--accent);
}

.proposal-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.proposal-title {
  font-weight: 800;
}

.score-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.score {
  border-radius: 6px;
  background: #f3f5f2;
  min-height: 52px;
  padding: 8px;
}

.score span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
  line-height: 1.5;
}

.check-list {
  display: grid;
  gap: 8px;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
}

.check-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.quality-meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f0;
  margin-bottom: 14px;
}

.quality-meter div {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--mint));
  transition: width 520ms ease;
}

.quality-list {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.quality-list li {
  position: relative;
  color: var(--muted);
  line-height: 1.45;
  padding-left: 18px;
}

.quality-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.quality-panel.refining {
  animation: softCompleteGlow 2.2s ease-in-out infinite;
}

.tabs {
  display: flex;
  gap: 6px;
}

.tab {
  min-height: 32px;
  padding: 0 10px;
}

.tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.tab:disabled {
  opacity: 0.45;
}

.tab.artifact-ready {
  border-color: rgba(31, 122, 109, 0.55);
  color: var(--accent-dark);
  animation: artifactUnlock 680ms ease-out both;
}

.tab.artifact-ready:nth-child(1) { animation-delay: 0ms; }
.tab.artifact-ready:nth-child(2) { animation-delay: 80ms; }
.tab.artifact-ready:nth-child(3) { animation-delay: 160ms; }

.tab.active.artifact-ready {
  border-color: var(--ink);
  color: #fff;
}

#saveArtifactsButton.artifact-ready {
  border-color: var(--accent);
  color: var(--accent-dark);
  animation: artifactUnlock 680ms ease-out both;
}

.preview-link[aria-disabled="true"] {
  opacity: 0.38;
  cursor: not-allowed;
  color: #9aa4a4;
  border-color: var(--line);
  background: #f5f7f6;
}

.preview-link[aria-disabled="true"]:hover {
  background: #f5f7f6;
}

.preview-link.preview-ready {
  animation: previewLinkUnlock 820ms ease-out both;
}

pre {
  min-height: 250px;
  max-height: 440px;
  overflow: auto;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #172124;
  color: #e9f1ee;
  padding: 16px;
  white-space: pre-wrap;
  line-height: 1.5;
}

.artifacts-panel.revealed pre {
  animation: terminalWake 520ms ease both;
}

.artifacts-panel.complete-glow pre {
  animation: terminalWake 520ms ease both, terminalBreath 3.8s ease-in-out both;
}

.artifacts-panel.complete-glow.revealed {
  animation:
    panelReveal 420ms ease both,
    softCompleteGlow 5.2s ease-in-out 160ms both;
}

.ledger-list {
  display: grid;
  gap: 10px;
}

.ledger-entry {
  display: grid;
  grid-template-columns: 150px 1fr 120px;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  animation: ledgerIn 280ms ease both;
}

.ledger-hash {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-weight: 800;
}

@media (max-width: 960px) {
  .topbar,
  .workspace {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    align-items: start;
    flex-direction: column;
  }

  .workspace,
  .output-grid {
    grid-template-columns: 1fr;
  }

  .loop-console {
    grid-template-columns: 1fr;
  }

  .signal-rail {
    display: none;
  }

  .input-pane {
    position: static;
  }

  textarea {
    min-height: 260px;
  }

  .ledger-entry {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 24px;
  }

  .button-row,
  .score-row {
    grid-template-columns: 1fr;
  }

  .definition-list {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .loop-stage {
    width: 310px;
  }

  .loop-node {
    width: 78px;
  }
}

@keyframes scan {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseRail {
  0%,
  100% {
    opacity: 0.32;
    transform: translateX(-8px);
  }
  50% {
    opacity: 0.95;
    transform: translateX(0);
  }
}

@keyframes ledgerIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes dataSweep {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes consoleSweep {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes panelReveal {
  from {
    opacity: 0.25;
    transform: translateY(14px) scale(0.99);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes panelReset {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  to {
    opacity: 0.38;
    transform: translateY(8px) scale(0.992);
    filter: blur(1px);
  }
}

@keyframes consoleReboot {
  0% {
    filter: saturate(0.7) brightness(0.88);
    transform: scale(0.996);
  }
  48% {
    filter: saturate(1.25) brightness(1.12);
    box-shadow:
      0 26px 64px rgba(16, 36, 38, 0.22),
      0 0 48px rgba(94, 224, 189, 0.3);
  }
  100% {
    filter: none;
    transform: scale(1);
  }
}

@keyframes resultPing {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes terminalWake {
  0% {
    box-shadow: inset 0 0 0 rgba(94, 224, 189, 0), 0 0 0 rgba(94, 224, 189, 0);
  }
  45% {
    box-shadow: inset 0 0 36px rgba(94, 224, 189, 0.16), 0 0 28px rgba(44, 184, 199, 0.18);
  }
  100% {
    box-shadow: inset 0 0 0 rgba(94, 224, 189, 0), 0 0 0 rgba(94, 224, 189, 0);
  }
}

@keyframes softCompleteGlow {
  0% {
    box-shadow: var(--shadow);
  }
  28% {
    box-shadow:
      var(--shadow),
      0 0 0 2px rgba(94, 224, 189, 0.34),
      0 0 46px rgba(94, 224, 189, 0.34);
  }
  58% {
    box-shadow:
      var(--shadow),
      0 0 0 2px rgba(44, 184, 199, 0.24),
      0 0 58px rgba(44, 184, 199, 0.3);
  }
  100% {
    box-shadow: var(--shadow);
  }
}

@keyframes softRibbon {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-24%);
  }
  28%,
  62% {
    opacity: 1;
  }
  74% {
    transform: translateX(24%);
  }
}

@keyframes textBloom {
  0%,
  100% {
    text-shadow: none;
  }
  34%,
  68% {
    text-shadow: 0 0 18px rgba(31, 122, 109, 0.28);
  }
}

@keyframes terminalBreath {
  0%,
  100% {
    border-color: var(--line);
  }
  35%,
  70% {
    border-color: rgba(94, 224, 189, 0.72);
  }
}

@keyframes beaconBreath {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(94, 224, 189, 0);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 24px rgba(94, 224, 189, 0.44);
    transform: scale(1.03);
  }
}

@keyframes artifactUnlock {
  0% {
    box-shadow: none;
  }
  28% {
    box-shadow: 0 0 0 2px rgba(94, 224, 189, 0.8), 0 0 22px rgba(94, 224, 189, 0.5);
  }
  68% {
    box-shadow: 0 0 0 1px rgba(44, 184, 199, 0.38), 0 0 12px rgba(44, 184, 199, 0.22);
  }
  100% {
    box-shadow: none;
  }
}

@keyframes previewLinkUnlock {
  0% {
    box-shadow: none;
  }
  20% {
    box-shadow: 0 0 0 3px rgba(94, 224, 189, 0.9), 0 0 30px rgba(94, 224, 189, 0.6);
  }
  65% {
    box-shadow: 0 0 0 2px rgba(44, 184, 199, 0.48), 0 0 16px rgba(44, 184, 199, 0.32);
  }
  100% {
    box-shadow: 0 0 8px rgba(31, 122, 109, 0.15);
  }
}
