/* public/styles.css */
:root {
  --bg-0: #0a0a0c;
  --bg-1: #111114;
  --bg-2: #17171c;
  --bg-3: #1c1c22;
  --border: #1f1f25;
  --border-soft: #15151a;
  --text: #e8e8ee;
  --text-dim: #8a8a93;
  --text-faint: #545460;
  --accent: #6f7bff;
  --accent-hover: #8590ff;
  --accent-soft: #6f7bff24;
  --accent-ring: #6f7bff52;
  --success: #4ade80;
  --success-soft: #4ade801f;
  --danger: #f87171;
  --danger-soft: #f871711f;
  --warn: #fbbf24;
  --warn-soft: #fbbf241f;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --shadow-1: 0 1px 0 #ffffff0a inset, 0 8px 24px #0006;
  --shadow-focus: 0 0 0 3px var(--accent-ring);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", "Cascadia Code", Consolas, monospace;
  --duration: .12s;
  --easing: cubic-bezier(.2, 0, 0, 1);
}

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

html, body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
}

body {
  background: radial-gradient(1400px 700px at 50% -5%, #6f7bff12, transparent 55%), var(--bg-0);
  min-height: 100vh;
}

@keyframes stepEnter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes diagLineIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pipePulse {
  0%, 100% {
    box-shadow: 0 0 #6f7bff66;
  }

  50% {
    box-shadow: 0 0 0 6px #6f7bff00;
  }
}

@keyframes connectorFill {
  from {
    background-position: 0%;
  }

  to {
    background-position: 100%;
  }
}

@keyframes signNodeIn {
  from {
    opacity: 0;
    transform: scale(.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.app-topbar {
  display: flex;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  position: sticky;
  z-index: 100;
  background: #111114d9;
  justify-content: space-between;
  align-items:  center;
  padding: 18px 32px 16px;
  top: 0;
}

.topbar-brand {
  display: flex;
  align-items:  center;
  gap: 14px;
}

.topbar-logo {
  font-size: 28px;
  line-height: 1;
}

.topbar-title {
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #e8e8ee 30%, #6f7bff);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.topbar-tagline {
  color: var(--text-faint);
  letter-spacing: .02em;
  margin: 2px 0 0;
  font-size: 11px;
}

.topbar-badge {
  color: var(--accent);
  background: var(--accent-soft);
  letter-spacing: .04em;
  border: 1px solid #6f7bff4d;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
}

.stepbar {
  display: flex;
  overflow-x: auto;
  justify-content: center;
  align-items:  center;
  gap: 0;
  padding: 20px 24px 18px;
}

.stepbar-item {
  display: flex;
  flex-shrink: 0;
  align-items:  center;
}

.stepbar-node {
  display: flex;
  flex-direction: column;
  align-items:  center;
  gap: 5px;
}

.stepbar-circle {
  display: flex;
  border: 2px solid var(--border);
  background: var(--bg-2);
  color: var(--text-faint);
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 32px;
  height: 32px;
  transition: all .25s;
  font-size: 13px;
  font-weight: 700;
}

.stepbar-text {
  display: flex;
  flex-direction: column;
  align-items:  center;
  gap: 1px;
}

.stepbar-title {
  color: var(--text-faint);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
}

.stepbar-sub {
  color: var(--text-faint);
  white-space: nowrap;
  opacity: .7;
  font-size: 10px;
}

.stepbar-line {
  background: var(--border);
  border-radius: 1px;
  width: 40px;
  height: 2px;
  margin: 0 8px;
  transition: background .3s;
}

.stepbar-line.line-done {
  background: var(--accent);
}

.stepbar-active .stepbar-circle {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  animation: pipePulse 2s ease-in-out infinite;
}

.stepbar-active .stepbar-title {
  color: var(--text);
}

.stepbar-active .stepbar-sub {
  color: var(--accent);
  opacity: .9;
}

.stepbar-done .stepbar-circle {
  border-color: var(--success);
  color: var(--success);
  background: #4ade801f;
}

.stepbar-done .stepbar-title {
  color: var(--text-dim);
}

.app-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  flex: 1;
  align-items:  start;
  gap: 0;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.app-main {
  padding-right: 28px;
}

.step-pane {
  animation: stepEnter .28s cubic-bezier(.2, 0, 0, 1) forwards;
}

.flow-guide {
  position: sticky;
  display: flex;
  flex-direction: column;
  gap: 16px;
  top: 80px;
}

.flow-pipeline {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 14px;
}

.pipe-row {
  display: flex;
  flex-direction: column;
  align-items:  flex-start;
}

.pipe-node {
  display: flex;
  align-items:  center;
  gap: 10px;
  padding: 5px 0;
}

.pipe-dot {
  display: flex;
  border: 2px solid var(--border);
  background: var(--bg-3);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 28px;
  height: 28px;
  transition: all .2s;
  font-size: 14px;
}

.pipe-check {
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
}

.pipe-icon {
  font-size: 14px;
}

.pipe-label {
  color: var(--text-faint);
  transition: color .2s;
  font-size: 12px;
  font-weight: 500;
}

.pipe-active .pipe-dot {
  border-color: var(--accent);
  background: var(--accent-soft);
  animation: pipePulse 1.8s ease-in-out infinite;
}

.pipe-active .pipe-label {
  color: var(--text);
  font-weight: 600;
}

.pipe-done .pipe-dot {
  border-color: var(--success);
  background: #4ade801a;
}

.pipe-done .pipe-label {
  color: var(--text-dim);
}

.pipe-connector {
  background: var(--border);
  border-radius: 1px;
  width: 2px;
  height: 14px;
  margin-left: 13px;
  transition: background .3s;
}

.connector-done {
  background: var(--success);
}

.guide-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  animation: stepEnter .3s ease forwards;
  padding: 16px;
}

.guide-heading {
  color: var(--accent);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
}

.guide-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 0 14px;
  padding-left: 16px;
}

.guide-lines li {
  color: var(--text-dim);
  font-size: 11.5px;
  line-height: 1.5;
}

.guide-diagram {
  background: var(--bg-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
}

.diag-line {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-dim);
  white-space: pre;
  animation: diagLineIn .3s ease forwards;
  opacity: 0;
}

.diag-arrow {
  color: var(--accent);
  opacity: 0;
  animation: diagLineIn .3s ease forwards;
}

.diag-success {
  color: var(--success);
  opacity: 0;
  animation: diagLineIn .3s ease forwards;
}

.guide-live {
  display: flex;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  animation: stepEnter .25s ease forwards;
  justify-content: space-between;
  align-items:  center;
  gap: 10px;
  padding: 8px 12px;
}

.guide-live-success {
  background: #4ade800d;
  border-color: #4ade804d;
}

.guide-live-label {
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: .06em;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
}

.guide-live-val {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tech-note {
  border-radius: var(--radius-sm);
  background: #6f7bff0d;
  border: 1px solid #6f7bff26;
  margin-top: 16px;
  padding: 12px 14px;
}

.tech-note-label {
  color: var(--accent);
  letter-spacing: .03em;
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
}

.tech-note-row {
  display: flex;
  border-top: 1px solid #6f7bff14;
  gap: 10px;
  padding: 3px 0;
  font-size: 11.5px;
}

.tech-note-row:first-of-type {
  border-top: none;
}

.tn-key {
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: .04em;
  flex-shrink: 0;
  min-width: 82px;
  padding-top: 1px;
  font-size: 10.5px;
  font-weight: 600;
}

.tn-val {
  color: var(--text-dim);
  font-family: var(--font-mono);
  word-break: break-word;
  font-size: 11px;
}

.sign-success-block {
  animation: stepEnter .3s ease forwards;
  margin-top: 16px;
}

.sign-flow {
  display: flex;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-direction: column;
  align-items:  flex-start;
  gap: 4px;
  padding: 14px 16px;
}

.sign-flow-node {
  display: flex;
  border-radius: var(--radius-sm);
  animation: signNodeIn .3s ease forwards;
  align-items:  center;
  gap: 12px;
  width: 100%;
  padding: 6px 10px;
}

.sign-flow-msg {
  animation-delay: 0s;
  background: #6f7bff14;
}

.sign-flow-sig {
  animation-delay: .15s;
  background: #fbbf2414;
}

.sign-flow-ok {
  animation-delay: .3s;
  background: #4ade8014;
}

.sign-flow-arrow {
  color: var(--text-faint);
  font-size: 10.5px;
  font-family: var(--font-mono);
  animation: diagLineIn .25s ease forwards;
  opacity: 0;
  padding-left: 4px;
}

.sign-flow-arrow:nth-child(2) {
  animation-delay: 80ms;
}

.sign-flow-arrow:nth-child(4) {
  animation-delay: .24s;
}

.sfn-label {
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-faint);
  min-width: 70px;
  font-size: 10px;
  font-weight: 700;
}

.sfn-val {
  font-size: 11.5px;
  font-family: var(--font-mono);
  color: var(--text-dim);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

code, pre, kbd {
  font-family: var(--font-mono);
}

button {
  font: inherit;
}

::selection {
  background: var(--accent-soft);
  color: var(--text);
}

.app {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.app-header {
  margin-bottom: 28px;
}

.app-header h1 {
  letter-spacing: -.01em;
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
}

.app-header p {
  color: var(--text-dim);
  margin: 0;
  font-size: 13px;
}

.card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}

.card-pad {
  padding: 28px;
}

.section-title {
  letter-spacing: -.005em;
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.section-subtitle {
  color: var(--text-dim);
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.55;
}

.field {
  display: block;
}

.field + .field {
  margin-top: 18px;
}

.field-label {
  display: block;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
}

.field-hint {
  color: var(--text-faint);
  margin: 6px 0 0;
  font-size: 12px;
}

.field-error {
  color: var(--danger);
  margin: 6px 0 0;
  font-size: 12px;
}

.input, .textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color var(--duration) var(--easing), box-shadow var(--duration) var(--easing);
  width: 100%;
  padding: 10px 12px;
}

.input:focus, .textarea:focus {
  border-color: var(--accent);
  box-shadow: var(--shadow-focus);
}

.input::placeholder, .textarea::placeholder {
  color: var(--text-faint);
}

.textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}

.input.mono, .textarea.mono {
  font-family: var(--font-mono);
  font-size: 13px;
}

.btn {
  display: inline-flex;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--duration) var(--easing), border-color var(--duration) var(--easing), transform var(--duration) var(--easing), opacity var(--duration) var(--easing);
  border: 1px solid #0000;
  justify-content: center;
  align-items:  center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
}

.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.btn:not(:disabled):active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: var(--bg-2);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--bg-3);
  border-color: var(--border);
}

.btn-ghost {
  color: var(--text-dim);
  background: none;
  border-color: #0000;
}

.btn-ghost:hover:not(:disabled) {
  color: var(--text);
}

.row {
  display: flex;
  align-items:  center;
  gap: 8px;
}

.row.between {
  justify-content: space-between;
}

.row.end {
  justify-content: flex-end;
}

.spacer {
  flex: 1;
}

.pill {
  display: inline-flex;
  border: 1px solid #0000;
  border-radius: 999px;
  align-items:  center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
}

.pill-success {
  color: var(--success);
  background: var(--success-soft);
  border-color: var(--success);
}

.pill-danger {
  color: var(--danger);
  background: var(--danger-soft);
  border-color: var(--danger);
}

.pill-warn {
  color: var(--warn);
  background: var(--warn-soft);
  border-color: var(--warn);
}

.pill-neutral {
  color: var(--text-dim);
  background: var(--bg-2);
  border-color: var(--border);
}

.address {
  display: inline-flex;
  font-family: var(--font-mono);
  color: var(--text);
  overflow-wrap: anywhere;
  word-break: break-all;
  flex-wrap: wrap;
  align-items:  center;
  gap: 6px;
  max-width: 100%;
  font-size: 13px;
}

.address > span {
  overflow-wrap: anywhere;
  word-break: break-all;
  min-width: 0;
}

.address .copy-btn {
  border: 1px solid var(--border);
  color: var(--text-faint);
  cursor: pointer;
  transition: color var(--duration) var(--easing), border-color var(--duration) var(--easing);
  background: none;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 11px;
}

.address .copy-btn:hover {
  color: var(--text);
  border-color: var(--text-faint);
}

.stepper {
  margin: 0 0 28px;
}

.stepper-track {
  display: flex;
  align-items:  center;
  gap: 0;
}

.stepper-node {
  display: flex;
  flex: none;
  align-items:  center;
  gap: 10px;
}

.stepper-node + .stepper-connector {
  background: var(--border);
  flex: 1;
  height: 1px;
  margin: 0 12px;
}

.stepper-circle {
  display: inline-flex;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text-faint);
  transition: all var(--duration) var(--easing);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 26px;
  height: 26px;
  font-size: 12px;
  font-weight: 700;
}

.stepper-node.active .stepper-circle {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.stepper-node.done .stepper-circle {
  border-color: var(--success);
  background: var(--success);
  color: #0a0a0c;
}

.stepper-label {
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 600;
}

.stepper-node.active .stepper-label {
  color: var(--text);
}

.stepper-node.done .stepper-label {
  color: var(--text-dim);
}

.wallet-row {
  display: flex;
  gap: 8px;
}

.wallet-row .input {
  flex: 1;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-width: 0;
}

.proof-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 0;
  padding: 14px 16px;
}

.proof-block .field-label {
  margin-bottom: 8px;
}

.proof-block .value, .proof-grid .value {
  font-family: var(--font-mono);
  color: var(--text);
  word-break: break-all;
  overflow-wrap: anywhere;
  font-size: 12px;
}

.proof-block .value.plain, .proof-grid .value.plain {
  font-family: var(--font-sans);
  white-space: pre-wrap;
  word-break: normal;
  overflow-wrap: break-word;
  font-size: 13px;
}

.proof-block .row + .row {
  margin-top: 6px;
}

.kv {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 8px 14px;
  min-width: 0;
  font-size: 12px;
}

.kv dt {
  color: var(--text-faint);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}

.kv dd {
  color: var(--text);
  font-family: var(--font-mono);
  word-break: break-all;
  overflow-wrap: anywhere;
  min-width: 0;
  margin: 0;
}

.status {
  border-radius: var(--radius-sm);
  border: 1px solid #0000;
  margin-top: 14px;
  padding: 10px 14px;
  font-size: 13px;
}

.status-loading {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--text);
}

.status-success {
  background: var(--success-soft);
  border-color: var(--success);
  color: var(--success);
}

.status-error {
  background: var(--danger-soft);
  border-color: var(--danger);
  color: var(--danger);
}

.step-actions {
  gap: 12px;
  margin-top: 24px;
}

.step-actions-left {
  display: flex;
  min-height: 1px;
}

.step-actions-right {
  gap: 8px;
}

.mm-hint {
  display: flex;
  border: 1px solid var(--warn);
  border-radius: var(--radius);
  color: var(--text);
  animation: mm-hint-pulse 1.5s ease-in-out infinite;
  background: linear-gradient(#fbbf2429, #fbbf241a);
  align-items:  center;
  gap: 12px;
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 13px;
}

.mm-hint-icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
}

.mm-hint-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-width: 0;
}

.mm-hint-body strong {
  color: var(--warn);
  font-weight: 600;
}

.mm-hint-sub {
  color: var(--text-dim);
  font-size: 12px;
}

.mm-hint-arrow {
  color: var(--warn);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

@keyframes mm-hint-pulse {
  0%, 100% {
    box-shadow: 0 0 #fbbf2400;
  }

  50% {
    box-shadow: 0 0 0 4px #fbbf242e;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mm-hint {
    animation: none;
  }
}

.mode-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.mode-card {
  text-align: left;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--duration) var(--easing), background var(--duration) var(--easing), box-shadow var(--duration) var(--easing);
  padding: 12px 14px;
}

.mode-card:hover:not(:disabled) {
  border-color: var(--text-faint);
}

.mode-card.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: var(--shadow-focus);
}

.mode-card:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.mode-card-head {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: 8px;
  margin-bottom: 6px;
}

.mode-card-title {
  letter-spacing: -.005em;
  font-size: 14px;
  font-weight: 600;
}

.mode-card-pill {
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid #0000;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
}

.mode-card-pill.mode-normal {
  color: var(--accent);
  background: #6f7bff1f;
  border-color: #6f7bff66;
}

.mode-card-pill.mode-hybrid {
  color: var(--success);
  background: #4ade801f;
  border-color: #4ade8073;
}

.mode-card-caption {
  color: var(--text-dim);
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.mode-card-pill.mode-smime {
  color: #a78bfa;
  background: #a78bfa1f;
  border-color: #a78bfa66;
}

.send-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0 20px;
}

.send-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.send-card-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.send-card-head > div:first-child {
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 10px;
}

.send-card-title {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.send-card-desc {
  color: var(--text-dim);
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.send-card-identity {
  color: var(--text-dim);
  font-size: 11.5px;
  font-family: var(--font-mono);
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  margin-top: 2px;
  padding: 6px 10px;
}

.send-card-normal {
  border-left: 3px solid #6f7bff80;
}

.send-card-hybrid {
  border-left: 3px solid #4ade8080;
}

.send-card-smime {
  border-left: 3px solid #a78bfa80;
}

.btn-normal-send {
  color: var(--accent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--duration) var(--easing);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-sans);
  background: #6f7bff24;
  border: 1px solid #6f7bff59;
  align-self:  flex-end;
  padding: 8px 16px;
}

.btn-normal-send:hover:not(:disabled) {
  background: #6f7bff38;
}

.btn-hybrid-send {
  color: var(--success);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--duration) var(--easing);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-sans);
  background: #4ade801f;
  border: 1px solid #4ade8059;
  align-self:  flex-end;
  padding: 8px 16px;
}

.btn-hybrid-send:hover:not(:disabled) {
  background: #4ade8033;
}

.btn-smime-send {
  color: #a78bfa;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--duration) var(--easing);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-sans);
  background: #a78bfa1f;
  border: 1px solid #a78bfa59;
  align-self:  flex-end;
  padding: 8px 16px;
}

.btn-smime-send:hover:not(:disabled) {
  background: #a78bfa33;
}

.btn-normal-send:disabled, .btn-hybrid-send:disabled, .btn-smime-send:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.status-success {
  background: var(--success-soft);
  color: var(--success);
  border-radius: var(--radius-sm);
  border: 1px solid #4ade8040;
  padding: 10px 14px;
  font-size: 13px;
}

.btn-ghost.btn-sm {
  opacity: .85;
  padding: 2px 8px;
  font-size: 12px;
}

.tab-row {
  display: inline-flex;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  gap: 4px;
  margin-top: 4px;
  padding: 4px;
}

.tab-btn {
  color: var(--text-dim);
  cursor: pointer;
  transition: background var(--duration) var(--easing), color var(--duration) var(--easing);
  background: none;
  border: 0;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}

.tab-btn:hover:not(:disabled) {
  color: var(--text);
}

.tab-btn.is-active {
  background: var(--accent);
  color: #fff;
}

.tab-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (width <= 880px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (width <= 720px) {
  .app {
    padding: 36px 18px 72px;
  }

  .card-pad {
    padding: 22px;
  }

  .app-header h1 {
    font-size: 20px;
  }

  .stepper-node + .stepper-connector {
    margin: 0 8px;
  }

  .stepper-label {
    font-size: 11px;
  }
}

@media (width <= 540px) {
  body {
    font-size: 13px;
  }

  .app {
    padding: 28px 14px 64px;
  }

  .card-pad {
    padding: 18px;
  }

  .app-header h1 {
    font-size: 18px;
  }

  .app-header p {
    font-size: 12px;
  }

  .section-title {
    font-size: 15px;
  }

  .section-subtitle {
    font-size: 12px;
  }

  .input, .textarea {
    font-size: 16px;
  }

  .stepper-label {
    display: none;
  }

  .stepper-node + .stepper-connector {
    margin: 0 6px;
  }

  .stepper-node {
    gap: 0;
  }

  .wallet-row {
    flex-direction: column;
    align-items: stretch;
  }

  .wallet-row .btn {
    width: 100%;
  }

  .kv {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kv dt {
    margin-top: 12px;
    font-size: 10px;
  }

  .kv dt:first-of-type {
    margin-top: 0;
  }

  .kv dd {
    margin-top: 2px;
  }

  .step-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 8px;
  }

  .step-actions-left, .step-actions-right {
    width: 100%;
  }

  .step-actions-right .btn {
    flex: 1;
    justify-content: center;
  }

  .step-actions-left .btn {
    justify-content: center;
    width: 100%;
  }

  .row.between:not(.step-actions) {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

@media (width <= 380px) {
  .app {
    padding: 24px 10px 48px;
  }

  .card-pad {
    padding: 14px;
  }

  .stepper-circle {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .stepper-node + .stepper-connector {
    margin: 0 4px;
  }
}

@media (width <= 1024px) {
  .app-body {
    grid-template-columns: 1fr;
    padding: 24px 20px 60px;
  }

  .app-main {
    padding-right: 0;
  }

  .flow-guide {
    position: static;
    flex-flow: wrap;
    gap: 12px;
  }

  .flow-pipeline {
    overflow-x: auto;
    flex-flow: row;
    align-items:  center;
    gap: 0;
    padding: 12px 14px;
  }

  .pipe-row {
    flex-direction: row;
    align-items:  center;
  }

  .pipe-connector {
    width: 24px;
    height: 2px;
    margin: 0 4px;
  }

  .guide-card {
    flex: 1;
    min-width: 260px;
  }

  .guide-live {
    min-width: 200px;
  }
}

@media (width <= 640px) {
  .app-topbar {
    padding: 14px 16px;
  }

  .topbar-tagline, .topbar-badge {
    display: none;
  }

  .stepbar {
    gap: 0;
    padding: 14px 12px 12px;
  }

  .stepbar-sub {
    display: none;
  }

  .stepbar-line {
    width: 24px;
    margin: 0 4px;
  }

  .stepbar-circle {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .stepbar-title {
    font-size: 11px;
  }

  .app-body {
    padding: 18px 14px 48px;
  }

  .flow-guide {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .step-pane, .guide-card, .diag-line, .diag-arrow, .diag-success, .sign-flow-node, .sign-flow-arrow, .guide-live {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .stepbar-circle, .pipe-dot {
    animation: none;
  }
}

.verify-page {
  max-width: 1220px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.verify-hero {
  max-width: 760px;
  margin-bottom: 28px;
}

.verify-brow {
  display: inline-flex;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #6f7bff1f;
  border: 1px solid #6f7bff47;
  border-radius: 999px;
  align-items:  center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
}

.verify-title {
  letter-spacing: -.05em;
  max-width: 720px;
  margin: 0 0 10px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: .96;
}

.verify-title code {
  color: #9bd4ff;
  font-size: .8em;
}

.verify-subtitle {
  color: var(--text-dim);
  max-width: 680px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.verify-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items:  start;
  gap: 22px;
}

.verify-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.verify-side {
  position: sticky;
  top: 24px;
}

.verify-side-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.verify-side-label {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
}

.verify-side-copy {
  color: var(--text-dim);
  margin: 0;
  font-size: 12.5px;
  line-height: 1.65;
}

.verify-side-code {
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  padding: 12px 14px;
  font-size: 11.5px;
  line-height: 1.6;
}

.verify-drop-card, .verify-proof-card, .verify-json-card {
  overflow: hidden;
}

.verify-handoff-panel {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  background: radial-gradient(circle at top right, #6f7bff26, transparent 34%), linear-gradient(180deg, #ffffff05, #fff0), var(--bg-2);
  border: 1px solid #6f7bff2e;
  border-radius: 18px;
  align-items:  center;
  gap: 18px;
  padding: 26px;
}

.verify-dropzone {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  background: radial-gradient(circle at top right, #6f7bff26, transparent 34%), linear-gradient(180deg, #ffffff05, #fff0), var(--bg-2);
  border: 1px dashed #6f7bff52;
  border-radius: 18px;
  align-items:  center;
  gap: 18px;
  padding: 26px;
  transition: border-color .14s, transform .14s, box-shadow .14s;
}

.verify-dropzone.is-dragging {
  border-color: var(--accent);
  box-shadow: var(--shadow-focus);
  transform: translateY(-1px);
}

.verify-drop-icon {
  display: flex;
  color: #d6e4ff;
  font-family: var(--font-mono);
  letter-spacing: -.08em;
  background: #6f7bff24;
  border: 1px solid #6f7bff3d;
  border-radius: 22px;
  justify-content: center;
  align-items:  center;
  width: 88px;
  height: 88px;
  font-size: 28px;
}

.verify-drop-copy {
  min-width: 0;
}

.verify-drop-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 12px;
}

.verify-file-chip {
  display: inline-flex;
  border: 1px solid var(--border);
  background: var(--bg-3);
  color: var(--text-dim);
  font-size: 12px;
  font-family: var(--font-mono);
  border-radius: 999px;
  align-items:  center;
  gap: 8px;
  padding: 8px 12px;
}

.verify-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.verify-summary-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 16px;
}

.verify-summary-label {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 700;
}

.verify-summary-value {
  color: var(--text);
  word-break: break-word;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.verify-json-block {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: #d7e2f3;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  background: #0a0f18;
  max-height: 520px;
  margin: 0;
  padding: 16px;
  font-size: 11.5px;
  line-height: 1.6;
}

@media (width <= 980px) {
  .verify-layout {
    grid-template-columns: 1fr;
  }

  .verify-side {
    position: static;
  }

  .verify-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width <= 640px) {
  .verify-page {
    padding: 28px 14px 48px;
  }

  .verify-title {
    font-size: 34px;
  }

  .verify-subtitle {
    font-size: 13px;
  }

  .verify-handoff-panel, .verify-dropzone {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .verify-drop-icon {
    border-radius: 18px;
    width: 72px;
    height: 72px;
  }

  .verify-summary-grid {
    grid-template-columns: 1fr;
  }
}

.v-page {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 48px 20px;
}

.v-shell {
  width: 100%;
  max-width: 560px;
}

.v-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
}

.v-header {
  margin-bottom: 20px;
}

.v-name {
  letter-spacing: -.01em;
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 600;
}

.v-meta {
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 10px;
  font-size: 14px;
}

.v-meta .v-dot {
  opacity: .5;
}

.v-mono {
  font-family: var(--font-mono);
  font-size: 13px;
}

.v-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.v-check {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items:  start;
  gap: 12px;
  padding: 14px 0;
}

.v-check-icon {
  display: inline-flex;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 26px;
  height: 26px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.v-check[data-status="ok"] .v-check-icon {
  color: #22c55e;
  background: #22c55e2e;
}

.v-check[data-status="warn"] .v-check-icon {
  color: #eab308;
  background: #eab3082e;
}

.v-check[data-status="fail"] .v-check-icon {
  color: #ef4444;
  background: #ef44442e;
}

.v-check[data-status="pending"] .v-check-icon {
  color: #94a3b8;
  background: #94a3b82e;
}

.v-check[data-status="skip"] .v-check-icon {
  color: #64748b;
  background: #94a3b81a;
}

.v-check-title {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 500;
}

.v-check-detail {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.45;
}

.v-alert {
  color: #fca5a5;
  background: #ef444414;
  border: 1px solid #ef444440;
  border-radius: 8px;
  margin: 12px 0 0;
  padding: 12px 14px;
  font-size: 13px;
}

.v-subject {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.v-body {
  font-family: var(--font-sans);
  white-space: pre-wrap;
  color: var(--text);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.v-empty {
  color: var(--text-dim);
  margin: 8px 0;
  font-size: 13px;
}

.v-attach {
  list-style: none;
  border-top: 1px solid var(--border);
  margin: 18px 0 0;
  padding: 0;
}

.v-attach li {
  display: flex;
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items:  center;
  padding: 10px 0;
  font-size: 13px;
}

.v-attach-size {
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
}

.v-footer {
  border-top: 1px solid var(--border);
  display: flex;
  color: var(--text-dim);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 16px;
  font-size: 11px;
}

@media (width <= 480px) {
  .v-page {
    padding: 24px 16px;
  }

  .v-name {
    font-size: 19px;
  }
}

.c-page {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.c-topbar {
  display: flex;
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items:  center;
  padding: 16px 28px;
}

.c-brand {
  letter-spacing: .02em;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}

.c-wallet-block {
  display: flex;
  flex-direction: column;
  align-items:  flex-end;
  gap: 3px;
  line-height: 1.3;
}

.c-wallet-status-row {
  display: inline-flex;
  background: #22c55e1a;
  border: 1px solid #22c55e40;
  border-radius: 999px;
  align-items:  center;
  gap: 7px;
  padding: 4px 12px 4px 10px;
  font-size: 12.5px;
}

.c-wallet-dot {
  background: #22c55e;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 6px #22c55e99;
}

.c-wallet-status-text {
  color: var(--text-dim);
  letter-spacing: .01em;
  font-size: 11.5px;
}

.c-wallet-name {
  color: var(--text);
  font-weight: 500;
}

.c-wallet-meta-row {
  display: inline-flex;
  align-items:  center;
  gap: 10px;
  padding-right: 4px;
  font-size: 10.5px;
}

.c-wallet-addr {
  color: var(--text-dim);
  font-size: 10.5px;
}

.c-wallet-disconnect {
  color: var(--text-dim);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: #96969659;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: 10.5px;
}

.c-wallet-disconnect:hover {
  color: var(--text);
  text-decoration-color: currentColor;
}

.c-shell {
  flex: 1;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items:  center;
  gap: 12px;
}

.c-label {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
}

.c-row-control {
  min-width: 0;
}

.c-input, .c-textarea {
  border: 1px solid var(--border);
  background: var(--surface, transparent);
  color: var(--text);
  outline: none;
  box-sizing: border-box;
  border-radius: 8px;
  width: 100%;
  padding: 10px 12px;
  transition: border-color .12s, box-shadow .12s;
  font-family: inherit;
  font-size: 14px;
}

.c-input:focus, .c-textarea:focus {
  border-color: #6366f199;
  box-shadow: 0 0 0 3px #6366f126;
}

.c-textarea {
  font-family: var(--font-sans);
  resize: vertical;
  min-height: 180px;
  line-height: 1.55;
}

.c-body-wrap {
  margin-top: 4px;
}

.c-readonly {
  color: var(--text);
  padding: 10px 0;
  font-size: 14px;
}

.c-mono {
  font-family: var(--font-mono);
  font-size: 13px;
}

.c-dim {
  color: var(--text-dim);
}

.c-attach-wrap {
  margin-top: 8px;
}

.c-attach-add {
  display: inline-flex;
  border: 1px dashed var(--border);
  cursor: pointer;
  color: var(--text-dim);
  border-radius: 8px;
  align-items:  center;
  gap: 6px;
  padding: 8px 14px;
  transition: border-color .12s, color .12s;
  font-size: 13px;
}

.c-attach-add:hover {
  color: var(--text);
  border-color: #6366f180;
}

.c-attach-list {
  list-style: none;
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 8px;
  margin: 12px 0 0;
  padding: 0;
}

.c-attach-list li {
  display: grid;
  grid-template-columns: 1fr auto 28px;
  border-bottom: 1px solid var(--border);
  align-items:  center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 13px;
}

.c-attach-list li:last-child {
  border-bottom: 0;
}

.c-attach-size {
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
}

.c-attach-rm {
  color: var(--text-dim);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 6px;
  width: 24px;
  height: 24px;
  font-size: 18px;
  line-height: 1;
}

.c-attach-rm:hover {
  color: #ef4444;
  background: #ef44441a;
}

.c-error, .c-warn {
  border-radius: 8px;
  margin: 4px 0;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.5;
}

.c-error {
  color: #fca5a5;
  background: #ef444414;
  border: 1px solid #ef444440;
}

.c-warn {
  color: #fcd34d;
  background: #eab30814;
  border: 1px solid #eab30840;
}

.c-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.c-btn {
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  border: 1px solid #0000;
  border-radius: 8px;
  justify-content: center;
  align-items:  center;
  padding: 10px 18px;
  transition: background .12s, border-color .12s, opacity .12s;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
}

.c-btn-primary {
  color: #fff;
  background: #6366f1;
}

.c-btn-primary:hover {
  background: #5b5fdb;
}

.c-btn-primary:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.c-btn-secondary {
  border-color: var(--border);
  color: var(--text);
  background: none;
}

.c-btn-secondary:hover {
  border-color: #6366f180;
}

.c-btn-text {
  color: var(--text-dim);
  background: none;
  padding: 10px 8px;
}

.c-btn-text:hover {
  color: var(--text);
}

.c-btn-cta {
  min-width: 200px;
  padding: 12px 24px;
}

.c-footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 16px 28px;
  font-size: 12px;
}

.c-footer-link {
  color: var(--text-dim);
  text-decoration: none;
}

.c-footer-link:hover {
  color: var(--text);
}

.c-sent {
  text-align: center;
  padding: 40px 0;
}

.c-sent-icon {
  color: #22c55e;
  display: inline-flex;
  background: #22c55e1f;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 1px #22c55e38;
}

.c-sent-title {
  letter-spacing: -.01em;
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 600;
}

.c-sent-sub {
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 24px;
  font-size: 14px;
  line-height: 1.55;
}

.c-link-card {
  border: 1px solid var(--border);
  background: var(--surface-muted, #ffffff05);
  overflow: hidden;
  text-align: left;
  border-radius: 10px;
  max-width: 440px;
  margin: 6px auto 24px;
}

.c-link-card-head {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: #ffffff04;
  justify-content: space-between;
  align-items:  center;
  padding: 9px 14px;
}

.c-link-card-label {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-size: 10.5px;
  font-weight: 600;
}

.c-link-card-size {
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
}

.c-link-card-body {
  display: flex;
  font-family: var(--font-mono);
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.5;
}

.c-link-origin {
  color: var(--text);
}

.c-link-fp {
  color: var(--text-dim);
  font-size: 11.5px;
}

.c-sent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.c-sent-reset {
  font-size: 13px;
}

@media (width <= 560px) {
  .c-topbar {
    padding: 12px 16px;
  }

  .c-shell {
    padding: 24px 16px 40px;
  }

  .c-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .c-label {
    font-size: 12px;
  }

  .c-btn-cta {
    width: 100%;
  }
}
