:root {
  color-scheme: light;
  --bg: #f3f6f5;
  --panel: #ffffff;
  --panel-subtle: #f8faf9;
  --text: #17211d;
  --muted: #66726c;
  --line: #d8e0dc;
  --line-strong: #bec9c4;
  --charcoal: #17231f;
  --primary: #1769aa;
  --primary-dark: #0d5186;
  --accent: #cf5d3a;
  --danger: #b33f45;
  --danger-dark: #8e3035;
  --success: #247a52;
  --warning: #9a671f;
  --focus: 0 0 0 3px rgba(23, 105, 170, 0.18);
  --shadow: 0 18px 46px rgba(23, 33, 29, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  border: 0;
  cursor: pointer;
}

button,
input,
select,
textarea {
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--primary);
}

::selection {
  color: #fff;
  background: var(--primary);
}

.app-shell,
.dashboard {
  min-height: 100vh;
}

.section-kicker {
  display: block;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.brand-mark {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
  content: "";
}

.brand-mark::before {
  top: 2px;
  left: 2px;
}

.brand-mark::after {
  right: 2px;
  bottom: 2px;
}

.brand-mark > span {
  position: absolute;
  top: 17px;
  left: 12px;
  z-index: 1;
  width: 12px;
  height: 2px;
  background: var(--accent);
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
}

.brand-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.login-page {
  display: grid;
  min-height: 100svh;
  padding: 40px;
  place-items: center;
  background: #edf1ef;
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  width: min(1040px, 100%);
  min-height: 620px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid #cfd8d3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.login-context {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 40px;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
  flex-direction: column;
}

.login-context::before,
.login-context::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  content: "";
}

.login-context::before {
  top: 158px;
  right: 42px;
  width: 146px;
  height: 146px;
}

.login-context::after {
  top: 220px;
  right: -18px;
  width: 128px;
  height: 128px;
  border-color: rgba(207, 93, 58, 0.46);
}

.login-context .brand-lockup,
.login-context-main,
.login-context-footer {
  position: relative;
  z-index: 1;
}

.login-context .brand-mark {
  color: #fff;
}

.login-context .brand-copy strong {
  color: #fff;
}

.login-context .brand-copy small {
  color: #aab6b0;
}

.login-context-main {
  margin: auto 0;
  padding: 56px 0;
}

.login-context-main .section-kicker {
  color: #76add8;
}

.login-context-main h1 {
  max-width: 310px;
  margin: 16px 0 0;
  color: #fff;
  font-size: 38px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.22;
}

.login-context-main p {
  margin: 14px 0 0;
  color: #b8c3be;
  font-size: 15px;
}

.login-context-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: #94a39c;
  font-size: 12px;
}

.access-state {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #d7dfdb;
}

.access-state i {
  width: 7px;
  height: 7px;
  background: #4db57f;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(77, 181, 127, 0.14);
}

.login-form-area {
  display: grid;
  min-width: 0;
  padding: 64px;
  place-items: center;
  background: var(--panel);
}

.auth-card {
  width: min(100%, 400px);
}

.auth-header {
  margin-bottom: 30px;
}

.auth-header h2 {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 28px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.25;
}

.auth-header p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.form {
  display: grid;
  gap: 16px;
}

.login-form {
  gap: 20px;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field label,
.check-label {
  color: #36413c;
  font-size: 13px;
  font-weight: 700;
}

.field > input,
.field > select,
.field > textarea {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  outline: none;
}

.login-form .field > input {
  min-height: 48px;
  padding: 12px 14px;
  background: #fbfcfb;
}

.field > textarea {
  min-height: 86px;
  resize: vertical;
}

.field > input:hover,
.field > select:hover,
.field > textarea:hover {
  border-color: #aab8b1;
}

.field > input:focus,
.field > select:focus,
.field > textarea:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: var(--focus);
}

.login-actions {
  margin-top: 4px;
}

.login-submit {
  width: 100%;
  min-height: 48px;
}

.center-page {
  display: grid;
  min-height: 100vh;
  padding: 32px 16px;
  place-items: center;
}

.register-card {
  width: min(100%, 760px);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card-header {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.register-logo {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
}

.register-header-copy {
  min-width: 0;
}

.card-header h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 750;
  letter-spacing: 0;
}

.card-header p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.register-card > .form {
  padding: 24px;
}

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

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.45;
}

.checkbox-row input {
  flex: 0 0 auto;
  margin-top: 3px;
}

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

.purpose-grid label {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px;
  color: #334039;
  background: var(--panel-subtle);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.purpose-grid input[type="checkbox"] {
  flex: 0 0 auto;
}

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

.btn {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: #fff;
  background: var(--primary);
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  white-space: nowrap;
}

.btn.primary,
.btn:not(.secondary):not(.quiet):not(.warning):not(.danger):not(.link) {
  background: var(--primary);
}

.btn.primary:hover,
.btn:not(.secondary):not(.quiet):not(.warning):not(.danger):not(.link):hover {
  background: var(--primary-dark);
}

.btn.secondary {
  color: #fff;
  background: var(--charcoal);
}

.btn.secondary:hover {
  background: #26342e;
}

.btn.quiet {
  color: #324039;
  background: #fff;
  border-color: var(--line-strong);
}

.btn.quiet:hover {
  color: var(--primary-dark);
  background: #f7faf8;
  border-color: #9fb1a8;
}

.btn.warning {
  color: #fff;
  background: var(--warning);
}

.btn.warning:hover {
  background: #7b5017;
}

.btn.danger {
  color: #fff;
  background: var(--danger);
}

.btn.danger:hover {
  background: var(--danger-dark);
}

.btn.link {
  min-height: auto;
  padding: 0;
  color: var(--primary);
  background: transparent;
}

.btn.compact {
  min-height: 32px;
  padding: 0 11px;
  font-size: 12px;
}

.message {
  display: none;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  line-height: 1.45;
}

.message.show {
  display: block;
}

.message.error {
  color: #761d23;
  background: #fff2f2;
  border-color: #efc5c7;
}

.message.success {
  color: #145d3c;
  background: #eff9f3;
  border-color: #bfe2cc;
}

.message.info {
  color: #264d69;
  background: #f0f6fb;
  border-color: #c8dce9;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 68px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  width: min(1360px, 100%);
  min-height: 68px;
  margin: 0 auto;
  padding: 0 28px;
}

.topbar-meta,
.user-badge {
  display: flex;
  align-items: center;
}

.topbar-meta {
  gap: 16px;
}

.user-badge {
  gap: 10px;
  min-width: 0;
}

.user-avatar {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  place-items: center;
}

.user-details {
  display: grid;
  min-width: 0;
}

.user-details strong {
  max-width: 150px;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-details small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.dashboard-body {
  width: min(1360px, 100%);
  margin: 0 auto;
  padding: 30px 28px 48px;
}

.workspace-heading {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.workspace-heading h1 {
  margin: 7px 0 0;
  color: var(--text);
  font-size: 28px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.25;
}

.workspace-meta {
  display: grid;
  gap: 3px;
  min-width: 112px;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
}

.workspace-meta span {
  color: var(--muted);
  font-size: 11px;
}

.workspace-meta strong {
  font-size: 14px;
}

.dashboard-body > .message.show {
  margin-bottom: 14px;
}

.create-panel {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.panel-heading,
.records-heading {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.panel-heading {
  min-height: 76px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.panel-title-group {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.panel-index {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: var(--primary-dark);
  background: #edf5fa;
  border: 1px solid #cfe0eb;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  place-items: center;
}

.panel-title-group h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 760;
  letter-spacing: 0;
}

.panel-title-group p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.duration-summary {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  color: #315671;
  background: #edf5fa;
  border: 1px solid #d1e1ec;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.link-form {
  display: grid;
  gap: 16px;
  grid-template-columns: 96px minmax(420px, 1fr) auto;
  align-items: end;
  padding: 20px;
}

.quantity-field {
  width: 96px;
}

.duration-panel {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.duration-panel legend {
  margin-bottom: 7px;
  padding: 0;
  color: #36413c;
  font-size: 13px;
  font-weight: 700;
}

.duration-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(68px, 1fr));
}

.field.compact {
  gap: 5px;
}

.field.compact label {
  color: var(--muted);
  font-size: 11px;
}

.field.compact input {
  min-height: 40px;
  padding: 8px 9px;
}

.create-button {
  min-width: 118px;
  min-height: 44px;
}

.latest-link {
  margin-top: 16px;
  padding: 16px 18px;
  background: #f7fbf8;
  border: 1px solid #c7ded0;
  border-left: 3px solid var(--success);
  border-radius: 7px;
}

.latest-header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.latest-header > div {
  display: grid;
  gap: 4px;
}

.latest-header strong {
  font-size: 14px;
}

.latest-label {
  color: var(--success);
  font-size: 11px;
  font-weight: 800;
}

.link-bulk-box {
  width: 100%;
  min-height: 104px;
  padding: 10px 12px;
  color: #33423b;
  background: #fff;
  border: 1px solid #c9d8d0;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
  resize: vertical;
}

.records-section {
  margin-top: 28px;
}

.records-heading {
  margin-bottom: 14px;
}

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

.selection-button {
  min-width: 104px;
}

.filter-row {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  margin-bottom: 12px;
}

.filter-label {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.status-tabs {
  display: flex;
  gap: 3px;
  min-width: 0;
  padding: 3px;
  overflow-x: auto;
  background: #e8eeeb;
  border-radius: 6px;
  scrollbar-width: none;
}

.status-tabs::-webkit-scrollbar {
  display: none;
}

.status-tab {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 13px;
  color: #5f6b65;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.status-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
}

.status-tab.active {
  color: var(--text);
  background: #fff;
  border-color: #d4deda;
  box-shadow: 0 1px 2px rgba(23, 33, 29, 0.07);
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.summary-item {
  display: grid;
  gap: 7px;
  min-height: 72px;
  padding: 12px 16px;
  align-content: center;
  border-right: 1px solid var(--line);
}

.summary-item:last-child {
  border-right: 0;
}

.summary-item span {
  color: var(--muted);
  font-size: 11px;
}

.summary-item strong {
  color: var(--text);
  font-size: 21px;
  line-height: 1;
}

.summary-item.good {
  box-shadow: inset 0 3px 0 #75b693;
}

.summary-item.good strong {
  color: var(--success);
}

.summary-item.muted {
  background: #fbf8f3;
}

.table-wrap {
  margin-top: 12px;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #e5eae7;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #52605a;
  background: #f5f8f6;
  font-size: 11px;
  font-weight: 800;
}

td {
  color: #2d3933;
  font-size: 13px;
}

tbody tr:hover {
  background: #fafcfb;
}

tr:last-child td {
  border-bottom: 0;
}

.select-cell {
  width: 46px;
  text-align: center;
}

.id-cell {
  color: #68746e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.url-cell {
  max-width: 360px;
}

.url-cell > span {
  display: block;
  max-width: 360px;
  overflow: hidden;
  color: #31506a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 750;
}

.status::before {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

.status.active {
  color: var(--success);
  background: #edf8f1;
  border-color: #c8e5d3;
}

.status.used,
.status.consuming {
  color: #315d7b;
  background: #eef5fa;
  border-color: #cddfea;
}

.status.revoked,
.status.expired {
  color: var(--warning);
  background: #fbf4e8;
  border-color: #ead8ba;
}

.empty-state {
  display: grid;
  min-height: 180px;
  padding: 32px;
  color: var(--muted);
  text-align: center;
  place-items: center;
}

.copy-line {
  display: flex;
  gap: 10px;
  align-items: center;
}

.copy-line input {
  flex: 1;
  min-width: 0;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.clipboard-fallback {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .login-page {
    padding: 24px;
  }

  .login-shell {
    grid-template-columns: minmax(280px, 0.78fr) minmax(380px, 1.22fr);
  }

  .login-form-area {
    padding: 44px;
  }

  .link-form {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .create-button {
    grid-column: 2;
    justify-self: start;
  }

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

  .summary-item:nth-child(3) {
    border-right: 0;
  }

  .summary-item:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .login-page {
    padding: 0;
    place-items: stretch;
  }

  .login-shell {
    grid-template-columns: 1fr;
    grid-template-rows: 190px minmax(0, 1fr);
    min-height: 100svh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .login-context {
    padding: 24px;
  }

  .login-context::before {
    top: 62px;
    right: 28px;
    width: 86px;
    height: 86px;
  }

  .login-context::after {
    top: 104px;
    right: -8px;
    width: 72px;
    height: 72px;
  }

  .login-context-main {
    padding: 18px 0 8px;
  }

  .login-context-main .section-kicker,
  .login-context-main p,
  .login-context-footer {
    display: none;
  }

  .login-context-main h1 {
    max-width: 230px;
    margin-top: 0;
    font-size: 27px;
  }

  .login-form-area {
    align-items: start;
    padding: 40px 24px;
  }

  .auth-header {
    margin-bottom: 24px;
  }

  .auth-header h2 {
    font-size: 24px;
  }

  .topbar-inner {
    min-height: 64px;
    padding: 0 16px;
  }

  .topbar .brand-copy small,
  .user-details small {
    display: none;
  }

  .topbar-meta {
    gap: 10px;
  }

  .user-avatar {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .dashboard-body {
    padding: 22px 16px 36px;
  }

  .workspace-heading,
  .panel-heading,
  .records-heading,
  .latest-header {
    align-items: stretch;
    flex-direction: column;
  }

  .workspace-heading {
    margin-bottom: 18px;
  }

  .workspace-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-left: 10px;
  }

  .workspace-heading h1 {
    font-size: 25px;
  }

  .panel-heading {
    min-height: 0;
    padding: 16px;
  }

  .duration-summary {
    align-self: flex-start;
  }

  .link-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .quantity-field,
  .create-button {
    width: 100%;
  }

  .create-button {
    grid-column: 1;
    justify-self: stretch;
  }

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

  .latest-link {
    padding: 14px;
  }

  .latest-header .btn {
    align-self: flex-start;
  }

  .records-section {
    margin-top: 24px;
  }

  .records-actions {
    width: 100%;
  }

  .records-actions .btn {
    flex: 1;
  }

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

  .status-tabs {
    width: 100%;
  }

  .summary-item {
    min-height: 68px;
  }

  .grid-2,
  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .register-card > .form,
  .card-header {
    padding: 18px;
  }

  .register-logo {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .copy-line {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .topbar .brand-copy strong {
    font-size: 13px;
  }

  .topbar .brand-mark {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .user-details {
    display: none;
  }

  .topbar .btn.compact {
    padding: 0 9px;
  }

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

  .status-tab {
    padding: 0 10px;
  }

  .summary-item,
  .summary-item:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .summary-item:nth-child(even) {
    border-right: 0;
  }

  .summary-item:nth-child(n + 5) {
    border-bottom: 0;
  }
}
